ETH Price: $2,517.86 (+1.99%)

Token

FRENTAGS (TAGS)
 

Overview

Max Total Supply

43 TAGS

Holders

27

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
elonscat.eth
Balance
2 TAGS
0xdba37e393e78bd177410f51fd5f47be112278cb4
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:
FrenTags

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 7 of 15: FrenTags.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


import './ERC721Enumerable.sol';
import './Ownable.sol';
import './Strings.sol';
import './FrenFunctions.sol';
import './Metadata.sol';

contract FrenTags is ERC721Enumerable, Ownable, Functions, Metadata {
    
    using Strings for uint256;
  
    uint256 public constant NFT_MAX = 101;
    uint256 public constant PURCHASE_LIMIT = 10;
    uint256 public constant PURCHASE_LIMIT_PER_WALLET = 101;
    uint256 private price = 0.5 ether;

    bool public isMasterActive = false;

    string private _contractURI = '';
    string private _tokenBaseURI = '';
    string private _tokenRevealedBaseURI = '';
  
    constructor(string memory name, string memory symbol) ERC721(name, symbol) {
    }
  
    function mint(uint256 numberOfTokens) external payable {

    require(isMasterActive, 'Contract is not active');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens > 0, 'You must mint more than 1 token');
    require(balanceOf(msg.sender) <= PURCHASE_LIMIT_PER_WALLET,'You can only mint 2 tokens');
    require(numberOfTokens <= PURCHASE_LIMIT, 'Cannot purchase this many tokens');
    require(totalSupply() + numberOfTokens <= NFT_MAX, 'Purchase would exceed max supply');
    require(price * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    for (uint256 i = 0; i < numberOfTokens; i++) {
        
        
  uint256 tokenId = totalSupply() + 1 - 1;

      _safeMint(msg.sender, tokenId);
        
    }

    
    }
    
    //reserve
    function reserve(address[] calldata to) external  onlyOwner {
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');

    for(uint256 i = 0; i < to.length; i++) {
        
        
      uint256 tokenId = totalSupply() + 1 - 1;

      _safeMint(to[i], tokenId);
    }

     }

    function MasterActive(bool _isMasterActive) external override onlyOwner {
    isMasterActive = _isMasterActive;
    }
  
    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }
    
    function getPrice() public view returns (uint256){
        return price;
    }
    
    address Address1 = 0xC824bb8d841fDD2aBAF9e3934e86CD670EA767EA; //update
    address Address2 = 0xEcc03efB7C0A7BD09A5cC7e954Ac42E8f949A0B5; //update
  
    function withdraw() onlyOwner public {
        uint balance = address(this).balance;
        payable(Address1).transfer(balance*92/100);
        payable(Address2).transfer(balance*8/100);
        payable(msg.sender).transfer(address(this).balance);
    }

    function setContractURI(string calldata URI) external override onlyOwner {
    _contractURI = URI;
    }

    function setBaseURI(string calldata URI) external override onlyOwner {
    _tokenBaseURI = URI;
     }

    function setRevealedBaseURI(string calldata revealedBaseURI) external override onlyOwner {
    _tokenRevealedBaseURI = revealedBaseURI;
    }

    function contractURI() public view override returns (string memory) {
    return _contractURI;
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
    require(_exists(tokenId), 'Token does not exist');

    /// @dev Convert string to bytes so we can check if it's empty or not.
    string memory revealedBaseURI = _tokenRevealedBaseURI;
    return bytes(revealedBaseURI).length > 0 ?
      string(abi.encodePacked(revealedBaseURI, tokenId.toString())) :
      _tokenBaseURI;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 3 of 15: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 15: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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(to).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 {}
}

File 5 of 15: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 15: FrenFunctions.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface Functions {
 
  function mint(uint256 numberOfTokens) external payable;

  function MasterActive(bool isMasterActive) external;

  function withdraw() external;
  
  function setPrice(uint256 price) external;
  
  function reserve(address[] calldata to) external;

}

File 8 of 15: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 15: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 15: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 15: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 12 of 15: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 15: Metadata.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface Metadata {
  function setContractURI(string calldata URI) external;

  function setBaseURI(string calldata URI) external;

  function setRevealedBaseURI(string calldata revealedBaseURI) external;

  function contractURI() external view returns(string memory);
}

File 14 of 15: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bool","name":"_isMasterActive","type":"bool"}],"name":"MasterActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"NFT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isMasterActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526706f05b59d3b20000600b556000600c60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600d908051906020019062000052929190620002ac565b5060405180602001604052806000815250600e90805190602001906200007a929190620002ac565b5060405180602001604052806000815250600f9080519060200190620000a2929190620002ac565b5073c824bb8d841fdd2abaf9e3934e86cd670ea767ea601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ecc03efb7c0a7bd09a5cc7e954ac42e8f949a0b5601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200015a57600080fd5b5060405162004b8b38038062004b8b8339818101604052810190620001809190620004f9565b818181600090805190602001906200019a929190620002ac565b508060019080519060200190620001b3929190620002ac565b505050620001d6620001ca620001de60201b60201c565b620001e660201b60201c565b5050620005e3565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ba90620005ad565b90600052602060002090601f016020900481019282620002de57600085556200032a565b82601f10620002f957805160ff19168380011785556200032a565b828001600101855582156200032a579182015b82811115620003295782518255916020019190600101906200030c565b5b5090506200033991906200033d565b5090565b5b80821115620003585760008160009055506001016200033e565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003c5826200037a565b810181811067ffffffffffffffff82111715620003e757620003e66200038b565b5b80604052505050565b6000620003fc6200035c565b90506200040a8282620003ba565b919050565b600067ffffffffffffffff8211156200042d576200042c6200038b565b5b62000438826200037a565b9050602081019050919050565b60005b838110156200046557808201518184015260208101905062000448565b8381111562000475576000848401525b50505050565b6000620004926200048c846200040f565b620003f0565b905082815260208101848484011115620004b157620004b062000375565b5b620004be84828562000445565b509392505050565b600082601f830112620004de57620004dd62000370565b5b8151620004f08482602086016200047b565b91505092915050565b6000806040838503121562000513576200051262000366565b5b600083015167ffffffffffffffff8111156200053457620005336200036b565b5b6200054285828601620004c6565b925050602083015167ffffffffffffffff8111156200056657620005656200036b565b5b6200057485828601620004c6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005c657607f821691505b60208210811415620005dd57620005dc6200057e565b5b50919050565b61459880620005f36000396000f3fe6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063a73d8ca7116100a0578063d682ed861161006f578063d682ed86146106da578063d75e611014610703578063e8a3d4851461072e578063e985e9c514610759578063f2fde38b14610796576101ee565b8063a73d8ca714610620578063b88d4fde14610649578063c30e768414610672578063c87b56dd1461069d576101ee565b806395d89b41116100dc57806395d89b411461058557806398d5fdca146105b0578063a0712d68146105db578063a22cb465146105f7576101ee565b80638da5cb5b146104dd5780639123468a1461050857806391b7f5ed14610533578063938e3d7b1461055c576101ee565b806340c53ccb116101855780636352211e116101545780636352211e146104235780636e83843a1461046057806370a0823114610489578063715018a6146104c6576101ee565b806340c53ccb1461036957806342842e0e146103945780634f6ccce7146103bd57806355f804b3146103fa576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632f745c59146103155780633ccfd60b14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612e25565b6107bf565b6040516102279190612e6d565b60405180910390f35b34801561023c57600080fd5b50610245610839565b6040516102529190612f21565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612f79565b6108cb565b60405161028f9190612fe7565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061302e565b610950565b005b3480156102cd57600080fd5b506102d6610a68565b6040516102e3919061307d565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190613098565b610a75565b005b34801561032157600080fd5b5061033c6004803603810190610337919061302e565b610ad5565b604051610349919061307d565b60405180910390f35b34801561035e57600080fd5b50610367610b7a565b005b34801561037557600080fd5b5061037e610d47565b60405161038b919061307d565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190613098565b610d4c565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612f79565b610d6c565b6040516103f1919061307d565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190613150565b610ddd565b005b34801561042f57600080fd5b5061044a60048036038101906104459190612f79565b610e6f565b6040516104579190612fe7565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613150565b610f21565b005b34801561049557600080fd5b506104b060048036038101906104ab919061319d565b610fb3565b6040516104bd919061307d565b60405180910390f35b3480156104d257600080fd5b506104db61106b565b005b3480156104e957600080fd5b506104f26110f3565b6040516104ff9190612fe7565b60405180910390f35b34801561051457600080fd5b5061051d61111d565b60405161052a9190612e6d565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612f79565b611130565b005b34801561056857600080fd5b50610583600480360381019061057e9190613150565b6111b6565b005b34801561059157600080fd5b5061059a611248565b6040516105a79190612f21565b60405180910390f35b3480156105bc57600080fd5b506105c56112da565b6040516105d2919061307d565b60405180910390f35b6105f560048036038101906105f09190612f79565b6112e4565b005b34801561060357600080fd5b5061061e600480360381019061061991906131f6565b611546565b005b34801561062c57600080fd5b5061064760048036038101906106429190613236565b6116c7565b005b34801561065557600080fd5b50610670600480360381019061066b9190613393565b611760565b005b34801561067e57600080fd5b506106876117c2565b604051610694919061307d565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612f79565b6117c7565b6040516106d19190612f21565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc919061346c565b61196c565b005b34801561070f57600080fd5b50610718611aad565b604051610725919061307d565b60405180910390f35b34801561073a57600080fd5b50610743611ab2565b6040516107509190612f21565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906134b9565b611b44565b60405161078d9190612e6d565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b8919061319d565b611bd8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610832575061083182611cd0565b5b9050919050565b60606000805461084890613528565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613528565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d682611db2565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c906135cc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b82610e6f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c39061365e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109eb611e1e565b73ffffffffffffffffffffffffffffffffffffffff161480610a1a5750610a1981610a14611e1e565b611b44565b5b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a50906136f0565b60405180910390fd5b610a638383611e26565b505050565b6000600880549050905090565b610a86610a80611e1e565b82611edf565b610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90613782565b60405180910390fd5b610ad0838383611fbd565b505050565b6000610ae083610fb3565b8210610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890613814565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b82611e1e565b73ffffffffffffffffffffffffffffffffffffffff16610ba06110f3565b73ffffffffffffffffffffffffffffffffffffffff1614610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90613880565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064605c84610c4691906138cf565b610c509190613958565b9081150290604051600060405180830381858888f19350505050158015610c7b573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600884610cc791906138cf565b610cd19190613958565b9081150290604051600060405180830381858888f19350505050158015610cfc573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d43573d6000803e3d6000fd5b5050565b606581565b610d6783838360405180602001604052806000815250611760565b505050565b6000610d76610a68565b8210610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906139fb565b60405180910390fd5b60088281548110610dcb57610dca613a1b565b5b90600052602060002001549050919050565b610de5611e1e565b73ffffffffffffffffffffffffffffffffffffffff16610e036110f3565b73ffffffffffffffffffffffffffffffffffffffff1614610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090613880565b60405180910390fd5b8181600e9190610e6a929190612d16565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90613abc565b60405180910390fd5b80915050919050565b610f29611e1e565b73ffffffffffffffffffffffffffffffffffffffff16610f476110f3565b73ffffffffffffffffffffffffffffffffffffffff1614610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490613880565b60405180910390fd5b8181600f9190610fae929190612d16565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613b4e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611073611e1e565b73ffffffffffffffffffffffffffffffffffffffff166110916110f3565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613880565b60405180910390fd5b6110f16000612219565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900460ff1681565b611138611e1e565b73ffffffffffffffffffffffffffffffffffffffff166111566110f3565b73ffffffffffffffffffffffffffffffffffffffff16146111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390613880565b60405180910390fd5b80600b8190555050565b6111be611e1e565b73ffffffffffffffffffffffffffffffffffffffff166111dc6110f3565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990613880565b60405180910390fd5b8181600d9190611243929190612d16565b505050565b60606001805461125790613528565b80601f016020809104026020016040519081016040528092919081815260200182805461128390613528565b80156112d05780601f106112a5576101008083540402835291602001916112d0565b820191906000526020600020905b8154815290600101906020018083116112b357829003601f168201915b5050505050905090565b6000600b54905090565b600c60009054906101000a900460ff16611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90613bba565b60405180910390fd5b606561133d610a68565b1061137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613c26565b60405180910390fd5b600081116113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b790613c92565b60405180910390fd5b60656113cb33610fb3565b111561140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140390613cfe565b60405180910390fd5b600a811115611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790613d6a565b60405180910390fd5b60658161145b610a68565b6114659190613d8a565b11156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90613e2c565b60405180910390fd5b3481600b546114b591906138cf565b11156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90613e98565b60405180910390fd5b60005b8181101561154257600060018061150e610a68565b6115189190613d8a565b6115229190613eb8565b905061152e33826122df565b50808061153a90613eec565b9150506114f9565b5050565b61154e611e1e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390613f81565b60405180910390fd5b80600560006115c9611e1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611676611e1e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116bb9190612e6d565b60405180910390a35050565b6116cf611e1e565b73ffffffffffffffffffffffffffffffffffffffff166116ed6110f3565b73ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a90613880565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b61177161176b611e1e565b83611edf565b6117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a790613782565b60405180910390fd5b6117bc848484846122fd565b50505050565b606581565b60606117d282611db2565b611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890613fed565b60405180910390fd5b6000600f805461182090613528565b80601f016020809104026020016040519081016040528092919081815260200182805461184c90613528565b80156118995780601f1061186e57610100808354040283529160200191611899565b820191906000526020600020905b81548152906001019060200180831161187c57829003601f168201915b50505050509050600081511161193957600e80546118b690613528565b80601f01602080910402602001604051908101604052809291908181526020018280546118e290613528565b801561192f5780601f106119045761010080835404028352916020019161192f565b820191906000526020600020905b81548152906001019060200180831161191257829003601f168201915b5050505050611964565b8061194384612359565b604051602001611954929190614049565b6040516020818303038152906040525b915050919050565b611974611e1e565b73ffffffffffffffffffffffffffffffffffffffff166119926110f3565b73ffffffffffffffffffffffffffffffffffffffff16146119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df90613880565b60405180910390fd5b60656119f2610a68565b10611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990613c26565b60405180910390fd5b60005b82829050811015611aa8576000600180611a4d610a68565b611a579190613d8a565b611a619190613eb8565b9050611a94848484818110611a7957611a78613a1b565b5b9050602002016020810190611a8e919061319d565b826122df565b508080611aa090613eec565b915050611a35565b505050565b600a81565b6060600d8054611ac190613528565b80601f0160208091040260200160405190810160405280929190818152602001828054611aed90613528565b8015611b3a5780601f10611b0f57610100808354040283529160200191611b3a565b820191906000526020600020905b815481529060010190602001808311611b1d57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611be0611e1e565b73ffffffffffffffffffffffffffffffffffffffff16611bfe6110f3565b73ffffffffffffffffffffffffffffffffffffffff1614611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b90613880565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906140df565b60405180910390fd5b611ccd81612219565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d9b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611dab5750611daa826124ba565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e9983610e6f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611eea82611db2565b611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090614171565b60405180910390fd5b6000611f3483610e6f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fa357508373ffffffffffffffffffffffffffffffffffffffff16611f8b846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fb45750611fb38185611b44565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fdd82610e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90614203565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209a90614295565b60405180910390fd5b6120ae838383612524565b6120b9600082611e26565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121099190613eb8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121609190613d8a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122f9828260405180602001604052806000815250612638565b5050565b612308848484611fbd565b61231484848484612693565b612353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234a90614327565b60405180910390fd5b50505050565b606060008214156123a1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124b5565b600082905060005b600082146123d35780806123bc90613eec565b915050600a826123cc9190613958565b91506123a9565b60008167ffffffffffffffff8111156123ef576123ee613268565b5b6040519080825280601f01601f1916602001820160405280156124215781602001600182028036833780820191505090505b5090505b600085146124ae5760018261243a9190613eb8565b9150600a856124499190614347565b60306124559190613d8a565b60f81b81838151811061246b5761246a613a1b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124a79190613958565b9450612425565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61252f83838361282a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125725761256d8161282f565b6125b1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125b0576125af8382612878565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125f4576125ef816129e5565b612633565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612632576126318282612ab6565b5b5b505050565b6126428383612b35565b61264f6000848484612693565b61268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590614327565b60405180910390fd5b505050565b60006126b48473ffffffffffffffffffffffffffffffffffffffff16612d03565b1561281d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126dd611e1e565b8786866040518563ffffffff1660e01b81526004016126ff94939291906143cd565b602060405180830381600087803b15801561271957600080fd5b505af192505050801561274a57506040513d601f19601f82011682018060405250810190612747919061442e565b60015b6127cd573d806000811461277a576040519150601f19603f3d011682016040523d82523d6000602084013e61277f565b606091505b506000815114156127c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bc90614327565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612822565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161288584610fb3565b61288f9190613eb8565b9050600060076000848152602001908152602001600020549050818114612974576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129f99190613eb8565b9050600060096000848152602001908152602001600020549050600060088381548110612a2957612a28613a1b565b5b906000526020600020015490508060088381548110612a4b57612a4a613a1b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a9a57612a9961445b565b5b6001900381819060005260206000200160009055905550505050565b6000612ac183610fb3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9c906144d6565b60405180910390fd5b612bae81611db2565b15612bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be590614542565b60405180910390fd5b612bfa60008383612524565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c4a9190613d8a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612d2290613528565b90600052602060002090601f016020900481019282612d445760008555612d8b565b82601f10612d5d57803560ff1916838001178555612d8b565b82800160010185558215612d8b579182015b82811115612d8a578235825591602001919060010190612d6f565b5b509050612d989190612d9c565b5090565b5b80821115612db5576000816000905550600101612d9d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e0281612dcd565b8114612e0d57600080fd5b50565b600081359050612e1f81612df9565b92915050565b600060208284031215612e3b57612e3a612dc3565b5b6000612e4984828501612e10565b91505092915050565b60008115159050919050565b612e6781612e52565b82525050565b6000602082019050612e826000830184612e5e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ec2578082015181840152602081019050612ea7565b83811115612ed1576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ef382612e88565b612efd8185612e93565b9350612f0d818560208601612ea4565b612f1681612ed7565b840191505092915050565b60006020820190508181036000830152612f3b8184612ee8565b905092915050565b6000819050919050565b612f5681612f43565b8114612f6157600080fd5b50565b600081359050612f7381612f4d565b92915050565b600060208284031215612f8f57612f8e612dc3565b5b6000612f9d84828501612f64565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fd182612fa6565b9050919050565b612fe181612fc6565b82525050565b6000602082019050612ffc6000830184612fd8565b92915050565b61300b81612fc6565b811461301657600080fd5b50565b60008135905061302881613002565b92915050565b6000806040838503121561304557613044612dc3565b5b600061305385828601613019565b925050602061306485828601612f64565b9150509250929050565b61307781612f43565b82525050565b6000602082019050613092600083018461306e565b92915050565b6000806000606084860312156130b1576130b0612dc3565b5b60006130bf86828701613019565b93505060206130d086828701613019565b92505060406130e186828701612f64565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126131105761310f6130eb565b5b8235905067ffffffffffffffff81111561312d5761312c6130f0565b5b602083019150836001820283011115613149576131486130f5565b5b9250929050565b6000806020838503121561316757613166612dc3565b5b600083013567ffffffffffffffff81111561318557613184612dc8565b5b613191858286016130fa565b92509250509250929050565b6000602082840312156131b3576131b2612dc3565b5b60006131c184828501613019565b91505092915050565b6131d381612e52565b81146131de57600080fd5b50565b6000813590506131f0816131ca565b92915050565b6000806040838503121561320d5761320c612dc3565b5b600061321b85828601613019565b925050602061322c858286016131e1565b9150509250929050565b60006020828403121561324c5761324b612dc3565b5b600061325a848285016131e1565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132a082612ed7565b810181811067ffffffffffffffff821117156132bf576132be613268565b5b80604052505050565b60006132d2612db9565b90506132de8282613297565b919050565b600067ffffffffffffffff8211156132fe576132fd613268565b5b61330782612ed7565b9050602081019050919050565b82818337600083830152505050565b6000613336613331846132e3565b6132c8565b90508281526020810184848401111561335257613351613263565b5b61335d848285613314565b509392505050565b600082601f83011261337a576133796130eb565b5b813561338a848260208601613323565b91505092915050565b600080600080608085870312156133ad576133ac612dc3565b5b60006133bb87828801613019565b94505060206133cc87828801613019565b93505060406133dd87828801612f64565b925050606085013567ffffffffffffffff8111156133fe576133fd612dc8565b5b61340a87828801613365565b91505092959194509250565b60008083601f84011261342c5761342b6130eb565b5b8235905067ffffffffffffffff811115613449576134486130f0565b5b602083019150836020820283011115613465576134646130f5565b5b9250929050565b6000806020838503121561348357613482612dc3565b5b600083013567ffffffffffffffff8111156134a1576134a0612dc8565b5b6134ad85828601613416565b92509250509250929050565b600080604083850312156134d0576134cf612dc3565b5b60006134de85828601613019565b92505060206134ef85828601613019565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061354057607f821691505b60208210811415613554576135536134f9565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006135b6602c83612e93565b91506135c18261355a565b604082019050919050565b600060208201905081810360008301526135e5816135a9565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613648602183612e93565b9150613653826135ec565b604082019050919050565b600060208201905081810360008301526136778161363b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006136da603883612e93565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061376c603183612e93565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006137fe602b83612e93565b9150613809826137a2565b604082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061386a602083612e93565b915061387582613834565b602082019050919050565b600060208201905081810360008301526138998161385d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138da82612f43565b91506138e583612f43565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561391e5761391d6138a0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061396382612f43565b915061396e83612f43565b92508261397e5761397d613929565b5b828204905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006139e5602c83612e93565b91506139f082613989565b604082019050919050565b60006020820190508181036000830152613a14816139d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613aa6602983612e93565b9150613ab182613a4a565b604082019050919050565b60006020820190508181036000830152613ad581613a99565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613b38602a83612e93565b9150613b4382613adc565b604082019050919050565b60006020820190508181036000830152613b6781613b2b565b9050919050565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b6000613ba4601683612e93565b9150613baf82613b6e565b602082019050919050565b60006020820190508181036000830152613bd381613b97565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b6000613c10601b83612e93565b9150613c1b82613bda565b602082019050919050565b60006020820190508181036000830152613c3f81613c03565b9050919050565b7f596f75206d757374206d696e74206d6f7265207468616e203120746f6b656e00600082015250565b6000613c7c601f83612e93565b9150613c8782613c46565b602082019050919050565b60006020820190508181036000830152613cab81613c6f565b9050919050565b7f596f752063616e206f6e6c79206d696e74203220746f6b656e73000000000000600082015250565b6000613ce8601a83612e93565b9150613cf382613cb2565b602082019050919050565b60006020820190508181036000830152613d1781613cdb565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b6000613d54602083612e93565b9150613d5f82613d1e565b602082019050919050565b60006020820190508181036000830152613d8381613d47565b9050919050565b6000613d9582612f43565b9150613da083612f43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dd557613dd46138a0565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b6000613e16602083612e93565b9150613e2182613de0565b602082019050919050565b60006020820190508181036000830152613e4581613e09565b9050919050565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b6000613e82601c83612e93565b9150613e8d82613e4c565b602082019050919050565b60006020820190508181036000830152613eb181613e75565b9050919050565b6000613ec382612f43565b9150613ece83612f43565b925082821015613ee157613ee06138a0565b5b828203905092915050565b6000613ef782612f43565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2a57613f296138a0565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613f6b601983612e93565b9150613f7682613f35565b602082019050919050565b60006020820190508181036000830152613f9a81613f5e565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000613fd7601483612e93565b9150613fe282613fa1565b602082019050919050565b6000602082019050818103600083015261400681613fca565b9050919050565b600081905092915050565b600061402382612e88565b61402d818561400d565b935061403d818560208601612ea4565b80840191505092915050565b60006140558285614018565b91506140618284614018565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140c9602683612e93565b91506140d48261406d565b604082019050919050565b600060208201905081810360008301526140f8816140bc565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061415b602c83612e93565b9150614166826140ff565b604082019050919050565b6000602082019050818103600083015261418a8161414e565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006141ed602983612e93565b91506141f882614191565b604082019050919050565b6000602082019050818103600083015261421c816141e0565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061427f602483612e93565b915061428a82614223565b604082019050919050565b600060208201905081810360008301526142ae81614272565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614311603283612e93565b915061431c826142b5565b604082019050919050565b6000602082019050818103600083015261434081614304565b9050919050565b600061435282612f43565b915061435d83612f43565b92508261436d5761436c613929565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061439f82614378565b6143a98185614383565b93506143b9818560208601612ea4565b6143c281612ed7565b840191505092915050565b60006080820190506143e26000830187612fd8565b6143ef6020830186612fd8565b6143fc604083018561306e565b818103606083015261440e8184614394565b905095945050505050565b60008151905061442881612df9565b92915050565b60006020828403121561444457614443612dc3565b5b600061445284828501614419565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006144c0602083612e93565b91506144cb8261448a565b602082019050919050565b600060208201905081810360008301526144ef816144b3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061452c601c83612e93565b9150614537826144f6565b602082019050919050565b6000602082019050818103600083015261455b8161451f565b905091905056fea2646970667358221220ad61f9feef98e7680c028b14d92c2e5961b1404cbee8cc08679629453b7453cd64736f6c634300080900330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000084652454e5441475300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045441475300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063a73d8ca7116100a0578063d682ed861161006f578063d682ed86146106da578063d75e611014610703578063e8a3d4851461072e578063e985e9c514610759578063f2fde38b14610796576101ee565b8063a73d8ca714610620578063b88d4fde14610649578063c30e768414610672578063c87b56dd1461069d576101ee565b806395d89b41116100dc57806395d89b411461058557806398d5fdca146105b0578063a0712d68146105db578063a22cb465146105f7576101ee565b80638da5cb5b146104dd5780639123468a1461050857806391b7f5ed14610533578063938e3d7b1461055c576101ee565b806340c53ccb116101855780636352211e116101545780636352211e146104235780636e83843a1461046057806370a0823114610489578063715018a6146104c6576101ee565b806340c53ccb1461036957806342842e0e146103945780634f6ccce7146103bd57806355f804b3146103fa576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632f745c59146103155780633ccfd60b14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612e25565b6107bf565b6040516102279190612e6d565b60405180910390f35b34801561023c57600080fd5b50610245610839565b6040516102529190612f21565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612f79565b6108cb565b60405161028f9190612fe7565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061302e565b610950565b005b3480156102cd57600080fd5b506102d6610a68565b6040516102e3919061307d565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190613098565b610a75565b005b34801561032157600080fd5b5061033c6004803603810190610337919061302e565b610ad5565b604051610349919061307d565b60405180910390f35b34801561035e57600080fd5b50610367610b7a565b005b34801561037557600080fd5b5061037e610d47565b60405161038b919061307d565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190613098565b610d4c565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612f79565b610d6c565b6040516103f1919061307d565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190613150565b610ddd565b005b34801561042f57600080fd5b5061044a60048036038101906104459190612f79565b610e6f565b6040516104579190612fe7565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613150565b610f21565b005b34801561049557600080fd5b506104b060048036038101906104ab919061319d565b610fb3565b6040516104bd919061307d565b60405180910390f35b3480156104d257600080fd5b506104db61106b565b005b3480156104e957600080fd5b506104f26110f3565b6040516104ff9190612fe7565b60405180910390f35b34801561051457600080fd5b5061051d61111d565b60405161052a9190612e6d565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612f79565b611130565b005b34801561056857600080fd5b50610583600480360381019061057e9190613150565b6111b6565b005b34801561059157600080fd5b5061059a611248565b6040516105a79190612f21565b60405180910390f35b3480156105bc57600080fd5b506105c56112da565b6040516105d2919061307d565b60405180910390f35b6105f560048036038101906105f09190612f79565b6112e4565b005b34801561060357600080fd5b5061061e600480360381019061061991906131f6565b611546565b005b34801561062c57600080fd5b5061064760048036038101906106429190613236565b6116c7565b005b34801561065557600080fd5b50610670600480360381019061066b9190613393565b611760565b005b34801561067e57600080fd5b506106876117c2565b604051610694919061307d565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612f79565b6117c7565b6040516106d19190612f21565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc919061346c565b61196c565b005b34801561070f57600080fd5b50610718611aad565b604051610725919061307d565b60405180910390f35b34801561073a57600080fd5b50610743611ab2565b6040516107509190612f21565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906134b9565b611b44565b60405161078d9190612e6d565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b8919061319d565b611bd8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610832575061083182611cd0565b5b9050919050565b60606000805461084890613528565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613528565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d682611db2565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c906135cc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b82610e6f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c39061365e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109eb611e1e565b73ffffffffffffffffffffffffffffffffffffffff161480610a1a5750610a1981610a14611e1e565b611b44565b5b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a50906136f0565b60405180910390fd5b610a638383611e26565b505050565b6000600880549050905090565b610a86610a80611e1e565b82611edf565b610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90613782565b60405180910390fd5b610ad0838383611fbd565b505050565b6000610ae083610fb3565b8210610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890613814565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b82611e1e565b73ffffffffffffffffffffffffffffffffffffffff16610ba06110f3565b73ffffffffffffffffffffffffffffffffffffffff1614610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90613880565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064605c84610c4691906138cf565b610c509190613958565b9081150290604051600060405180830381858888f19350505050158015610c7b573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600884610cc791906138cf565b610cd19190613958565b9081150290604051600060405180830381858888f19350505050158015610cfc573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d43573d6000803e3d6000fd5b5050565b606581565b610d6783838360405180602001604052806000815250611760565b505050565b6000610d76610a68565b8210610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906139fb565b60405180910390fd5b60088281548110610dcb57610dca613a1b565b5b90600052602060002001549050919050565b610de5611e1e565b73ffffffffffffffffffffffffffffffffffffffff16610e036110f3565b73ffffffffffffffffffffffffffffffffffffffff1614610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090613880565b60405180910390fd5b8181600e9190610e6a929190612d16565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90613abc565b60405180910390fd5b80915050919050565b610f29611e1e565b73ffffffffffffffffffffffffffffffffffffffff16610f476110f3565b73ffffffffffffffffffffffffffffffffffffffff1614610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490613880565b60405180910390fd5b8181600f9190610fae929190612d16565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613b4e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611073611e1e565b73ffffffffffffffffffffffffffffffffffffffff166110916110f3565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613880565b60405180910390fd5b6110f16000612219565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900460ff1681565b611138611e1e565b73ffffffffffffffffffffffffffffffffffffffff166111566110f3565b73ffffffffffffffffffffffffffffffffffffffff16146111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390613880565b60405180910390fd5b80600b8190555050565b6111be611e1e565b73ffffffffffffffffffffffffffffffffffffffff166111dc6110f3565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990613880565b60405180910390fd5b8181600d9190611243929190612d16565b505050565b60606001805461125790613528565b80601f016020809104026020016040519081016040528092919081815260200182805461128390613528565b80156112d05780601f106112a5576101008083540402835291602001916112d0565b820191906000526020600020905b8154815290600101906020018083116112b357829003601f168201915b5050505050905090565b6000600b54905090565b600c60009054906101000a900460ff16611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90613bba565b60405180910390fd5b606561133d610a68565b1061137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613c26565b60405180910390fd5b600081116113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b790613c92565b60405180910390fd5b60656113cb33610fb3565b111561140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140390613cfe565b60405180910390fd5b600a811115611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790613d6a565b60405180910390fd5b60658161145b610a68565b6114659190613d8a565b11156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90613e2c565b60405180910390fd5b3481600b546114b591906138cf565b11156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90613e98565b60405180910390fd5b60005b8181101561154257600060018061150e610a68565b6115189190613d8a565b6115229190613eb8565b905061152e33826122df565b50808061153a90613eec565b9150506114f9565b5050565b61154e611e1e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390613f81565b60405180910390fd5b80600560006115c9611e1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611676611e1e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116bb9190612e6d565b60405180910390a35050565b6116cf611e1e565b73ffffffffffffffffffffffffffffffffffffffff166116ed6110f3565b73ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a90613880565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b61177161176b611e1e565b83611edf565b6117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a790613782565b60405180910390fd5b6117bc848484846122fd565b50505050565b606581565b60606117d282611db2565b611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890613fed565b60405180910390fd5b6000600f805461182090613528565b80601f016020809104026020016040519081016040528092919081815260200182805461184c90613528565b80156118995780601f1061186e57610100808354040283529160200191611899565b820191906000526020600020905b81548152906001019060200180831161187c57829003601f168201915b50505050509050600081511161193957600e80546118b690613528565b80601f01602080910402602001604051908101604052809291908181526020018280546118e290613528565b801561192f5780601f106119045761010080835404028352916020019161192f565b820191906000526020600020905b81548152906001019060200180831161191257829003601f168201915b5050505050611964565b8061194384612359565b604051602001611954929190614049565b6040516020818303038152906040525b915050919050565b611974611e1e565b73ffffffffffffffffffffffffffffffffffffffff166119926110f3565b73ffffffffffffffffffffffffffffffffffffffff16146119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df90613880565b60405180910390fd5b60656119f2610a68565b10611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990613c26565b60405180910390fd5b60005b82829050811015611aa8576000600180611a4d610a68565b611a579190613d8a565b611a619190613eb8565b9050611a94848484818110611a7957611a78613a1b565b5b9050602002016020810190611a8e919061319d565b826122df565b508080611aa090613eec565b915050611a35565b505050565b600a81565b6060600d8054611ac190613528565b80601f0160208091040260200160405190810160405280929190818152602001828054611aed90613528565b8015611b3a5780601f10611b0f57610100808354040283529160200191611b3a565b820191906000526020600020905b815481529060010190602001808311611b1d57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611be0611e1e565b73ffffffffffffffffffffffffffffffffffffffff16611bfe6110f3565b73ffffffffffffffffffffffffffffffffffffffff1614611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b90613880565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906140df565b60405180910390fd5b611ccd81612219565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d9b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611dab5750611daa826124ba565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e9983610e6f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611eea82611db2565b611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090614171565b60405180910390fd5b6000611f3483610e6f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fa357508373ffffffffffffffffffffffffffffffffffffffff16611f8b846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fb45750611fb38185611b44565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fdd82610e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90614203565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209a90614295565b60405180910390fd5b6120ae838383612524565b6120b9600082611e26565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121099190613eb8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121609190613d8a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122f9828260405180602001604052806000815250612638565b5050565b612308848484611fbd565b61231484848484612693565b612353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234a90614327565b60405180910390fd5b50505050565b606060008214156123a1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124b5565b600082905060005b600082146123d35780806123bc90613eec565b915050600a826123cc9190613958565b91506123a9565b60008167ffffffffffffffff8111156123ef576123ee613268565b5b6040519080825280601f01601f1916602001820160405280156124215781602001600182028036833780820191505090505b5090505b600085146124ae5760018261243a9190613eb8565b9150600a856124499190614347565b60306124559190613d8a565b60f81b81838151811061246b5761246a613a1b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124a79190613958565b9450612425565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61252f83838361282a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125725761256d8161282f565b6125b1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125b0576125af8382612878565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125f4576125ef816129e5565b612633565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612632576126318282612ab6565b5b5b505050565b6126428383612b35565b61264f6000848484612693565b61268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590614327565b60405180910390fd5b505050565b60006126b48473ffffffffffffffffffffffffffffffffffffffff16612d03565b1561281d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126dd611e1e565b8786866040518563ffffffff1660e01b81526004016126ff94939291906143cd565b602060405180830381600087803b15801561271957600080fd5b505af192505050801561274a57506040513d601f19601f82011682018060405250810190612747919061442e565b60015b6127cd573d806000811461277a576040519150601f19603f3d011682016040523d82523d6000602084013e61277f565b606091505b506000815114156127c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bc90614327565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612822565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161288584610fb3565b61288f9190613eb8565b9050600060076000848152602001908152602001600020549050818114612974576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129f99190613eb8565b9050600060096000848152602001908152602001600020549050600060088381548110612a2957612a28613a1b565b5b906000526020600020015490508060088381548110612a4b57612a4a613a1b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a9a57612a9961445b565b5b6001900381819060005260206000200160009055905550505050565b6000612ac183610fb3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9c906144d6565b60405180910390fd5b612bae81611db2565b15612bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be590614542565b60405180910390fd5b612bfa60008383612524565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c4a9190613d8a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612d2290613528565b90600052602060002090601f016020900481019282612d445760008555612d8b565b82601f10612d5d57803560ff1916838001178555612d8b565b82800160010185558215612d8b579182015b82811115612d8a578235825591602001919060010190612d6f565b5b509050612d989190612d9c565b5090565b5b80821115612db5576000816000905550600101612d9d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e0281612dcd565b8114612e0d57600080fd5b50565b600081359050612e1f81612df9565b92915050565b600060208284031215612e3b57612e3a612dc3565b5b6000612e4984828501612e10565b91505092915050565b60008115159050919050565b612e6781612e52565b82525050565b6000602082019050612e826000830184612e5e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ec2578082015181840152602081019050612ea7565b83811115612ed1576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ef382612e88565b612efd8185612e93565b9350612f0d818560208601612ea4565b612f1681612ed7565b840191505092915050565b60006020820190508181036000830152612f3b8184612ee8565b905092915050565b6000819050919050565b612f5681612f43565b8114612f6157600080fd5b50565b600081359050612f7381612f4d565b92915050565b600060208284031215612f8f57612f8e612dc3565b5b6000612f9d84828501612f64565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fd182612fa6565b9050919050565b612fe181612fc6565b82525050565b6000602082019050612ffc6000830184612fd8565b92915050565b61300b81612fc6565b811461301657600080fd5b50565b60008135905061302881613002565b92915050565b6000806040838503121561304557613044612dc3565b5b600061305385828601613019565b925050602061306485828601612f64565b9150509250929050565b61307781612f43565b82525050565b6000602082019050613092600083018461306e565b92915050565b6000806000606084860312156130b1576130b0612dc3565b5b60006130bf86828701613019565b93505060206130d086828701613019565b92505060406130e186828701612f64565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126131105761310f6130eb565b5b8235905067ffffffffffffffff81111561312d5761312c6130f0565b5b602083019150836001820283011115613149576131486130f5565b5b9250929050565b6000806020838503121561316757613166612dc3565b5b600083013567ffffffffffffffff81111561318557613184612dc8565b5b613191858286016130fa565b92509250509250929050565b6000602082840312156131b3576131b2612dc3565b5b60006131c184828501613019565b91505092915050565b6131d381612e52565b81146131de57600080fd5b50565b6000813590506131f0816131ca565b92915050565b6000806040838503121561320d5761320c612dc3565b5b600061321b85828601613019565b925050602061322c858286016131e1565b9150509250929050565b60006020828403121561324c5761324b612dc3565b5b600061325a848285016131e1565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132a082612ed7565b810181811067ffffffffffffffff821117156132bf576132be613268565b5b80604052505050565b60006132d2612db9565b90506132de8282613297565b919050565b600067ffffffffffffffff8211156132fe576132fd613268565b5b61330782612ed7565b9050602081019050919050565b82818337600083830152505050565b6000613336613331846132e3565b6132c8565b90508281526020810184848401111561335257613351613263565b5b61335d848285613314565b509392505050565b600082601f83011261337a576133796130eb565b5b813561338a848260208601613323565b91505092915050565b600080600080608085870312156133ad576133ac612dc3565b5b60006133bb87828801613019565b94505060206133cc87828801613019565b93505060406133dd87828801612f64565b925050606085013567ffffffffffffffff8111156133fe576133fd612dc8565b5b61340a87828801613365565b91505092959194509250565b60008083601f84011261342c5761342b6130eb565b5b8235905067ffffffffffffffff811115613449576134486130f0565b5b602083019150836020820283011115613465576134646130f5565b5b9250929050565b6000806020838503121561348357613482612dc3565b5b600083013567ffffffffffffffff8111156134a1576134a0612dc8565b5b6134ad85828601613416565b92509250509250929050565b600080604083850312156134d0576134cf612dc3565b5b60006134de85828601613019565b92505060206134ef85828601613019565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061354057607f821691505b60208210811415613554576135536134f9565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006135b6602c83612e93565b91506135c18261355a565b604082019050919050565b600060208201905081810360008301526135e5816135a9565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613648602183612e93565b9150613653826135ec565b604082019050919050565b600060208201905081810360008301526136778161363b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006136da603883612e93565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061376c603183612e93565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006137fe602b83612e93565b9150613809826137a2565b604082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061386a602083612e93565b915061387582613834565b602082019050919050565b600060208201905081810360008301526138998161385d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138da82612f43565b91506138e583612f43565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561391e5761391d6138a0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061396382612f43565b915061396e83612f43565b92508261397e5761397d613929565b5b828204905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006139e5602c83612e93565b91506139f082613989565b604082019050919050565b60006020820190508181036000830152613a14816139d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613aa6602983612e93565b9150613ab182613a4a565b604082019050919050565b60006020820190508181036000830152613ad581613a99565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613b38602a83612e93565b9150613b4382613adc565b604082019050919050565b60006020820190508181036000830152613b6781613b2b565b9050919050565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b6000613ba4601683612e93565b9150613baf82613b6e565b602082019050919050565b60006020820190508181036000830152613bd381613b97565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b6000613c10601b83612e93565b9150613c1b82613bda565b602082019050919050565b60006020820190508181036000830152613c3f81613c03565b9050919050565b7f596f75206d757374206d696e74206d6f7265207468616e203120746f6b656e00600082015250565b6000613c7c601f83612e93565b9150613c8782613c46565b602082019050919050565b60006020820190508181036000830152613cab81613c6f565b9050919050565b7f596f752063616e206f6e6c79206d696e74203220746f6b656e73000000000000600082015250565b6000613ce8601a83612e93565b9150613cf382613cb2565b602082019050919050565b60006020820190508181036000830152613d1781613cdb565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b6000613d54602083612e93565b9150613d5f82613d1e565b602082019050919050565b60006020820190508181036000830152613d8381613d47565b9050919050565b6000613d9582612f43565b9150613da083612f43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dd557613dd46138a0565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b6000613e16602083612e93565b9150613e2182613de0565b602082019050919050565b60006020820190508181036000830152613e4581613e09565b9050919050565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b6000613e82601c83612e93565b9150613e8d82613e4c565b602082019050919050565b60006020820190508181036000830152613eb181613e75565b9050919050565b6000613ec382612f43565b9150613ece83612f43565b925082821015613ee157613ee06138a0565b5b828203905092915050565b6000613ef782612f43565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2a57613f296138a0565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613f6b601983612e93565b9150613f7682613f35565b602082019050919050565b60006020820190508181036000830152613f9a81613f5e565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000613fd7601483612e93565b9150613fe282613fa1565b602082019050919050565b6000602082019050818103600083015261400681613fca565b9050919050565b600081905092915050565b600061402382612e88565b61402d818561400d565b935061403d818560208601612ea4565b80840191505092915050565b60006140558285614018565b91506140618284614018565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140c9602683612e93565b91506140d48261406d565b604082019050919050565b600060208201905081810360008301526140f8816140bc565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061415b602c83612e93565b9150614166826140ff565b604082019050919050565b6000602082019050818103600083015261418a8161414e565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006141ed602983612e93565b91506141f882614191565b604082019050919050565b6000602082019050818103600083015261421c816141e0565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061427f602483612e93565b915061428a82614223565b604082019050919050565b600060208201905081810360008301526142ae81614272565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614311603283612e93565b915061431c826142b5565b604082019050919050565b6000602082019050818103600083015261434081614304565b9050919050565b600061435282612f43565b915061435d83612f43565b92508261436d5761436c613929565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061439f82614378565b6143a98185614383565b93506143b9818560208601612ea4565b6143c281612ed7565b840191505092915050565b60006080820190506143e26000830187612fd8565b6143ef6020830186612fd8565b6143fc604083018561306e565b818103606083015261440e8184614394565b905095945050505050565b60008151905061442881612df9565b92915050565b60006020828403121561444457614443612dc3565b5b600061445284828501614419565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006144c0602083612e93565b91506144cb8261448a565b602082019050919050565b600060208201905081810360008301526144ef816144b3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061452c601c83612e93565b9150614537826144f6565b602082019050919050565b6000602082019050818103600083015261455b8161451f565b905091905056fea2646970667358221220ad61f9feef98e7680c028b14d92c2e5961b1404cbee8cc08679629453b7453cd64736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000084652454e5441475300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045441475300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): FRENTAGS
Arg [1] : symbol (string): TAGS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 4652454e54414753000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5441475300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

205:3387:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;937:224:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2426:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3985:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3508:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1577:113:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4875:339:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1245:256:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2404:259:6;;;;;;;;;;;;;:::i;:::-;;416:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5285:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1767:233:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2785:104:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2120:239:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2897:143:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1850:208:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1650:94:13;;;;;;;;;;;;;:::i;:::-;;999:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;520:34:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2050:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2671:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2595:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2154:80:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;787:799;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4278:295:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1921:119:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5541:328:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;322:37:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3158:431;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1613:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;366:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3048:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4644:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1899:192:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;937:224:4;1039:4;1078:35;1063:50;;;:11;:50;;;;:90;;;;1117:36;1141:11;1117:23;:36::i;:::-;1063:90;1056:97;;937:224;;;:::o;2426:100:3:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;4089:16;4097:7;4089;:16::i;:::-;4081:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4174:15;:24;4190:7;4174:24;;;;;;;;;;;;;;;;;;;;;4167:31;;3985:221;;;:::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;3647:11;;:2;:11;;;;3639:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3747:5;3731:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3756:37;3773:5;3780:12;:10;:12::i;:::-;3756:16;:37::i;:::-;3731:62;3709:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;1577:113:4:-;1638:7;1665:10;:17;;;;1658:24;;1577:113;:::o;4875:339:3:-;5070:41;5089:12;:10;:12::i;:::-;5103:7;5070:18;:41::i;:::-;5062:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;:::-;4875:339;;;:::o;1245:256:4:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1467:12;:19;1480:5;1467:19;;;;;;;;;;;;;;;:26;1487:5;1467:26;;;;;;;;;;;;1460:33;;1245:256;;;;:::o;2404:259:6:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2452:12:6::1;2467:21;2452:36;;2507:8;;;;;;;;;;;2499:26;;:42;2537:3;2534:2;2526:7;:10;;;;:::i;:::-;:14;;;;:::i;:::-;2499:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2560:8;;;;;;;;;;;2552:26;;:41;2589:3;2587:1;2579:7;:9;;;;:::i;:::-;:13;;;;:::i;:::-;2552:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2612:10;2604:28;;:51;2633:21;2604:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2441:222;2404:259::o:0;416:55::-;468:3;416:55;:::o;5285:185:3:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;:::-;5285:185;;;:::o;1767:233:4:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;;1968:24;;1767:233;;;:::o;2785:104:6:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2877:3:6::1;;2861:13;:19;;;;;;;:::i;:::-;;2785:104:::0;;:::o;2120:239:3:-;2192:7;2212:13;2228:7;:16;2236:7;2228:16;;;;;;;;;;;;;;;;;;;;;2212:32;;2280:1;2263:19;;:5;:19;;;;2255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2346:5;2339:12;;;2120:239;;;:::o;2897:143:6:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3017:15:6::1;;2993:21;:39;;;;;;;:::i;:::-;;2897:143:::0;;:::o;1850:208:3:-;1922:7;1967:1;1950:19;;:5;:19;;;;1942:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2034:9;:16;2044:5;2034:16;;;;;;;;;;;;;;;;2027:23;;1850:208;;;:::o;1650:94:13:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;999:87::-;1045:7;1072:6;;;;;;;;;;;1065:13;;999:87;:::o;520:34:6:-;;;;;;;;;;;;;:::o;2050:92::-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2125:9:6::1;2117:5;:17;;;;2050:92:::0;:::o;2671:106::-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2766:3:6::1;;2751:12;:18;;;;;;;:::i;:::-;;2671:106:::0;;:::o;2595:104:3:-;2651:13;2684:7;2677:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595:104;:::o;2154:80:6:-;2195:7;2221:5;;2214:12;;2154:80;:::o;787:799::-;859:14;;;;;;;;;;;851:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;356:3;915:13;:11;:13::i;:::-;:23;907:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1002:1;985:14;:18;977:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;468:3;1054:21;1064:10;1054:9;:21::i;:::-;:50;;1046:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;407:2;1149:14;:32;;1141:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;356:3;1249:14;1233:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:41;;1225:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:9;1334:14;1326:5;;:22;;;;:::i;:::-;:35;;1318:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1408:9;1403:168;1427:14;1423:1;:18;1403:168;;;1473:15;1511:1;1507;1491:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:21;;;;:::i;:::-;1473:39;;1523:30;1533:10;1545:7;1523:9;:30::i;:::-;1448:123;1443:3;;;;;:::i;:::-;;;;1403:168;;;;787:799;:::o;4278:295:3:-;4393:12;:10;:12::i;:::-;4381:24;;:8;:24;;;;4373:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4493:8;4448:18;:32;4467:12;:10;:12::i;:::-;4448:32;;;;;;;;;;;;;;;:42;4481:8;4448:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4546:8;4517:48;;4532:12;:10;:12::i;:::-;4517:48;;;4556:8;4517:48;;;;;;:::i;:::-;;;;;;;;4278:295;;:::o;1921:119:6:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2017:15:6::1;2000:14;;:32;;;;;;;;;;;;;;;;;;1921:119:::0;:::o;5541:328:3:-;5716:41;5735:12;:10;:12::i;:::-;5749:7;5716:18;:41::i;:::-;5708:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;322:37:6:-;356:3;322:37;:::o;3158:431::-;3231:13;3261:16;3269:7;3261;:16::i;:::-;3253:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;3387:29;3419:21;3387:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3486:1;3460:15;3454:29;:33;:127;;3568:13;3454:127;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3521:15;3538:18;:7;:16;:18::i;:::-;3504:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3454:127;3447:134;;;3158:431;;;:::o;1613:300::-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;356:3:6::1;1688:13;:11;:13::i;:::-;:23;1680:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1756:9;1752:151;1775:2;;:9;;1771:1;:13;1752:151;;;1820:15;1858:1;1854::::0;1838:13:::1;:11;:13::i;:::-;:17;;;;:::i;:::-;:21;;;;:::i;:::-;1820:39;;1870:25;1880:2;;1883:1;1880:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;1887:7;1870:9;:25::i;:::-;1791:112;1786:3;;;;;:::i;:::-;;;;1752:151;;;;1613:300:::0;;:::o;366:43::-;407:2;366:43;:::o;3048:102::-;3101:13;3130:12;3123:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3048:102;:::o;4644:164:3:-;4741:4;4765:18;:25;4784:5;4765:25;;;;;;;;;;;;;;;:35;4791:8;4765:35;;;;;;;;;;;;;;;;;;;;;;;;;4758:42;;4644:164;;;;:::o;1899:192:13:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2008:1:::1;1988:22;;:8;:22;;;;1980:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;1481:305:3:-;1583:4;1635:25;1620:40;;;:11;:40;;;;:105;;;;1692:33;1677:48;;;:11;:48;;;;1620:105;:158;;;;1742:36;1766:11;1742:23;:36::i;:::-;1620:158;1600:178;;1481:305;;;:::o;7379:127::-;7444:4;7496:1;7468:30;;:7;:16;7476:7;7468:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7461:37;;7379:127;;;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;11361:174:3:-;11463:2;11436:15;:24;11452:7;11436:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11519:7;11515:2;11481:46;;11490:23;11505:7;11490:14;:23::i;:::-;11481:46;;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7791:16;7799:7;7791;:16::i;:::-;7783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;7925:16;;:7;:16;;;:51;;;;7969:7;7945:31;;:20;7957:7;7945:11;:20::i;:::-;:31;;;7925:51;:87;;;;7980:32;7997:5;8004:7;7980:16;:32::i;:::-;7925:87;7917:96;;;7673:348;;;;:::o;10665:578::-;10824:4;10797:31;;:23;10812:7;10797:14;:23::i;:::-;:31;;;10789:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10907:1;10893:16;;:2;:16;;;;10885:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;11128:1;11109:9;:15;11119:4;11109:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;11157:1;11140:9;:13;11150:2;11140:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;11188:2;11169:7;:16;11177:7;11169:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;11227:7;11223:2;11208:27;;11217:4;11208:27;;;;;;;;;;;;10665:578;;;:::o;2099:173:13:-;2155:16;2174:6;;;;;;;;;;;2155:25;;2200:8;2191:6;;:17;;;;;;;;;;;;;;;;;;2255:8;2224:40;;2245:8;2224:40;;;;;;;;;;;;2144:128;2099:173;:::o;8363:110:3:-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;:::-;8363:110;;:::o;6751:315::-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6751:315;;;;:::o;288:723:14:-;344:13;574:1;565:5;:10;561:53;;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:78;695:1;687:4;:9;680:78;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768:39;;818:154;834:1;825:5;:10;818:154;;862:1;852:11;;;;;:::i;:::-;;;929:2;921:5;:10;;;;:::i;:::-;908:2;:24;;;;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;958:2;949:11;;;;;:::i;:::-;;;818:154;;;996:6;982:21;;;;;288:723;;;;:::o;787:157:2:-;872:4;911:25;896:40;;;:11;:40;;;;889:47;;787:157;;;:::o;2613:589:4:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;2835:1;2819:18;;:4;:18;;;2815:187;;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;2916:10;;:4;:10;;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;2912:90;2815:187;3030:1;3016:16;;:2;:16;;;3012:183;;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;3116:10;;:2;:10;;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;:::-;3112:83;3012:183;2613:589;;;:::o;8700:321:3:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;8700:321;;;:::o;12100:803::-;12255:4;12276:15;:2;:13;;;:15::i;:::-;12272:624;;;12328:2;12312:36;;;12349:12;:10;:12::i;:::-;12363:4;12369:7;12378:5;12312:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12575:1;12558:6;:13;:18;12554:272;;;12601:60;;;;;;;;;;:::i;:::-;;;;;;;;12554:272;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;12445:45;;;12435:55;;;:6;:55;;;;12428:62;;;;;12272:624;12880:4;12873:11;;12100:803;;;;;;;:::o;13475:126::-;;;;:::o;3925:164:4:-;4029:10;:17;;;;4002:15;:24;4018:7;4002:24;;;;;;;;;;;:44;;;;4057:10;4073:7;4057:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3925:164;:::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;4982:51;;5044:18;5065:17;:26;5083:7;5065:26;;;;;;;;;;;;5044:47;;5212:14;5198:10;:28;5194:328;;5243:19;5265:12;:18;5278:4;5265:18;;;;;;;;;;;;;;;:34;5284:14;5265:34;;;;;;;;;;;;5243:56;;5349:11;5316:12;:18;5329:4;5316:18;;;;;;;;;;;;;;;:30;5335:10;5316:30;;;;;;;;;;;:44;;;;5466:10;5433:17;:30;5451:11;5433:30;;;;;;;;;;;:43;;;;5228:294;5194:328;5618:17;:26;5636:7;5618:26;;;;;;;;;;;5611:33;;;5662:12;:18;5675:4;5662:18;;;;;;;;;;;;;;;:34;5681:14;5662:34;;;;;;;;;;;5655:41;;;4797:907;;4716:988;;:::o;5999:1079::-;6252:22;6297:1;6277:10;:17;;;;:21;;;;:::i;:::-;6252:46;;6309:18;6330:15;:24;6346:7;6330:24;;;;;;;;;;;;6309:45;;6681:19;6703:10;6714:14;6703:26;;;;;;;;:::i;:::-;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6878:10;6847:15;:28;6863:11;6847:28;;;;;;;;;;;:41;;;;7019:15;:24;7035:7;7019:24;;;;;;;;;;;7012:31;;;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;3588:37;;3663:7;3636:12;:16;3649:2;3636:16;;;;;;;;;;;;;;;:24;3653:6;3636:24;;;;;;;;;;;:34;;;;3710:6;3681:17;:26;3699:7;3681:26;;;;;;;;;;;:35;;;;3577:147;3503:221;;:::o;9357:382:3:-;9451:1;9437:16;;:2;:16;;;;9429:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9510:16;9518:7;9510;:16::i;:::-;9509:17;9501:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;9647:1;9630:9;:13;9640:2;9630:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9678:2;9659:7;:16;9667:7;9659:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9723:7;9719:2;9698:33;;9715:1;9698:33;;;;;;;;;;;;9357:382;;:::o;743:387:0:-;803:4;1011:12;1078:7;1066:20;1058:28;;1121:1;1114:4;:8;1107:15;;;743:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:15:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:323::-;8518:6;8567:2;8555:9;8546:7;8542:23;8538:32;8535:119;;;8573:79;;:::i;:::-;8535:119;8693:1;8718:50;8760:7;8751:6;8740:9;8736:22;8718:50;:::i;:::-;8708:60;;8664:114;8462:323;;;;:::o;8791:117::-;8900:1;8897;8890:12;8914:180;8962:77;8959:1;8952:88;9059:4;9056:1;9049:15;9083:4;9080:1;9073:15;9100:281;9183:27;9205:4;9183:27;:::i;:::-;9175:6;9171:40;9313:6;9301:10;9298:22;9277:18;9265:10;9262:34;9259:62;9256:88;;;9324:18;;:::i;:::-;9256:88;9364:10;9360:2;9353:22;9143:238;9100:281;;:::o;9387:129::-;9421:6;9448:20;;:::i;:::-;9438:30;;9477:33;9505:4;9497:6;9477:33;:::i;:::-;9387:129;;;:::o;9522:307::-;9583:4;9673:18;9665:6;9662:30;9659:56;;;9695:18;;:::i;:::-;9659:56;9733:29;9755:6;9733:29;:::i;:::-;9725:37;;9817:4;9811;9807:15;9799:23;;9522:307;;;:::o;9835:154::-;9919:6;9914:3;9909;9896:30;9981:1;9972:6;9967:3;9963:16;9956:27;9835:154;;;:::o;9995:410::-;10072:5;10097:65;10113:48;10154:6;10113:48;:::i;:::-;10097:65;:::i;:::-;10088:74;;10185:6;10178:5;10171:21;10223:4;10216:5;10212:16;10261:3;10252:6;10247:3;10243:16;10240:25;10237:112;;;10268:79;;:::i;:::-;10237:112;10358:41;10392:6;10387:3;10382;10358:41;:::i;:::-;10078:327;9995:410;;;;;:::o;10424:338::-;10479:5;10528:3;10521:4;10513:6;10509:17;10505:27;10495:122;;10536:79;;:::i;:::-;10495:122;10653:6;10640:20;10678:78;10752:3;10744:6;10737:4;10729:6;10725:17;10678:78;:::i;:::-;10669:87;;10485:277;10424:338;;;;:::o;10768:943::-;10863:6;10871;10879;10887;10936:3;10924:9;10915:7;10911:23;10907:33;10904:120;;;10943:79;;:::i;:::-;10904:120;11063:1;11088:53;11133:7;11124:6;11113:9;11109:22;11088:53;:::i;:::-;11078:63;;11034:117;11190:2;11216:53;11261:7;11252:6;11241:9;11237:22;11216:53;:::i;:::-;11206:63;;11161:118;11318:2;11344:53;11389:7;11380:6;11369:9;11365:22;11344:53;:::i;:::-;11334:63;;11289:118;11474:2;11463:9;11459:18;11446:32;11505:18;11497:6;11494:30;11491:117;;;11527:79;;:::i;:::-;11491:117;11632:62;11686:7;11677:6;11666:9;11662:22;11632:62;:::i;:::-;11622:72;;11417:287;10768:943;;;;;;;:::o;11734:568::-;11807:8;11817:6;11867:3;11860:4;11852:6;11848:17;11844:27;11834:122;;11875:79;;:::i;:::-;11834:122;11988:6;11975:20;11965:30;;12018:18;12010:6;12007:30;12004:117;;;12040:79;;:::i;:::-;12004:117;12154:4;12146:6;12142:17;12130:29;;12208:3;12200:4;12192:6;12188:17;12178:8;12174:32;12171:41;12168:128;;;12215:79;;:::i;:::-;12168:128;11734:568;;;;;:::o;12308:559::-;12394:6;12402;12451:2;12439:9;12430:7;12426:23;12422:32;12419:119;;;12457:79;;:::i;:::-;12419:119;12605:1;12594:9;12590:17;12577:31;12635:18;12627:6;12624:30;12621:117;;;12657:79;;:::i;:::-;12621:117;12770:80;12842:7;12833:6;12822:9;12818:22;12770:80;:::i;:::-;12752:98;;;;12548:312;12308:559;;;;;:::o;12873:474::-;12941:6;12949;12998:2;12986:9;12977:7;12973:23;12969:32;12966:119;;;13004:79;;:::i;:::-;12966:119;13124:1;13149:53;13194:7;13185:6;13174:9;13170:22;13149:53;:::i;:::-;13139:63;;13095:117;13251:2;13277:53;13322:7;13313:6;13302:9;13298:22;13277:53;:::i;:::-;13267:63;;13222:118;12873:474;;;;;:::o;13353:180::-;13401:77;13398:1;13391:88;13498:4;13495:1;13488:15;13522:4;13519:1;13512:15;13539:320;13583:6;13620:1;13614:4;13610:12;13600:22;;13667:1;13661:4;13657:12;13688:18;13678:81;;13744:4;13736:6;13732:17;13722:27;;13678:81;13806:2;13798:6;13795:14;13775:18;13772:38;13769:84;;;13825:18;;:::i;:::-;13769:84;13590:269;13539:320;;;:::o;13865:231::-;14005:34;14001:1;13993:6;13989:14;13982:58;14074:14;14069:2;14061:6;14057:15;14050:39;13865:231;:::o;14102:366::-;14244:3;14265:67;14329:2;14324:3;14265:67;:::i;:::-;14258:74;;14341:93;14430:3;14341:93;:::i;:::-;14459:2;14454:3;14450:12;14443:19;;14102:366;;;:::o;14474:419::-;14640:4;14678:2;14667:9;14663:18;14655:26;;14727:9;14721:4;14717:20;14713:1;14702:9;14698:17;14691:47;14755:131;14881:4;14755:131;:::i;:::-;14747:139;;14474:419;;;:::o;14899:220::-;15039:34;15035:1;15027:6;15023:14;15016:58;15108:3;15103:2;15095:6;15091:15;15084:28;14899:220;:::o;15125:366::-;15267:3;15288:67;15352:2;15347:3;15288:67;:::i;:::-;15281:74;;15364:93;15453:3;15364:93;:::i;:::-;15482:2;15477:3;15473:12;15466:19;;15125:366;;;:::o;15497:419::-;15663:4;15701:2;15690:9;15686:18;15678:26;;15750:9;15744:4;15740:20;15736:1;15725:9;15721:17;15714:47;15778:131;15904:4;15778:131;:::i;:::-;15770:139;;15497:419;;;:::o;15922:243::-;16062:34;16058:1;16050:6;16046:14;16039:58;16131:26;16126:2;16118:6;16114:15;16107:51;15922:243;:::o;16171:366::-;16313:3;16334:67;16398:2;16393:3;16334:67;:::i;:::-;16327:74;;16410:93;16499:3;16410:93;:::i;:::-;16528:2;16523:3;16519:12;16512:19;;16171:366;;;:::o;16543:419::-;16709:4;16747:2;16736:9;16732:18;16724:26;;16796:9;16790:4;16786:20;16782:1;16771:9;16767:17;16760:47;16824:131;16950:4;16824:131;:::i;:::-;16816:139;;16543:419;;;:::o;16968:236::-;17108:34;17104:1;17096:6;17092:14;17085:58;17177:19;17172:2;17164:6;17160:15;17153:44;16968:236;:::o;17210:366::-;17352:3;17373:67;17437:2;17432:3;17373:67;:::i;:::-;17366:74;;17449:93;17538:3;17449:93;:::i;:::-;17567:2;17562:3;17558:12;17551:19;;17210:366;;;:::o;17582:419::-;17748:4;17786:2;17775:9;17771:18;17763:26;;17835:9;17829:4;17825:20;17821:1;17810:9;17806:17;17799:47;17863:131;17989:4;17863:131;:::i;:::-;17855:139;;17582:419;;;:::o;18007:230::-;18147:34;18143:1;18135:6;18131:14;18124:58;18216:13;18211:2;18203:6;18199:15;18192:38;18007:230;:::o;18243:366::-;18385:3;18406:67;18470:2;18465:3;18406:67;:::i;:::-;18399:74;;18482:93;18571:3;18482:93;:::i;:::-;18600:2;18595:3;18591:12;18584:19;;18243:366;;;:::o;18615:419::-;18781:4;18819:2;18808:9;18804:18;18796:26;;18868:9;18862:4;18858:20;18854:1;18843:9;18839:17;18832:47;18896:131;19022:4;18896:131;:::i;:::-;18888:139;;18615:419;;;:::o;19040:182::-;19180:34;19176:1;19168:6;19164:14;19157:58;19040:182;:::o;19228:366::-;19370:3;19391:67;19455:2;19450:3;19391:67;:::i;:::-;19384:74;;19467:93;19556:3;19467:93;:::i;:::-;19585:2;19580:3;19576:12;19569:19;;19228:366;;;:::o;19600:419::-;19766:4;19804:2;19793:9;19789:18;19781:26;;19853:9;19847:4;19843:20;19839:1;19828:9;19824:17;19817:47;19881:131;20007:4;19881:131;:::i;:::-;19873:139;;19600:419;;;:::o;20025:180::-;20073:77;20070:1;20063:88;20170:4;20167:1;20160:15;20194:4;20191:1;20184:15;20211:348;20251:7;20274:20;20292:1;20274:20;:::i;:::-;20269:25;;20308:20;20326:1;20308:20;:::i;:::-;20303:25;;20496:1;20428:66;20424:74;20421:1;20418:81;20413:1;20406:9;20399:17;20395:105;20392:131;;;20503:18;;:::i;:::-;20392:131;20551:1;20548;20544:9;20533:20;;20211:348;;;;:::o;20565:180::-;20613:77;20610:1;20603:88;20710:4;20707:1;20700:15;20734:4;20731:1;20724:15;20751:185;20791:1;20808:20;20826:1;20808:20;:::i;:::-;20803:25;;20842:20;20860:1;20842:20;:::i;:::-;20837:25;;20881:1;20871:35;;20886:18;;:::i;:::-;20871:35;20928:1;20925;20921:9;20916:14;;20751:185;;;;:::o;20942:231::-;21082:34;21078:1;21070:6;21066:14;21059:58;21151:14;21146:2;21138:6;21134:15;21127:39;20942:231;:::o;21179:366::-;21321:3;21342:67;21406:2;21401:3;21342:67;:::i;:::-;21335:74;;21418:93;21507:3;21418:93;:::i;:::-;21536:2;21531:3;21527:12;21520:19;;21179:366;;;:::o;21551:419::-;21717:4;21755:2;21744:9;21740:18;21732:26;;21804:9;21798:4;21794:20;21790:1;21779:9;21775:17;21768:47;21832:131;21958:4;21832:131;:::i;:::-;21824:139;;21551:419;;;:::o;21976:180::-;22024:77;22021:1;22014:88;22121:4;22118:1;22111:15;22145:4;22142:1;22135:15;22162:228;22302:34;22298:1;22290:6;22286:14;22279:58;22371:11;22366:2;22358:6;22354:15;22347:36;22162:228;:::o;22396:366::-;22538:3;22559:67;22623:2;22618:3;22559:67;:::i;:::-;22552:74;;22635:93;22724:3;22635:93;:::i;:::-;22753:2;22748:3;22744:12;22737:19;;22396:366;;;:::o;22768:419::-;22934:4;22972:2;22961:9;22957:18;22949:26;;23021:9;23015:4;23011:20;23007:1;22996:9;22992:17;22985:47;23049:131;23175:4;23049:131;:::i;:::-;23041:139;;22768:419;;;:::o;23193:229::-;23333:34;23329:1;23321:6;23317:14;23310:58;23402:12;23397:2;23389:6;23385:15;23378:37;23193:229;:::o;23428:366::-;23570:3;23591:67;23655:2;23650:3;23591:67;:::i;:::-;23584:74;;23667:93;23756:3;23667:93;:::i;:::-;23785:2;23780:3;23776:12;23769:19;;23428:366;;;:::o;23800:419::-;23966:4;24004:2;23993:9;23989:18;23981:26;;24053:9;24047:4;24043:20;24039:1;24028:9;24024:17;24017:47;24081:131;24207:4;24081:131;:::i;:::-;24073:139;;23800:419;;;:::o;24225:172::-;24365:24;24361:1;24353:6;24349:14;24342:48;24225:172;:::o;24403:366::-;24545:3;24566:67;24630:2;24625:3;24566:67;:::i;:::-;24559:74;;24642:93;24731:3;24642:93;:::i;:::-;24760:2;24755:3;24751:12;24744:19;;24403:366;;;:::o;24775:419::-;24941:4;24979:2;24968:9;24964:18;24956:26;;25028:9;25022:4;25018:20;25014:1;25003:9;24999:17;24992:47;25056:131;25182:4;25056:131;:::i;:::-;25048:139;;24775:419;;;:::o;25200:177::-;25340:29;25336:1;25328:6;25324:14;25317:53;25200:177;:::o;25383:366::-;25525:3;25546:67;25610:2;25605:3;25546:67;:::i;:::-;25539:74;;25622:93;25711:3;25622:93;:::i;:::-;25740:2;25735:3;25731:12;25724:19;;25383:366;;;:::o;25755:419::-;25921:4;25959:2;25948:9;25944:18;25936:26;;26008:9;26002:4;25998:20;25994:1;25983:9;25979:17;25972:47;26036:131;26162:4;26036:131;:::i;:::-;26028:139;;25755:419;;;:::o;26180:181::-;26320:33;26316:1;26308:6;26304:14;26297:57;26180:181;:::o;26367:366::-;26509:3;26530:67;26594:2;26589:3;26530:67;:::i;:::-;26523:74;;26606:93;26695:3;26606:93;:::i;:::-;26724:2;26719:3;26715:12;26708:19;;26367:366;;;:::o;26739:419::-;26905:4;26943:2;26932:9;26928:18;26920:26;;26992:9;26986:4;26982:20;26978:1;26967:9;26963:17;26956:47;27020:131;27146:4;27020:131;:::i;:::-;27012:139;;26739:419;;;:::o;27164:176::-;27304:28;27300:1;27292:6;27288:14;27281:52;27164:176;:::o;27346:366::-;27488:3;27509:67;27573:2;27568:3;27509:67;:::i;:::-;27502:74;;27585:93;27674:3;27585:93;:::i;:::-;27703:2;27698:3;27694:12;27687:19;;27346:366;;;:::o;27718:419::-;27884:4;27922:2;27911:9;27907:18;27899:26;;27971:9;27965:4;27961:20;27957:1;27946:9;27942:17;27935:47;27999:131;28125:4;27999:131;:::i;:::-;27991:139;;27718:419;;;:::o;28143:182::-;28283:34;28279:1;28271:6;28267:14;28260:58;28143:182;:::o;28331:366::-;28473:3;28494:67;28558:2;28553:3;28494:67;:::i;:::-;28487:74;;28570:93;28659:3;28570:93;:::i;:::-;28688:2;28683:3;28679:12;28672:19;;28331:366;;;:::o;28703:419::-;28869:4;28907:2;28896:9;28892:18;28884:26;;28956:9;28950:4;28946:20;28942:1;28931:9;28927:17;28920:47;28984:131;29110:4;28984:131;:::i;:::-;28976:139;;28703:419;;;:::o;29128:305::-;29168:3;29187:20;29205:1;29187:20;:::i;:::-;29182:25;;29221:20;29239:1;29221:20;:::i;:::-;29216:25;;29375:1;29307:66;29303:74;29300:1;29297:81;29294:107;;;29381:18;;:::i;:::-;29294:107;29425:1;29422;29418:9;29411:16;;29128:305;;;;:::o;29439:182::-;29579:34;29575:1;29567:6;29563:14;29556:58;29439:182;:::o;29627:366::-;29769:3;29790:67;29854:2;29849:3;29790:67;:::i;:::-;29783:74;;29866:93;29955:3;29866:93;:::i;:::-;29984:2;29979:3;29975:12;29968:19;;29627:366;;;:::o;29999:419::-;30165:4;30203:2;30192:9;30188:18;30180:26;;30252:9;30246:4;30242:20;30238:1;30227:9;30223:17;30216:47;30280:131;30406:4;30280:131;:::i;:::-;30272:139;;29999:419;;;:::o;30424:178::-;30564:30;30560:1;30552:6;30548:14;30541:54;30424:178;:::o;30608:366::-;30750:3;30771:67;30835:2;30830:3;30771:67;:::i;:::-;30764:74;;30847:93;30936:3;30847:93;:::i;:::-;30965:2;30960:3;30956:12;30949:19;;30608:366;;;:::o;30980:419::-;31146:4;31184:2;31173:9;31169:18;31161:26;;31233:9;31227:4;31223:20;31219:1;31208:9;31204:17;31197:47;31261:131;31387:4;31261:131;:::i;:::-;31253:139;;30980:419;;;:::o;31405:191::-;31445:4;31465:20;31483:1;31465:20;:::i;:::-;31460:25;;31499:20;31517:1;31499:20;:::i;:::-;31494:25;;31538:1;31535;31532:8;31529:34;;;31543:18;;:::i;:::-;31529:34;31588:1;31585;31581:9;31573:17;;31405:191;;;;:::o;31602:233::-;31641:3;31664:24;31682:5;31664:24;:::i;:::-;31655:33;;31710:66;31703:5;31700:77;31697:103;;;31780:18;;:::i;:::-;31697:103;31827:1;31820:5;31816:13;31809:20;;31602:233;;;:::o;31841:175::-;31981:27;31977:1;31969:6;31965:14;31958:51;31841:175;:::o;32022:366::-;32164:3;32185:67;32249:2;32244:3;32185:67;:::i;:::-;32178:74;;32261:93;32350:3;32261:93;:::i;:::-;32379:2;32374:3;32370:12;32363:19;;32022:366;;;:::o;32394:419::-;32560:4;32598:2;32587:9;32583:18;32575:26;;32647:9;32641:4;32637:20;32633:1;32622:9;32618:17;32611:47;32675:131;32801:4;32675:131;:::i;:::-;32667:139;;32394:419;;;:::o;32819:170::-;32959:22;32955:1;32947:6;32943:14;32936:46;32819:170;:::o;32995:366::-;33137:3;33158:67;33222:2;33217:3;33158:67;:::i;:::-;33151:74;;33234:93;33323:3;33234:93;:::i;:::-;33352:2;33347:3;33343:12;33336:19;;32995:366;;;:::o;33367:419::-;33533:4;33571:2;33560:9;33556:18;33548:26;;33620:9;33614:4;33610:20;33606:1;33595:9;33591:17;33584:47;33648:131;33774:4;33648:131;:::i;:::-;33640:139;;33367:419;;;:::o;33792:148::-;33894:11;33931:3;33916:18;;33792:148;;;;:::o;33946:377::-;34052:3;34080:39;34113:5;34080:39;:::i;:::-;34135:89;34217:6;34212:3;34135:89;:::i;:::-;34128:96;;34233:52;34278:6;34273:3;34266:4;34259:5;34255:16;34233:52;:::i;:::-;34310:6;34305:3;34301:16;34294:23;;34056:267;33946:377;;;;:::o;34329:435::-;34509:3;34531:95;34622:3;34613:6;34531:95;:::i;:::-;34524:102;;34643:95;34734:3;34725:6;34643:95;:::i;:::-;34636:102;;34755:3;34748:10;;34329:435;;;;;:::o;34770:225::-;34910:34;34906:1;34898:6;34894:14;34887:58;34979:8;34974:2;34966:6;34962:15;34955:33;34770:225;:::o;35001:366::-;35143:3;35164:67;35228:2;35223:3;35164:67;:::i;:::-;35157:74;;35240:93;35329:3;35240:93;:::i;:::-;35358:2;35353:3;35349:12;35342:19;;35001:366;;;:::o;35373:419::-;35539:4;35577:2;35566:9;35562:18;35554:26;;35626:9;35620:4;35616:20;35612:1;35601:9;35597:17;35590:47;35654:131;35780:4;35654:131;:::i;:::-;35646:139;;35373:419;;;:::o;35798:231::-;35938:34;35934:1;35926:6;35922:14;35915:58;36007:14;36002:2;35994:6;35990:15;35983:39;35798:231;:::o;36035:366::-;36177:3;36198:67;36262:2;36257:3;36198:67;:::i;:::-;36191:74;;36274:93;36363:3;36274:93;:::i;:::-;36392:2;36387:3;36383:12;36376:19;;36035:366;;;:::o;36407:419::-;36573:4;36611:2;36600:9;36596:18;36588:26;;36660:9;36654:4;36650:20;36646:1;36635:9;36631:17;36624:47;36688:131;36814:4;36688:131;:::i;:::-;36680:139;;36407:419;;;:::o;36832:228::-;36972:34;36968:1;36960:6;36956:14;36949:58;37041:11;37036:2;37028:6;37024:15;37017:36;36832:228;:::o;37066:366::-;37208:3;37229:67;37293:2;37288:3;37229:67;:::i;:::-;37222:74;;37305:93;37394:3;37305:93;:::i;:::-;37423:2;37418:3;37414:12;37407:19;;37066:366;;;:::o;37438:419::-;37604:4;37642:2;37631:9;37627:18;37619:26;;37691:9;37685:4;37681:20;37677:1;37666:9;37662:17;37655:47;37719:131;37845:4;37719:131;:::i;:::-;37711:139;;37438:419;;;:::o;37863:223::-;38003:34;37999:1;37991:6;37987:14;37980:58;38072:6;38067:2;38059:6;38055:15;38048:31;37863:223;:::o;38092:366::-;38234:3;38255:67;38319:2;38314:3;38255:67;:::i;:::-;38248:74;;38331:93;38420:3;38331:93;:::i;:::-;38449:2;38444:3;38440:12;38433:19;;38092:366;;;:::o;38464:419::-;38630:4;38668:2;38657:9;38653:18;38645:26;;38717:9;38711:4;38707:20;38703:1;38692:9;38688:17;38681:47;38745:131;38871:4;38745:131;:::i;:::-;38737:139;;38464:419;;;:::o;38889:237::-;39029:34;39025:1;39017:6;39013:14;39006:58;39098:20;39093:2;39085:6;39081:15;39074:45;38889:237;:::o;39132:366::-;39274:3;39295:67;39359:2;39354:3;39295:67;:::i;:::-;39288:74;;39371:93;39460:3;39371:93;:::i;:::-;39489:2;39484:3;39480:12;39473:19;;39132:366;;;:::o;39504:419::-;39670:4;39708:2;39697:9;39693:18;39685:26;;39757:9;39751:4;39747:20;39743:1;39732:9;39728:17;39721:47;39785:131;39911:4;39785:131;:::i;:::-;39777:139;;39504:419;;;:::o;39929:176::-;39961:1;39978:20;39996:1;39978:20;:::i;:::-;39973:25;;40012:20;40030:1;40012:20;:::i;:::-;40007:25;;40051:1;40041:35;;40056:18;;:::i;:::-;40041:35;40097:1;40094;40090:9;40085:14;;39929:176;;;;:::o;40111:98::-;40162:6;40196:5;40190:12;40180:22;;40111:98;;;:::o;40215:168::-;40298:11;40332:6;40327:3;40320:19;40372:4;40367:3;40363:14;40348:29;;40215:168;;;;:::o;40389:360::-;40475:3;40503:38;40535:5;40503:38;:::i;:::-;40557:70;40620:6;40615:3;40557:70;:::i;:::-;40550:77;;40636:52;40681:6;40676:3;40669:4;40662:5;40658:16;40636:52;:::i;:::-;40713:29;40735:6;40713:29;:::i;:::-;40708:3;40704:39;40697:46;;40479:270;40389:360;;;;:::o;40755:640::-;40950:4;40988:3;40977:9;40973:19;40965:27;;41002:71;41070:1;41059:9;41055:17;41046:6;41002:71;:::i;:::-;41083:72;41151:2;41140:9;41136:18;41127:6;41083:72;:::i;:::-;41165;41233:2;41222:9;41218:18;41209:6;41165:72;:::i;:::-;41284:9;41278:4;41274:20;41269:2;41258:9;41254:18;41247:48;41312:76;41383:4;41374:6;41312:76;:::i;:::-;41304:84;;40755:640;;;;;;;:::o;41401:141::-;41457:5;41488:6;41482:13;41473:22;;41504:32;41530:5;41504:32;:::i;:::-;41401:141;;;;:::o;41548:349::-;41617:6;41666:2;41654:9;41645:7;41641:23;41637:32;41634:119;;;41672:79;;:::i;:::-;41634:119;41792:1;41817:63;41872:7;41863:6;41852:9;41848:22;41817:63;:::i;:::-;41807:73;;41763:127;41548:349;;;;:::o;41903:180::-;41951:77;41948:1;41941:88;42048:4;42045:1;42038:15;42072:4;42069:1;42062:15;42089:182;42229:34;42225:1;42217:6;42213:14;42206:58;42089:182;:::o;42277:366::-;42419:3;42440:67;42504:2;42499:3;42440:67;:::i;:::-;42433:74;;42516:93;42605:3;42516:93;:::i;:::-;42634:2;42629:3;42625:12;42618:19;;42277:366;;;:::o;42649:419::-;42815:4;42853:2;42842:9;42838:18;42830:26;;42902:9;42896:4;42892:20;42888:1;42877:9;42873:17;42866:47;42930:131;43056:4;42930:131;:::i;:::-;42922:139;;42649:419;;;:::o;43074:178::-;43214:30;43210:1;43202:6;43198:14;43191:54;43074:178;:::o;43258:366::-;43400:3;43421:67;43485:2;43480:3;43421:67;:::i;:::-;43414:74;;43497:93;43586:3;43497:93;:::i;:::-;43615:2;43610:3;43606:12;43599:19;;43258:366;;;:::o;43630:419::-;43796:4;43834:2;43823:9;43819:18;43811:26;;43883:9;43877:4;43873:20;43869:1;43858:9;43854:17;43847:47;43911:131;44037:4;43911:131;:::i;:::-;43903:139;;43630:419;;;:::o

Swarm Source

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