ETH Price: $3,385.42 (-1.52%)
Gas: 2 Gwei

Token

GFC Companion (GFCC)
 

Overview

Max Total Supply

161 GFCC

Holders

139

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
yahtzeefish.eth
Balance
1 GFCC
0x94803D6C3cb805a308B9814202D7d01dCb26049D
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:
GFCWeapon

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 14: GFCWeapon.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./ERC721Enumerable.sol";

import "./Ownable.sol";

contract GFCWeapon is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string private _tokenBaseURI = '';

    constructor(string memory name, string memory symbol) ERC721(name, symbol){}

    function tokensOfOwner(address _owner)external view returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            for (uint256 i; i < tokenCount; i++) {
                result[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return result;
        }
    }

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

    /*
     * Only the owner can do these things
     */
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        _tokenBaseURI = _newBaseURI;
    }

    function airdrop(address[] calldata to) public onlyOwner {
        uint256 supply = totalSupply();
        for(uint256 i = 0; i < to.length; i++) {
            //Ensure tokenId starts with 1
            supply += 1;
            _safeMint(to[i], supply);
        }
    }
}

File 1 of 14: 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);
    }

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

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

File 2 of 14: 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 14: 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 14: 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.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 14: 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 14: GFCCompanion.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./ERC721Enumerable.sol";

import "./Ownable.sol";

contract GFCCompanion is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string private _tokenBaseURI = '';

    constructor(string memory name, string memory symbol) ERC721(name, symbol){}

    function tokensOfOwner(address _owner)external view returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            for (uint256 i; i < tokenCount; i++) {
                result[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return result;
        }
    }

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

    /*
     * Only the owner can do these things
     */
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        _tokenBaseURI = _newBaseURI;
    }

    function airdrop(address[] calldata to) public onlyOwner {
        uint256 supply = totalSupply();
        for(uint256 i = 0; i < to.length; i++) {
            //Ensure tokenId starts with 1
            supply += 1;
            _safeMint(to[i], supply);
        }
    }
}

File 8 of 14: 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 14: 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 14: 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 14: 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 14: 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 14: 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 14 of 14: 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":"address[]","name":"to","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"}]

608060405260405180602001604052806000815250600b90805190602001906200002b9291906200018b565b503480156200003957600080fd5b5060405162003df638038062003df683398181016040528101906200005f9190620002b9565b81818160009080519060200190620000799291906200018b565b508060019080519060200190620000929291906200018b565b505050620000b5620000a9620000bd60201b60201c565b620000c560201b60201c565b5050620004c2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200019990620003d3565b90600052602060002090601f016020900481019282620001bd576000855562000209565b82601f10620001d857805160ff191683800117855562000209565b8280016001018555821562000209579182015b8281111562000208578251825591602001919060010190620001eb565b5b5090506200021891906200021c565b5090565b5b80821115620002375760008160009055506001016200021d565b5090565b6000620002526200024c8462000367565b6200033e565b905082815260208101848484011115620002715762000270620004a2565b5b6200027e8482856200039d565b509392505050565b600082601f8301126200029e576200029d6200049d565b5b8151620002b08482602086016200023b565b91505092915050565b60008060408385031215620002d357620002d2620004ac565b5b600083015167ffffffffffffffff811115620002f457620002f3620004a7565b5b620003028582860162000286565b925050602083015167ffffffffffffffff811115620003265762000325620004a7565b5b620003348582860162000286565b9150509250929050565b60006200034a6200035d565b905062000358828262000409565b919050565b6000604051905090565b600067ffffffffffffffff8211156200038557620003846200046e565b5b6200039082620004b1565b9050602081019050919050565b60005b83811015620003bd578082015181840152602081019050620003a0565b83811115620003cd576000848401525b50505050565b60006002820490506001821680620003ec57607f821691505b602082108114156200040357620004026200043f565b5b50919050565b6200041482620004b1565b810181811067ffffffffffffffff821117156200043657620004356200046e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61392480620004d26000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610387578063a22cb465146103a5578063b88d4fde146103c1578063c87b56dd146103dd578063e985e9c51461040d578063f2fde38b1461043d57610142565b806370a08231146102e3578063715018a614610313578063729ad39e1461031d5780638462151c146103395780638da5cb5b1461036957610142565b806323b872dd1161010a57806323b872dd146101ff5780632f745c591461021b57806342842e0e1461024b5780634f6ccce71461026757806355f804b3146102975780636352211e146102b357610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c9190612722565b610459565b60405161016e9190612c6a565b60405180910390f35b61017f6104d3565b60405161018c9190612c85565b60405180910390f35b6101af60048036038101906101aa91906127c5565b610565565b6040516101bc9190612be1565b60405180910390f35b6101df60048036038101906101da9190612695565b6105ea565b005b6101e9610702565b6040516101f69190612ee7565b60405180910390f35b6102196004803603810190610214919061257f565b61070f565b005b61023560048036038101906102309190612695565b61076f565b6040516102429190612ee7565b60405180910390f35b6102656004803603810190610260919061257f565b610814565b005b610281600480360381019061027c91906127c5565b610834565b60405161028e9190612ee7565b60405180910390f35b6102b160048036038101906102ac919061277c565b6108a5565b005b6102cd60048036038101906102c891906127c5565b61093b565b6040516102da9190612be1565b60405180910390f35b6102fd60048036038101906102f89190612512565b6109ed565b60405161030a9190612ee7565b60405180910390f35b61031b610aa5565b005b610337600480360381019061033291906126d5565b610b2d565b005b610353600480360381019061034e9190612512565b610c1c565b6040516103609190612c48565b60405180910390f35b610371610d26565b60405161037e9190612be1565b60405180910390f35b61038f610d50565b60405161039c9190612c85565b60405180910390f35b6103bf60048036038101906103ba9190612655565b610de2565b005b6103db60048036038101906103d691906125d2565b610f63565b005b6103f760048036038101906103f291906127c5565b610fc5565b6040516104049190612c85565b60405180910390f35b6104276004803603810190610422919061253f565b61106c565b6040516104349190612c6a565b60405180910390f35b61045760048036038101906104529190612512565b611100565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104cc57506104cb826111f8565b5b9050919050565b6060600080546104e290613176565b80601f016020809104026020016040519081016040528092919081815260200182805461050e90613176565b801561055b5780601f106105305761010080835404028352916020019161055b565b820191906000526020600020905b81548152906001019060200180831161053e57829003601f168201915b5050505050905090565b6000610570826112da565b6105af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a690612e07565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105f58261093b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d90612e87565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610685611346565b73ffffffffffffffffffffffffffffffffffffffff1614806106b457506106b3816106ae611346565b61106c565b5b6106f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ea90612d87565b60405180910390fd5b6106fd838361134e565b505050565b6000600880549050905090565b61072061071a611346565b82611407565b61075f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075690612ea7565b60405180910390fd5b61076a8383836114e5565b505050565b600061077a836109ed565b82106107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b290612ca7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61082f83838360405180602001604052806000815250610f63565b505050565b600061083e610702565b821061087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690612ec7565b60405180910390fd5b600882815481106108935761089261330f565b5b90600052602060002001549050919050565b6108ad611346565b73ffffffffffffffffffffffffffffffffffffffff166108cb610d26565b73ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890612e27565b60405180910390fd5b80600b90805190602001906109379291906122d0565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db90612dc7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5590612da7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610aad611346565b73ffffffffffffffffffffffffffffffffffffffff16610acb610d26565b73ffffffffffffffffffffffffffffffffffffffff1614610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890612e27565b60405180910390fd5b610b2b6000611741565b565b610b35611346565b73ffffffffffffffffffffffffffffffffffffffff16610b53610d26565b73ffffffffffffffffffffffffffffffffffffffff1614610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090612e27565b60405180910390fd5b6000610bb3610702565b905060005b83839050811015610c1657600182610bd09190613005565b9150610c03848483818110610be857610be761330f565b5b9050602002016020810190610bfd9190612512565b83611807565b8080610c0e906131d9565b915050610bb8565b50505050565b60606000610c29836109ed565b90506000811415610c8657600067ffffffffffffffff811115610c4f57610c4e61333e565b5b604051908082528060200260200182016040528015610c7d5781602001602082028036833780820191505090505b50915050610d21565b60008167ffffffffffffffff811115610ca257610ca161333e565b5b604051908082528060200260200182016040528015610cd05781602001602082028036833780820191505090505b50905060005b82811015610d1a57610ce8858261076f565b828281518110610cfb57610cfa61330f565b5b6020026020010181815250508080610d12906131d9565b915050610cd6565b5080925050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d5f90613176565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8b90613176565b8015610dd85780601f10610dad57610100808354040283529160200191610dd8565b820191906000526020600020905b815481529060010190602001808311610dbb57829003601f168201915b5050505050905090565b610dea611346565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90612d47565b60405180910390fd5b8060056000610e65611346565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f12611346565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f579190612c6a565b60405180910390a35050565b610f74610f6e611346565b83611407565b610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90612ea7565b60405180910390fd5b610fbf84848484611825565b50505050565b6060610fd0826112da565b61100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690612e67565b60405180910390fd5b6000611019611881565b905060008151116110395760405180602001604052806000815250611064565b8061104384611913565b604051602001611054929190612bbd565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611108611346565b73ffffffffffffffffffffffffffffffffffffffff16611126610d26565b73ffffffffffffffffffffffffffffffffffffffff161461117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390612e27565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390612ce7565b60405180910390fd5b6111f581611741565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112c357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806112d357506112d282611a74565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113c18361093b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611412826112da565b611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890612d67565b60405180910390fd5b600061145c8361093b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114cb57508373ffffffffffffffffffffffffffffffffffffffff166114b384610565565b73ffffffffffffffffffffffffffffffffffffffff16145b806114dc57506114db818561106c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115058261093b565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290612e47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c290612d27565b60405180910390fd5b6115d6838383611ade565b6115e160008261134e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611631919061308c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116889190613005565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611821828260405180602001604052806000815250611bf2565b5050565b6118308484846114e5565b61183c84848484611c4d565b61187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290612cc7565b60405180910390fd5b50505050565b6060600b805461189090613176565b80601f01602080910402602001604051908101604052809291908181526020018280546118bc90613176565b80156119095780601f106118de57610100808354040283529160200191611909565b820191906000526020600020905b8154815290600101906020018083116118ec57829003601f168201915b5050505050905090565b6060600082141561195b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a6f565b600082905060005b6000821461198d578080611976906131d9565b915050600a82611986919061305b565b9150611963565b60008167ffffffffffffffff8111156119a9576119a861333e565b5b6040519080825280601f01601f1916602001820160405280156119db5781602001600182028036833780820191505090505b5090505b60008514611a68576001826119f4919061308c565b9150600a85611a039190613222565b6030611a0f9190613005565b60f81b818381518110611a2557611a2461330f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611a61919061305b565b94506119df565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ae9838383611de4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b2c57611b2781611de9565b611b6b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b6a57611b698382611e32565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bae57611ba981611f9f565b611bed565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611bec57611beb8282612070565b5b5b505050565b611bfc83836120ef565b611c096000848484611c4d565b611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90612cc7565b60405180910390fd5b505050565b6000611c6e8473ffffffffffffffffffffffffffffffffffffffff166122bd565b15611dd7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c97611346565b8786866040518563ffffffff1660e01b8152600401611cb99493929190612bfc565b602060405180830381600087803b158015611cd357600080fd5b505af1925050508015611d0457506040513d601f19601f82011682018060405250810190611d01919061274f565b60015b611d87573d8060008114611d34576040519150601f19603f3d011682016040523d82523d6000602084013e611d39565b606091505b50600081511415611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7690612cc7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ddc565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611e3f846109ed565b611e49919061308c565b9050600060076000848152602001908152602001600020549050818114611f2e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611fb3919061308c565b9050600060096000848152602001908152602001600020549050600060088381548110611fe357611fe261330f565b5b9060005260206000200154905080600883815481106120055761200461330f565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612054576120536132e0565b5b6001900381819060005260206000200160009055905550505050565b600061207b836109ed565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215690612de7565b60405180910390fd5b612168816112da565b156121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90612d07565b60405180910390fd5b6121b460008383611ade565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122049190613005565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546122dc90613176565b90600052602060002090601f0160209004810192826122fe5760008555612345565b82601f1061231757805160ff1916838001178555612345565b82800160010185558215612345579182015b82811115612344578251825591602001919060010190612329565b5b5090506123529190612356565b5090565b5b8082111561236f576000816000905550600101612357565b5090565b600061238661238184612f27565b612f02565b9050828152602081018484840111156123a2576123a161337c565b5b6123ad848285613134565b509392505050565b60006123c86123c384612f58565b612f02565b9050828152602081018484840111156123e4576123e361337c565b5b6123ef848285613134565b509392505050565b60008135905061240681613892565b92915050565b60008083601f84011261242257612421613372565b5b8235905067ffffffffffffffff81111561243f5761243e61336d565b5b60208301915083602082028301111561245b5761245a613377565b5b9250929050565b600081359050612471816138a9565b92915050565b600081359050612486816138c0565b92915050565b60008151905061249b816138c0565b92915050565b600082601f8301126124b6576124b5613372565b5b81356124c6848260208601612373565b91505092915050565b600082601f8301126124e4576124e3613372565b5b81356124f48482602086016123b5565b91505092915050565b60008135905061250c816138d7565b92915050565b60006020828403121561252857612527613386565b5b6000612536848285016123f7565b91505092915050565b6000806040838503121561255657612555613386565b5b6000612564858286016123f7565b9250506020612575858286016123f7565b9150509250929050565b60008060006060848603121561259857612597613386565b5b60006125a6868287016123f7565b93505060206125b7868287016123f7565b92505060406125c8868287016124fd565b9150509250925092565b600080600080608085870312156125ec576125eb613386565b5b60006125fa878288016123f7565b945050602061260b878288016123f7565b935050604061261c878288016124fd565b925050606085013567ffffffffffffffff81111561263d5761263c613381565b5b612649878288016124a1565b91505092959194509250565b6000806040838503121561266c5761266b613386565b5b600061267a858286016123f7565b925050602061268b85828601612462565b9150509250929050565b600080604083850312156126ac576126ab613386565b5b60006126ba858286016123f7565b92505060206126cb858286016124fd565b9150509250929050565b600080602083850312156126ec576126eb613386565b5b600083013567ffffffffffffffff81111561270a57612709613381565b5b6127168582860161240c565b92509250509250929050565b60006020828403121561273857612737613386565b5b600061274684828501612477565b91505092915050565b60006020828403121561276557612764613386565b5b60006127738482850161248c565b91505092915050565b60006020828403121561279257612791613386565b5b600082013567ffffffffffffffff8111156127b0576127af613381565b5b6127bc848285016124cf565b91505092915050565b6000602082840312156127db576127da613386565b5b60006127e9848285016124fd565b91505092915050565b60006127fe8383612b9f565b60208301905092915050565b612813816130c0565b82525050565b600061282482612f99565b61282e8185612fc7565b935061283983612f89565b8060005b8381101561286a57815161285188826127f2565b975061285c83612fba565b92505060018101905061283d565b5085935050505092915050565b612880816130d2565b82525050565b600061289182612fa4565b61289b8185612fd8565b93506128ab818560208601613143565b6128b48161338b565b840191505092915050565b60006128ca82612faf565b6128d48185612fe9565b93506128e4818560208601613143565b6128ed8161338b565b840191505092915050565b600061290382612faf565b61290d8185612ffa565b935061291d818560208601613143565b80840191505092915050565b6000612936602b83612fe9565b91506129418261339c565b604082019050919050565b6000612959603283612fe9565b9150612964826133eb565b604082019050919050565b600061297c602683612fe9565b91506129878261343a565b604082019050919050565b600061299f601c83612fe9565b91506129aa82613489565b602082019050919050565b60006129c2602483612fe9565b91506129cd826134b2565b604082019050919050565b60006129e5601983612fe9565b91506129f082613501565b602082019050919050565b6000612a08602c83612fe9565b9150612a138261352a565b604082019050919050565b6000612a2b603883612fe9565b9150612a3682613579565b604082019050919050565b6000612a4e602a83612fe9565b9150612a59826135c8565b604082019050919050565b6000612a71602983612fe9565b9150612a7c82613617565b604082019050919050565b6000612a94602083612fe9565b9150612a9f82613666565b602082019050919050565b6000612ab7602c83612fe9565b9150612ac28261368f565b604082019050919050565b6000612ada602083612fe9565b9150612ae5826136de565b602082019050919050565b6000612afd602983612fe9565b9150612b0882613707565b604082019050919050565b6000612b20602f83612fe9565b9150612b2b82613756565b604082019050919050565b6000612b43602183612fe9565b9150612b4e826137a5565b604082019050919050565b6000612b66603183612fe9565b9150612b71826137f4565b604082019050919050565b6000612b89602c83612fe9565b9150612b9482613843565b604082019050919050565b612ba88161312a565b82525050565b612bb78161312a565b82525050565b6000612bc982856128f8565b9150612bd582846128f8565b91508190509392505050565b6000602082019050612bf6600083018461280a565b92915050565b6000608082019050612c11600083018761280a565b612c1e602083018661280a565b612c2b6040830185612bae565b8181036060830152612c3d8184612886565b905095945050505050565b60006020820190508181036000830152612c628184612819565b905092915050565b6000602082019050612c7f6000830184612877565b92915050565b60006020820190508181036000830152612c9f81846128bf565b905092915050565b60006020820190508181036000830152612cc081612929565b9050919050565b60006020820190508181036000830152612ce08161294c565b9050919050565b60006020820190508181036000830152612d008161296f565b9050919050565b60006020820190508181036000830152612d2081612992565b9050919050565b60006020820190508181036000830152612d40816129b5565b9050919050565b60006020820190508181036000830152612d60816129d8565b9050919050565b60006020820190508181036000830152612d80816129fb565b9050919050565b60006020820190508181036000830152612da081612a1e565b9050919050565b60006020820190508181036000830152612dc081612a41565b9050919050565b60006020820190508181036000830152612de081612a64565b9050919050565b60006020820190508181036000830152612e0081612a87565b9050919050565b60006020820190508181036000830152612e2081612aaa565b9050919050565b60006020820190508181036000830152612e4081612acd565b9050919050565b60006020820190508181036000830152612e6081612af0565b9050919050565b60006020820190508181036000830152612e8081612b13565b9050919050565b60006020820190508181036000830152612ea081612b36565b9050919050565b60006020820190508181036000830152612ec081612b59565b9050919050565b60006020820190508181036000830152612ee081612b7c565b9050919050565b6000602082019050612efc6000830184612bae565b92915050565b6000612f0c612f1d565b9050612f1882826131a8565b919050565b6000604051905090565b600067ffffffffffffffff821115612f4257612f4161333e565b5b612f4b8261338b565b9050602081019050919050565b600067ffffffffffffffff821115612f7357612f7261333e565b5b612f7c8261338b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006130108261312a565b915061301b8361312a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130505761304f613253565b5b828201905092915050565b60006130668261312a565b91506130718361312a565b92508261308157613080613282565b5b828204905092915050565b60006130978261312a565b91506130a28361312a565b9250828210156130b5576130b4613253565b5b828203905092915050565b60006130cb8261310a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613161578082015181840152602081019050613146565b83811115613170576000848401525b50505050565b6000600282049050600182168061318e57607f821691505b602082108114156131a2576131a16132b1565b5b50919050565b6131b18261338b565b810181811067ffffffffffffffff821117156131d0576131cf61333e565b5b80604052505050565b60006131e48261312a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561321757613216613253565b5b600182019050919050565b600061322d8261312a565b91506132388361312a565b92508261324857613247613282565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61389b816130c0565b81146138a657600080fd5b50565b6138b2816130d2565b81146138bd57600080fd5b50565b6138c9816130de565b81146138d457600080fd5b50565b6138e08161312a565b81146138eb57600080fd5b5056fea264697066735822122087aa86a198d6181cd478b2737fd0dd98ac3b7f1386e0f2b53ca922ff5e711eeb64736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d47464320436f6d70616e696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044746434300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610387578063a22cb465146103a5578063b88d4fde146103c1578063c87b56dd146103dd578063e985e9c51461040d578063f2fde38b1461043d57610142565b806370a08231146102e3578063715018a614610313578063729ad39e1461031d5780638462151c146103395780638da5cb5b1461036957610142565b806323b872dd1161010a57806323b872dd146101ff5780632f745c591461021b57806342842e0e1461024b5780634f6ccce71461026757806355f804b3146102975780636352211e146102b357610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c9190612722565b610459565b60405161016e9190612c6a565b60405180910390f35b61017f6104d3565b60405161018c9190612c85565b60405180910390f35b6101af60048036038101906101aa91906127c5565b610565565b6040516101bc9190612be1565b60405180910390f35b6101df60048036038101906101da9190612695565b6105ea565b005b6101e9610702565b6040516101f69190612ee7565b60405180910390f35b6102196004803603810190610214919061257f565b61070f565b005b61023560048036038101906102309190612695565b61076f565b6040516102429190612ee7565b60405180910390f35b6102656004803603810190610260919061257f565b610814565b005b610281600480360381019061027c91906127c5565b610834565b60405161028e9190612ee7565b60405180910390f35b6102b160048036038101906102ac919061277c565b6108a5565b005b6102cd60048036038101906102c891906127c5565b61093b565b6040516102da9190612be1565b60405180910390f35b6102fd60048036038101906102f89190612512565b6109ed565b60405161030a9190612ee7565b60405180910390f35b61031b610aa5565b005b610337600480360381019061033291906126d5565b610b2d565b005b610353600480360381019061034e9190612512565b610c1c565b6040516103609190612c48565b60405180910390f35b610371610d26565b60405161037e9190612be1565b60405180910390f35b61038f610d50565b60405161039c9190612c85565b60405180910390f35b6103bf60048036038101906103ba9190612655565b610de2565b005b6103db60048036038101906103d691906125d2565b610f63565b005b6103f760048036038101906103f291906127c5565b610fc5565b6040516104049190612c85565b60405180910390f35b6104276004803603810190610422919061253f565b61106c565b6040516104349190612c6a565b60405180910390f35b61045760048036038101906104529190612512565b611100565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104cc57506104cb826111f8565b5b9050919050565b6060600080546104e290613176565b80601f016020809104026020016040519081016040528092919081815260200182805461050e90613176565b801561055b5780601f106105305761010080835404028352916020019161055b565b820191906000526020600020905b81548152906001019060200180831161053e57829003601f168201915b5050505050905090565b6000610570826112da565b6105af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a690612e07565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105f58261093b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d90612e87565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610685611346565b73ffffffffffffffffffffffffffffffffffffffff1614806106b457506106b3816106ae611346565b61106c565b5b6106f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ea90612d87565b60405180910390fd5b6106fd838361134e565b505050565b6000600880549050905090565b61072061071a611346565b82611407565b61075f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075690612ea7565b60405180910390fd5b61076a8383836114e5565b505050565b600061077a836109ed565b82106107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b290612ca7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61082f83838360405180602001604052806000815250610f63565b505050565b600061083e610702565b821061087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690612ec7565b60405180910390fd5b600882815481106108935761089261330f565b5b90600052602060002001549050919050565b6108ad611346565b73ffffffffffffffffffffffffffffffffffffffff166108cb610d26565b73ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890612e27565b60405180910390fd5b80600b90805190602001906109379291906122d0565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db90612dc7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5590612da7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610aad611346565b73ffffffffffffffffffffffffffffffffffffffff16610acb610d26565b73ffffffffffffffffffffffffffffffffffffffff1614610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890612e27565b60405180910390fd5b610b2b6000611741565b565b610b35611346565b73ffffffffffffffffffffffffffffffffffffffff16610b53610d26565b73ffffffffffffffffffffffffffffffffffffffff1614610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090612e27565b60405180910390fd5b6000610bb3610702565b905060005b83839050811015610c1657600182610bd09190613005565b9150610c03848483818110610be857610be761330f565b5b9050602002016020810190610bfd9190612512565b83611807565b8080610c0e906131d9565b915050610bb8565b50505050565b60606000610c29836109ed565b90506000811415610c8657600067ffffffffffffffff811115610c4f57610c4e61333e565b5b604051908082528060200260200182016040528015610c7d5781602001602082028036833780820191505090505b50915050610d21565b60008167ffffffffffffffff811115610ca257610ca161333e565b5b604051908082528060200260200182016040528015610cd05781602001602082028036833780820191505090505b50905060005b82811015610d1a57610ce8858261076f565b828281518110610cfb57610cfa61330f565b5b6020026020010181815250508080610d12906131d9565b915050610cd6565b5080925050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d5f90613176565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8b90613176565b8015610dd85780601f10610dad57610100808354040283529160200191610dd8565b820191906000526020600020905b815481529060010190602001808311610dbb57829003601f168201915b5050505050905090565b610dea611346565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90612d47565b60405180910390fd5b8060056000610e65611346565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f12611346565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f579190612c6a565b60405180910390a35050565b610f74610f6e611346565b83611407565b610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90612ea7565b60405180910390fd5b610fbf84848484611825565b50505050565b6060610fd0826112da565b61100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690612e67565b60405180910390fd5b6000611019611881565b905060008151116110395760405180602001604052806000815250611064565b8061104384611913565b604051602001611054929190612bbd565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611108611346565b73ffffffffffffffffffffffffffffffffffffffff16611126610d26565b73ffffffffffffffffffffffffffffffffffffffff161461117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390612e27565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390612ce7565b60405180910390fd5b6111f581611741565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112c357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806112d357506112d282611a74565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113c18361093b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611412826112da565b611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890612d67565b60405180910390fd5b600061145c8361093b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114cb57508373ffffffffffffffffffffffffffffffffffffffff166114b384610565565b73ffffffffffffffffffffffffffffffffffffffff16145b806114dc57506114db818561106c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115058261093b565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290612e47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c290612d27565b60405180910390fd5b6115d6838383611ade565b6115e160008261134e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611631919061308c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116889190613005565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611821828260405180602001604052806000815250611bf2565b5050565b6118308484846114e5565b61183c84848484611c4d565b61187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290612cc7565b60405180910390fd5b50505050565b6060600b805461189090613176565b80601f01602080910402602001604051908101604052809291908181526020018280546118bc90613176565b80156119095780601f106118de57610100808354040283529160200191611909565b820191906000526020600020905b8154815290600101906020018083116118ec57829003601f168201915b5050505050905090565b6060600082141561195b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a6f565b600082905060005b6000821461198d578080611976906131d9565b915050600a82611986919061305b565b9150611963565b60008167ffffffffffffffff8111156119a9576119a861333e565b5b6040519080825280601f01601f1916602001820160405280156119db5781602001600182028036833780820191505090505b5090505b60008514611a68576001826119f4919061308c565b9150600a85611a039190613222565b6030611a0f9190613005565b60f81b818381518110611a2557611a2461330f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611a61919061305b565b94506119df565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ae9838383611de4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b2c57611b2781611de9565b611b6b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b6a57611b698382611e32565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bae57611ba981611f9f565b611bed565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611bec57611beb8282612070565b5b5b505050565b611bfc83836120ef565b611c096000848484611c4d565b611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90612cc7565b60405180910390fd5b505050565b6000611c6e8473ffffffffffffffffffffffffffffffffffffffff166122bd565b15611dd7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c97611346565b8786866040518563ffffffff1660e01b8152600401611cb99493929190612bfc565b602060405180830381600087803b158015611cd357600080fd5b505af1925050508015611d0457506040513d601f19601f82011682018060405250810190611d01919061274f565b60015b611d87573d8060008114611d34576040519150601f19603f3d011682016040523d82523d6000602084013e611d39565b606091505b50600081511415611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7690612cc7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ddc565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611e3f846109ed565b611e49919061308c565b9050600060076000848152602001908152602001600020549050818114611f2e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611fb3919061308c565b9050600060096000848152602001908152602001600020549050600060088381548110611fe357611fe261330f565b5b9060005260206000200154905080600883815481106120055761200461330f565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612054576120536132e0565b5b6001900381819060005260206000200160009055905550505050565b600061207b836109ed565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215690612de7565b60405180910390fd5b612168816112da565b156121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90612d07565b60405180910390fd5b6121b460008383611ade565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122049190613005565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546122dc90613176565b90600052602060002090601f0160209004810192826122fe5760008555612345565b82601f1061231757805160ff1916838001178555612345565b82800160010185558215612345579182015b82811115612344578251825591602001919060010190612329565b5b5090506123529190612356565b5090565b5b8082111561236f576000816000905550600101612357565b5090565b600061238661238184612f27565b612f02565b9050828152602081018484840111156123a2576123a161337c565b5b6123ad848285613134565b509392505050565b60006123c86123c384612f58565b612f02565b9050828152602081018484840111156123e4576123e361337c565b5b6123ef848285613134565b509392505050565b60008135905061240681613892565b92915050565b60008083601f84011261242257612421613372565b5b8235905067ffffffffffffffff81111561243f5761243e61336d565b5b60208301915083602082028301111561245b5761245a613377565b5b9250929050565b600081359050612471816138a9565b92915050565b600081359050612486816138c0565b92915050565b60008151905061249b816138c0565b92915050565b600082601f8301126124b6576124b5613372565b5b81356124c6848260208601612373565b91505092915050565b600082601f8301126124e4576124e3613372565b5b81356124f48482602086016123b5565b91505092915050565b60008135905061250c816138d7565b92915050565b60006020828403121561252857612527613386565b5b6000612536848285016123f7565b91505092915050565b6000806040838503121561255657612555613386565b5b6000612564858286016123f7565b9250506020612575858286016123f7565b9150509250929050565b60008060006060848603121561259857612597613386565b5b60006125a6868287016123f7565b93505060206125b7868287016123f7565b92505060406125c8868287016124fd565b9150509250925092565b600080600080608085870312156125ec576125eb613386565b5b60006125fa878288016123f7565b945050602061260b878288016123f7565b935050604061261c878288016124fd565b925050606085013567ffffffffffffffff81111561263d5761263c613381565b5b612649878288016124a1565b91505092959194509250565b6000806040838503121561266c5761266b613386565b5b600061267a858286016123f7565b925050602061268b85828601612462565b9150509250929050565b600080604083850312156126ac576126ab613386565b5b60006126ba858286016123f7565b92505060206126cb858286016124fd565b9150509250929050565b600080602083850312156126ec576126eb613386565b5b600083013567ffffffffffffffff81111561270a57612709613381565b5b6127168582860161240c565b92509250509250929050565b60006020828403121561273857612737613386565b5b600061274684828501612477565b91505092915050565b60006020828403121561276557612764613386565b5b60006127738482850161248c565b91505092915050565b60006020828403121561279257612791613386565b5b600082013567ffffffffffffffff8111156127b0576127af613381565b5b6127bc848285016124cf565b91505092915050565b6000602082840312156127db576127da613386565b5b60006127e9848285016124fd565b91505092915050565b60006127fe8383612b9f565b60208301905092915050565b612813816130c0565b82525050565b600061282482612f99565b61282e8185612fc7565b935061283983612f89565b8060005b8381101561286a57815161285188826127f2565b975061285c83612fba565b92505060018101905061283d565b5085935050505092915050565b612880816130d2565b82525050565b600061289182612fa4565b61289b8185612fd8565b93506128ab818560208601613143565b6128b48161338b565b840191505092915050565b60006128ca82612faf565b6128d48185612fe9565b93506128e4818560208601613143565b6128ed8161338b565b840191505092915050565b600061290382612faf565b61290d8185612ffa565b935061291d818560208601613143565b80840191505092915050565b6000612936602b83612fe9565b91506129418261339c565b604082019050919050565b6000612959603283612fe9565b9150612964826133eb565b604082019050919050565b600061297c602683612fe9565b91506129878261343a565b604082019050919050565b600061299f601c83612fe9565b91506129aa82613489565b602082019050919050565b60006129c2602483612fe9565b91506129cd826134b2565b604082019050919050565b60006129e5601983612fe9565b91506129f082613501565b602082019050919050565b6000612a08602c83612fe9565b9150612a138261352a565b604082019050919050565b6000612a2b603883612fe9565b9150612a3682613579565b604082019050919050565b6000612a4e602a83612fe9565b9150612a59826135c8565b604082019050919050565b6000612a71602983612fe9565b9150612a7c82613617565b604082019050919050565b6000612a94602083612fe9565b9150612a9f82613666565b602082019050919050565b6000612ab7602c83612fe9565b9150612ac28261368f565b604082019050919050565b6000612ada602083612fe9565b9150612ae5826136de565b602082019050919050565b6000612afd602983612fe9565b9150612b0882613707565b604082019050919050565b6000612b20602f83612fe9565b9150612b2b82613756565b604082019050919050565b6000612b43602183612fe9565b9150612b4e826137a5565b604082019050919050565b6000612b66603183612fe9565b9150612b71826137f4565b604082019050919050565b6000612b89602c83612fe9565b9150612b9482613843565b604082019050919050565b612ba88161312a565b82525050565b612bb78161312a565b82525050565b6000612bc982856128f8565b9150612bd582846128f8565b91508190509392505050565b6000602082019050612bf6600083018461280a565b92915050565b6000608082019050612c11600083018761280a565b612c1e602083018661280a565b612c2b6040830185612bae565b8181036060830152612c3d8184612886565b905095945050505050565b60006020820190508181036000830152612c628184612819565b905092915050565b6000602082019050612c7f6000830184612877565b92915050565b60006020820190508181036000830152612c9f81846128bf565b905092915050565b60006020820190508181036000830152612cc081612929565b9050919050565b60006020820190508181036000830152612ce08161294c565b9050919050565b60006020820190508181036000830152612d008161296f565b9050919050565b60006020820190508181036000830152612d2081612992565b9050919050565b60006020820190508181036000830152612d40816129b5565b9050919050565b60006020820190508181036000830152612d60816129d8565b9050919050565b60006020820190508181036000830152612d80816129fb565b9050919050565b60006020820190508181036000830152612da081612a1e565b9050919050565b60006020820190508181036000830152612dc081612a41565b9050919050565b60006020820190508181036000830152612de081612a64565b9050919050565b60006020820190508181036000830152612e0081612a87565b9050919050565b60006020820190508181036000830152612e2081612aaa565b9050919050565b60006020820190508181036000830152612e4081612acd565b9050919050565b60006020820190508181036000830152612e6081612af0565b9050919050565b60006020820190508181036000830152612e8081612b13565b9050919050565b60006020820190508181036000830152612ea081612b36565b9050919050565b60006020820190508181036000830152612ec081612b59565b9050919050565b60006020820190508181036000830152612ee081612b7c565b9050919050565b6000602082019050612efc6000830184612bae565b92915050565b6000612f0c612f1d565b9050612f1882826131a8565b919050565b6000604051905090565b600067ffffffffffffffff821115612f4257612f4161333e565b5b612f4b8261338b565b9050602081019050919050565b600067ffffffffffffffff821115612f7357612f7261333e565b5b612f7c8261338b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006130108261312a565b915061301b8361312a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130505761304f613253565b5b828201905092915050565b60006130668261312a565b91506130718361312a565b92508261308157613080613282565b5b828204905092915050565b60006130978261312a565b91506130a28361312a565b9250828210156130b5576130b4613253565b5b828203905092915050565b60006130cb8261310a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613161578082015181840152602081019050613146565b83811115613170576000848401525b50505050565b6000600282049050600182168061318e57607f821691505b602082108114156131a2576131a16132b1565b5b50919050565b6131b18261338b565b810181811067ffffffffffffffff821117156131d0576131cf61333e565b5b80604052505050565b60006131e48261312a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561321757613216613253565b5b600182019050919050565b600061322d8261312a565b91506132388361312a565b92508261324857613247613282565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61389b816130c0565b81146138a657600080fd5b50565b6138b2816130d2565b81146138bd57600080fd5b50565b6138c9816130de565b81146138d457600080fd5b50565b6138e08161312a565b81146138eb57600080fd5b5056fea264697066735822122087aa86a198d6181cd478b2737fd0dd98ac3b7f1386e0f2b53ca922ff5e711eeb64736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d47464320436f6d70616e696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044746434300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): GFC Companion
Arg [1] : symbol (string): GFCC

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 47464320436f6d70616e696f6e00000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4746434300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

116:1253:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:98:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3860:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1534:111:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:330:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1210:253:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5120:179:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1717:230:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;984:108:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2052:235:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1790:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:12;;;:::i;:::-;;1098:269:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;324:487;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;966:85:12;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2511:102:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4144:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5365:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2679:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4500:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1839:189:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;909:222:4;1011:4;1049:35;1034:50;;;:11;:50;;;;:90;;;;1088:36;1112:11;1088:23;:36::i;:::-;1034:90;1027:97;;909:222;;;:::o;2349:98:3:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4046:15;:24;4062:7;4046:24;;;;;;;;;;;;;;;;;;;;;4039:31;;3860:217;;;:::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;3535:11;;:2;:11;;;;3527:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3632:5;3616:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;:::-;3641:16;:37::i;:::-;3616:62;3595:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;1534:111:4:-;1595:7;1621:10;:17;;;;1614:24;;1534:111;:::o;4724:330:3:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;:::-;4724:330;;;:::o;1210:253:4:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1430:12;:19;1443:5;1430:19;;;;;;;;;;;;;;;:26;1450:5;1430:26;;;;;;;;;;;;1423:33;;1210:253;;;;:::o;5120:179:3:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;:::-;5120:179;;;:::o;1717:230:4:-;1792:7;1827:30;:28;:30::i;:::-;1819:5;:38;1811:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;;1916:24;;1717:230;;;:::o;984:108:6:-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1074:11:6::1;1058:13;:27;;;;;;;;;;;;:::i;:::-;;984:108:::0;:::o;2052:235:3:-;2124:7;2143:13;2159:7;:16;2167:7;2159:16;;;;;;;;;;;;;;;;;;;;;2143:32;;2210:1;2193:19;;:5;:19;;;;2185:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2275:5;2268:12;;;2052:235;;;:::o;1790:205::-;1862:7;1906:1;1889:19;;:5;:19;;;;1881:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1972:9;:16;1982:5;1972:16;;;;;;;;;;;;;;;;1965:23;;1790:205;;;:::o;1598:92:12:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;1098:269:6:-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1165:14:6::1;1182:13;:11;:13::i;:::-;1165:30;;1209:9;1205:156;1228:2;;:9;;1224:1;:13;1205:156;;;1311:1;1301:11;;;;;:::i;:::-;;;1326:24;1336:2;;1339:1;1336:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;1343:6;1326:9;:24::i;:::-;1239:3;;;;;:::i;:::-;;;;1205:156;;;;1155:212;1098:269:::0;;:::o;324:487::-;385:16;417:18;438:17;448:6;438:9;:17::i;:::-;417:38;;483:1;469:10;:15;465:340;;;558:1;544:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537:23;;;;;465:340;591:23;631:10;617:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;591:51;;661:9;656:112;676:10;672:1;:14;656:112;;;723:30;743:6;751:1;723:19;:30::i;:::-;711:6;718:1;711:9;;;;;;;;:::i;:::-;;;;;;;:42;;;;;688:3;;;;;:::i;:::-;;;;656:112;;;;788:6;781:13;;;;324:487;;;;:::o;966:85:12:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;2511:102:3:-;2567:13;2599:7;2592:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:102;:::o;4144:290::-;4258:12;:10;:12::i;:::-;4246:24;;:8;:24;;;;4238:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;4311:32;;;;;;;;;;;;;;;:42;4344:8;4311:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4408:8;4379:48;;4394:12;:10;:12::i;:::-;4379:48;;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;5365:320::-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;2679:329::-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;;;2679:329;;;:::o;4500:162::-;4597:4;4620:18;:25;4639:5;4620:25;;;;;;;;;;;;;;;:35;4646:8;4620:35;;;;;;;;;;;;;;;;;;;;;;;;;4613:42;;4500:162;;;;:::o;1839:189:12:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1947:1:::1;1927:22;;:8;:22;;;;1919:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;1431:300:3:-;1533:4;1583:25;1568:40;;;:11;:40;;;;:104;;;;1639:33;1624:48;;;:11;:48;;;;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;:::-;1568:156;1549:175;;1431:300;;;:::o;7157:125::-;7222:4;7273:1;7245:30;;:7;:16;7253:7;7245:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7238:37;;7157:125;;;:::o;587:96:1:-;640:7;666:10;659:17;;587:96;:::o;11008:171:3:-;11109:2;11082:15;:24;11098:7;11082:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11164:7;11160:2;11126:46;;11135:23;11150:7;11135:14;:23::i;:::-;11126:46;;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;7689:16;;:7;:16;;;:51;;;;7733:7;7709:31;;:20;7721:7;7709:11;:20::i;:::-;:31;;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7689:87;7681:96;;;7440:344;;;;:::o;10337:560::-;10491:4;10464:31;;:23;10479:7;10464:14;:23::i;:::-;:31;;;10456:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10573:1;10559:16;;:2;:16;;;;10551:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;10787:1;10768:9;:15;10778:4;10768:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10815:1;10798:9;:13;10808:2;10798:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10845:2;10826:7;:16;10834:7;10826:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10882:7;10878:2;10863:27;;10872:4;10863:27;;;;;;;;;;;;10337:560;;;:::o;2034:169:12:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2079:124;2034:169;:::o;8114:108:3:-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;:::-;8114:108;;:::o;6547:307::-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6547:307;;;;:::o;817:104:6:-;869:13;901;894:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;817:104;:::o;275:703:13:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;763:155:2:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;2543:572:4:-;2682:45;2709:4;2715:2;2719:7;2682:26;:45::i;:::-;2758:1;2742:18;;:4;:18;;;2738:183;;;2776:40;2808:7;2776:31;:40::i;:::-;2738:183;;;2845:2;2837:10;;:4;:10;;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;2833:88;2738:183;2948:1;2934:16;;:2;:16;;;2930:179;;;2966:45;3003:7;2966:36;:45::i;:::-;2930:179;;;3038:4;3032:10;;:2;:10;;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;:::-;3028:81;2930:179;2543:572;;;:::o;8443:311:3:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8443:311;;;:::o;11732:778::-;11882:4;11902:15;:2;:13;;;:15::i;:::-;11898:606;;;11953:2;11937:36;;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12193:1;12176:6;:13;:18;12172:266;;;12218:60;;;;;;;;;;:::i;:::-;;;;;;;;12172:266;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;12069:41;;;12059:51;;;:6;:51;;;;12052:58;;;;;11898:606;12489:4;12482:11;;11732:778;;;;;;;:::o;13066:122::-;;;;:::o;3821:161:4:-;3924:10;:17;;;;3897:15;:24;3913:7;3897:24;;;;;;;;;;;:44;;;;3951:10;3967:7;3951:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3821:161;:::o;4599:970::-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4861:51;;4922:18;4943:17;:26;4961:7;4943:26;;;;;;;;;;;;4922:47;;5087:14;5073:10;:28;5069:323;;5117:19;5139:12;:18;5152:4;5139:18;;;;;;;;;;;;;;;:34;5158:14;5139:34;;;;;;;;;;;;5117:56;;5221:11;5188:12;:18;5201:4;5188:18;;;;;;;;;;;;;;;:30;5207:10;5188:30;;;;;;;;;;;:44;;;;5337:10;5304:17;:30;5322:11;5304:30;;;;;;;;;;;:43;;;;5103:289;5069:323;5485:17;:26;5503:7;5485:26;;;;;;;;;;;5478:33;;;5528:12;:18;5541:4;5528:18;;;;;;;;;;;;;;;:34;5547:14;5528:34;;;;;;;;;;;5521:41;;;4680:889;;4599:970;;:::o;5857:1061::-;6106:22;6151:1;6131:10;:17;;;;:21;;;;:::i;:::-;6106:46;;6162:18;6183:15;:24;6199:7;6183:24;;;;;;;;;;;;6162:45;;6529:19;6551:10;6562:14;6551:26;;;;;;;;:::i;:::-;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6723:10;6692:15;:28;6708:11;6692:28;;;;;;;;;;;:41;;;;6861:15;:24;6877:7;6861:24;;;;;;;;;;;6854:31;;;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;3493:37;;3567:7;3540:12;:16;3553:2;3540:16;;;;;;;;;;;;;;;:24;3557:6;3540:24;;;;;;;;;;;:34;;;;3613:6;3584:17;:26;3602:7;3584:26;;;;;;;;;;;:35;;;;3483:143;3409:217;;:::o;9076:372:3:-;9169:1;9155:16;;:2;:16;;;;9147:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;9360:1;9343:9;:13;9353:2;9343:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9390:2;9371:7;:16;9379:7;9371:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9433:7;9429:2;9408:33;;9425:1;9408:33;;;;;;;;;;;;9076:372;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:14:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:2;;;698:79;;:::i;:::-;667:2;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;893:87;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:2;;1144:79;;:::i;:::-;1103:2;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:2;;;1309:79;;:::i;:::-;1273:2;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:2;;;1484:79;;:::i;:::-;1437:2;1093:478;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1626:84;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1767:86;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1921:79;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:2;;2131:79;;:::i;:::-;2090:2;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:2;;2490:79;;:::i;:::-;2449:2;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2775:87;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:2;;;2982:79;;:::i;:::-;2944:2;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2934:263;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:2;;;3334:79;;:::i;:::-;3296:2;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3286:391;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:2;;;3831:79;;:::i;:::-;3793:2;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3783:519;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:2;;;4483:79;;:::i;:::-;4444:2;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:2;;;5067:79;;:::i;:::-;5031:2;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4434:817;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:2;;;5385:79;;:::i;:::-;5347:2;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5337:388;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:2;;;5862:79;;:::i;:::-;5824:2;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5814:391;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:2;;;6360:79;;:::i;:::-;6322:2;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:2;;;6560:79;;:::i;:::-;6524:2;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6312:458;;;;;:::o;6776:327::-;6834:6;6883:2;6871:9;6862:7;6858:23;6854:32;6851:2;;;6889:79;;:::i;:::-;6851:2;7009:1;7034:52;7078:7;7069:6;7058:9;7054:22;7034:52;:::i;:::-;7024:62;;6980:116;6841:262;;;;:::o;7109:349::-;7178:6;7227:2;7215:9;7206:7;7202:23;7198:32;7195:2;;;7233:79;;:::i;:::-;7195:2;7353:1;7378:63;7433:7;7424:6;7413:9;7409:22;7378:63;:::i;:::-;7368:73;;7324:127;7185:273;;;;:::o;7464:509::-;7533:6;7582:2;7570:9;7561:7;7557:23;7553:32;7550:2;;;7588:79;;:::i;:::-;7550:2;7736:1;7725:9;7721:17;7708:31;7766:18;7758:6;7755:30;7752:2;;;7788:79;;:::i;:::-;7752:2;7893:63;7948:7;7939:6;7928:9;7924:22;7893:63;:::i;:::-;7883:73;;7679:287;7540:433;;;;:::o;7979:329::-;8038:6;8087:2;8075:9;8066:7;8062:23;8058:32;8055:2;;;8093:79;;:::i;:::-;8055:2;8213:1;8238:53;8283:7;8274:6;8263:9;8259:22;8238:53;:::i;:::-;8228:63;;8184:117;8045:263;;;;:::o;8314:179::-;8383:10;8404:46;8446:3;8438:6;8404:46;:::i;:::-;8482:4;8477:3;8473:14;8459:28;;8394:99;;;;:::o;8499:118::-;8586:24;8604:5;8586:24;:::i;:::-;8581:3;8574:37;8564:53;;:::o;8653:732::-;8772:3;8801:54;8849:5;8801:54;:::i;:::-;8871:86;8950:6;8945:3;8871:86;:::i;:::-;8864:93;;8981:56;9031:5;8981:56;:::i;:::-;9060:7;9091:1;9076:284;9101:6;9098:1;9095:13;9076:284;;;9177:6;9171:13;9204:63;9263:3;9248:13;9204:63;:::i;:::-;9197:70;;9290:60;9343:6;9290:60;:::i;:::-;9280:70;;9136:224;9123:1;9120;9116:9;9111:14;;9076:284;;;9080:14;9376:3;9369:10;;8777:608;;;;;;;:::o;9391:109::-;9472:21;9487:5;9472:21;:::i;:::-;9467:3;9460:34;9450:50;;:::o;9506:360::-;9592:3;9620:38;9652:5;9620:38;:::i;:::-;9674:70;9737:6;9732:3;9674:70;:::i;:::-;9667:77;;9753:52;9798:6;9793:3;9786:4;9779:5;9775:16;9753:52;:::i;:::-;9830:29;9852:6;9830:29;:::i;:::-;9825:3;9821:39;9814:46;;9596:270;;;;;:::o;9872:364::-;9960:3;9988:39;10021:5;9988:39;:::i;:::-;10043:71;10107:6;10102:3;10043:71;:::i;:::-;10036:78;;10123:52;10168:6;10163:3;10156:4;10149:5;10145:16;10123:52;:::i;:::-;10200:29;10222:6;10200:29;:::i;:::-;10195:3;10191:39;10184:46;;9964:272;;;;;:::o;10242:377::-;10348:3;10376:39;10409:5;10376:39;:::i;:::-;10431:89;10513:6;10508:3;10431:89;:::i;:::-;10424:96;;10529:52;10574:6;10569:3;10562:4;10555:5;10551:16;10529:52;:::i;:::-;10606:6;10601:3;10597:16;10590:23;;10352:267;;;;;:::o;10625:366::-;10767:3;10788:67;10852:2;10847:3;10788:67;:::i;:::-;10781:74;;10864:93;10953:3;10864:93;:::i;:::-;10982:2;10977:3;10973:12;10966:19;;10771:220;;;:::o;10997:366::-;11139:3;11160:67;11224:2;11219:3;11160:67;:::i;:::-;11153:74;;11236:93;11325:3;11236:93;:::i;:::-;11354:2;11349:3;11345:12;11338:19;;11143:220;;;:::o;11369:366::-;11511:3;11532:67;11596:2;11591:3;11532:67;:::i;:::-;11525:74;;11608:93;11697:3;11608:93;:::i;:::-;11726:2;11721:3;11717:12;11710:19;;11515:220;;;:::o;11741:366::-;11883:3;11904:67;11968:2;11963:3;11904:67;:::i;:::-;11897:74;;11980:93;12069:3;11980:93;:::i;:::-;12098:2;12093:3;12089:12;12082:19;;11887:220;;;:::o;12113:366::-;12255:3;12276:67;12340:2;12335:3;12276:67;:::i;:::-;12269:74;;12352:93;12441:3;12352:93;:::i;:::-;12470:2;12465:3;12461:12;12454:19;;12259:220;;;:::o;12485:366::-;12627:3;12648:67;12712:2;12707:3;12648:67;:::i;:::-;12641:74;;12724:93;12813:3;12724:93;:::i;:::-;12842:2;12837:3;12833:12;12826:19;;12631:220;;;:::o;12857:366::-;12999:3;13020:67;13084:2;13079:3;13020:67;:::i;:::-;13013:74;;13096:93;13185:3;13096:93;:::i;:::-;13214:2;13209:3;13205:12;13198:19;;13003:220;;;:::o;13229:366::-;13371:3;13392:67;13456:2;13451:3;13392:67;:::i;:::-;13385:74;;13468:93;13557:3;13468:93;:::i;:::-;13586:2;13581:3;13577:12;13570:19;;13375:220;;;:::o;13601:366::-;13743:3;13764:67;13828:2;13823:3;13764:67;:::i;:::-;13757:74;;13840:93;13929:3;13840:93;:::i;:::-;13958:2;13953:3;13949:12;13942:19;;13747:220;;;:::o;13973:366::-;14115:3;14136:67;14200:2;14195:3;14136:67;:::i;:::-;14129:74;;14212:93;14301:3;14212:93;:::i;:::-;14330:2;14325:3;14321:12;14314:19;;14119:220;;;:::o;14345:366::-;14487:3;14508:67;14572:2;14567:3;14508:67;:::i;:::-;14501:74;;14584:93;14673:3;14584:93;:::i;:::-;14702:2;14697:3;14693:12;14686:19;;14491:220;;;:::o;14717:366::-;14859:3;14880:67;14944:2;14939:3;14880:67;:::i;:::-;14873:74;;14956:93;15045:3;14956:93;:::i;:::-;15074:2;15069:3;15065:12;15058:19;;14863:220;;;:::o;15089:366::-;15231:3;15252:67;15316:2;15311:3;15252:67;:::i;:::-;15245:74;;15328:93;15417:3;15328:93;:::i;:::-;15446:2;15441:3;15437:12;15430:19;;15235:220;;;:::o;15461:366::-;15603:3;15624:67;15688:2;15683:3;15624:67;:::i;:::-;15617:74;;15700:93;15789:3;15700:93;:::i;:::-;15818:2;15813:3;15809:12;15802:19;;15607:220;;;:::o;15833:366::-;15975:3;15996:67;16060:2;16055:3;15996:67;:::i;:::-;15989:74;;16072:93;16161:3;16072:93;:::i;:::-;16190:2;16185:3;16181:12;16174:19;;15979:220;;;:::o;16205:366::-;16347:3;16368:67;16432:2;16427:3;16368:67;:::i;:::-;16361:74;;16444:93;16533:3;16444:93;:::i;:::-;16562:2;16557:3;16553:12;16546:19;;16351:220;;;:::o;16577:366::-;16719:3;16740:67;16804:2;16799:3;16740:67;:::i;:::-;16733:74;;16816:93;16905:3;16816:93;:::i;:::-;16934:2;16929:3;16925:12;16918:19;;16723:220;;;:::o;16949:366::-;17091:3;17112:67;17176:2;17171:3;17112:67;:::i;:::-;17105:74;;17188:93;17277:3;17188:93;:::i;:::-;17306:2;17301:3;17297:12;17290:19;;17095:220;;;:::o;17321:108::-;17398:24;17416:5;17398:24;:::i;:::-;17393:3;17386:37;17376:53;;:::o;17435:118::-;17522:24;17540:5;17522:24;:::i;:::-;17517:3;17510:37;17500:53;;:::o;17559:435::-;17739:3;17761:95;17852:3;17843:6;17761:95;:::i;:::-;17754:102;;17873:95;17964:3;17955:6;17873:95;:::i;:::-;17866:102;;17985:3;17978:10;;17743:251;;;;;:::o;18000:222::-;18093:4;18131:2;18120:9;18116:18;18108:26;;18144:71;18212:1;18201:9;18197:17;18188:6;18144:71;:::i;:::-;18098:124;;;;:::o;18228:640::-;18423:4;18461:3;18450:9;18446:19;18438:27;;18475:71;18543:1;18532:9;18528:17;18519:6;18475:71;:::i;:::-;18556:72;18624:2;18613:9;18609:18;18600:6;18556:72;:::i;:::-;18638;18706:2;18695:9;18691:18;18682:6;18638:72;:::i;:::-;18757:9;18751:4;18747:20;18742:2;18731:9;18727:18;18720:48;18785:76;18856:4;18847:6;18785:76;:::i;:::-;18777:84;;18428:440;;;;;;;:::o;18874:373::-;19017:4;19055:2;19044:9;19040:18;19032:26;;19104:9;19098:4;19094:20;19090:1;19079:9;19075:17;19068:47;19132:108;19235:4;19226:6;19132:108;:::i;:::-;19124:116;;19022:225;;;;:::o;19253:210::-;19340:4;19378:2;19367:9;19363:18;19355:26;;19391:65;19453:1;19442:9;19438:17;19429:6;19391:65;:::i;:::-;19345:118;;;;:::o;19469:313::-;19582:4;19620:2;19609:9;19605:18;19597:26;;19669:9;19663:4;19659:20;19655:1;19644:9;19640:17;19633:47;19697:78;19770:4;19761:6;19697:78;:::i;:::-;19689:86;;19587:195;;;;:::o;19788:419::-;19954:4;19992:2;19981:9;19977:18;19969:26;;20041:9;20035:4;20031:20;20027:1;20016:9;20012:17;20005:47;20069:131;20195:4;20069:131;:::i;:::-;20061:139;;19959:248;;;:::o;20213:419::-;20379:4;20417:2;20406:9;20402:18;20394:26;;20466:9;20460:4;20456:20;20452:1;20441:9;20437:17;20430:47;20494:131;20620:4;20494:131;:::i;:::-;20486:139;;20384:248;;;:::o;20638:419::-;20804:4;20842:2;20831:9;20827:18;20819:26;;20891:9;20885:4;20881:20;20877:1;20866:9;20862:17;20855:47;20919:131;21045:4;20919:131;:::i;:::-;20911:139;;20809:248;;;:::o;21063:419::-;21229:4;21267:2;21256:9;21252:18;21244:26;;21316:9;21310:4;21306:20;21302:1;21291:9;21287:17;21280:47;21344:131;21470:4;21344:131;:::i;:::-;21336:139;;21234:248;;;:::o;21488:419::-;21654:4;21692:2;21681:9;21677:18;21669:26;;21741:9;21735:4;21731:20;21727:1;21716:9;21712:17;21705:47;21769:131;21895:4;21769:131;:::i;:::-;21761:139;;21659:248;;;:::o;21913:419::-;22079:4;22117:2;22106:9;22102:18;22094:26;;22166:9;22160:4;22156:20;22152:1;22141:9;22137:17;22130:47;22194:131;22320:4;22194:131;:::i;:::-;22186:139;;22084:248;;;:::o;22338:419::-;22504:4;22542:2;22531:9;22527:18;22519:26;;22591:9;22585:4;22581:20;22577:1;22566:9;22562:17;22555:47;22619:131;22745:4;22619:131;:::i;:::-;22611:139;;22509:248;;;:::o;22763:419::-;22929:4;22967:2;22956:9;22952:18;22944:26;;23016:9;23010:4;23006:20;23002:1;22991:9;22987:17;22980:47;23044:131;23170:4;23044:131;:::i;:::-;23036:139;;22934:248;;;:::o;23188:419::-;23354:4;23392:2;23381:9;23377:18;23369:26;;23441:9;23435:4;23431:20;23427:1;23416:9;23412:17;23405:47;23469:131;23595:4;23469:131;:::i;:::-;23461:139;;23359:248;;;:::o;23613:419::-;23779:4;23817:2;23806:9;23802:18;23794:26;;23866:9;23860:4;23856:20;23852:1;23841:9;23837:17;23830:47;23894:131;24020:4;23894:131;:::i;:::-;23886:139;;23784:248;;;:::o;24038:419::-;24204:4;24242:2;24231:9;24227:18;24219:26;;24291:9;24285:4;24281:20;24277:1;24266:9;24262:17;24255:47;24319:131;24445:4;24319:131;:::i;:::-;24311:139;;24209:248;;;:::o;24463:419::-;24629:4;24667:2;24656:9;24652:18;24644:26;;24716:9;24710:4;24706:20;24702:1;24691:9;24687:17;24680:47;24744:131;24870:4;24744:131;:::i;:::-;24736:139;;24634:248;;;:::o;24888:419::-;25054:4;25092:2;25081:9;25077:18;25069:26;;25141:9;25135:4;25131:20;25127:1;25116:9;25112:17;25105:47;25169:131;25295:4;25169:131;:::i;:::-;25161:139;;25059:248;;;:::o;25313:419::-;25479:4;25517:2;25506:9;25502:18;25494:26;;25566:9;25560:4;25556:20;25552:1;25541:9;25537:17;25530:47;25594:131;25720:4;25594:131;:::i;:::-;25586:139;;25484:248;;;:::o;25738:419::-;25904:4;25942:2;25931:9;25927:18;25919:26;;25991:9;25985:4;25981:20;25977:1;25966:9;25962:17;25955:47;26019:131;26145:4;26019:131;:::i;:::-;26011:139;;25909:248;;;:::o;26163:419::-;26329:4;26367:2;26356:9;26352:18;26344:26;;26416:9;26410:4;26406:20;26402:1;26391:9;26387:17;26380:47;26444:131;26570:4;26444:131;:::i;:::-;26436:139;;26334:248;;;:::o;26588:419::-;26754:4;26792:2;26781:9;26777:18;26769:26;;26841:9;26835:4;26831:20;26827:1;26816:9;26812:17;26805:47;26869:131;26995:4;26869:131;:::i;:::-;26861:139;;26759:248;;;:::o;27013:419::-;27179:4;27217:2;27206:9;27202:18;27194:26;;27266:9;27260:4;27256:20;27252:1;27241:9;27237:17;27230:47;27294:131;27420:4;27294:131;:::i;:::-;27286:139;;27184:248;;;:::o;27438:222::-;27531:4;27569:2;27558:9;27554:18;27546:26;;27582:71;27650:1;27639:9;27635:17;27626:6;27582:71;:::i;:::-;27536:124;;;;:::o;27666:129::-;27700:6;27727:20;;:::i;:::-;27717:30;;27756:33;27784:4;27776:6;27756:33;:::i;:::-;27707:88;;;:::o;27801:75::-;27834:6;27867:2;27861:9;27851:19;;27841:35;:::o;27882:307::-;27943:4;28033:18;28025:6;28022:30;28019:2;;;28055:18;;:::i;:::-;28019:2;28093:29;28115:6;28093:29;:::i;:::-;28085:37;;28177:4;28171;28167:15;28159:23;;27948:241;;;:::o;28195:308::-;28257:4;28347:18;28339:6;28336:30;28333:2;;;28369:18;;:::i;:::-;28333:2;28407:29;28429:6;28407:29;:::i;:::-;28399:37;;28491:4;28485;28481:15;28473:23;;28262:241;;;:::o;28509:132::-;28576:4;28599:3;28591:11;;28629:4;28624:3;28620:14;28612:22;;28581:60;;;:::o;28647:114::-;28714:6;28748:5;28742:12;28732:22;;28721:40;;;:::o;28767:98::-;28818:6;28852:5;28846:12;28836:22;;28825:40;;;:::o;28871:99::-;28923:6;28957:5;28951:12;28941:22;;28930:40;;;:::o;28976:113::-;29046:4;29078;29073:3;29069:14;29061:22;;29051:38;;;:::o;29095:184::-;29194:11;29228:6;29223:3;29216:19;29268:4;29263:3;29259:14;29244:29;;29206:73;;;;:::o;29285:168::-;29368:11;29402:6;29397:3;29390:19;29442:4;29437:3;29433:14;29418:29;;29380:73;;;;:::o;29459:169::-;29543:11;29577:6;29572:3;29565:19;29617:4;29612:3;29608:14;29593:29;;29555:73;;;;:::o;29634:148::-;29736:11;29773:3;29758:18;;29748:34;;;;:::o;29788:305::-;29828:3;29847:20;29865:1;29847:20;:::i;:::-;29842:25;;29881:20;29899:1;29881:20;:::i;:::-;29876:25;;30035:1;29967:66;29963:74;29960:1;29957:81;29954:2;;;30041:18;;:::i;:::-;29954:2;30085:1;30082;30078:9;30071:16;;29832:261;;;;:::o;30099:185::-;30139:1;30156:20;30174:1;30156:20;:::i;:::-;30151:25;;30190:20;30208:1;30190:20;:::i;:::-;30185:25;;30229:1;30219:2;;30234:18;;:::i;:::-;30219:2;30276:1;30273;30269:9;30264:14;;30141:143;;;;:::o;30290:191::-;30330:4;30350:20;30368:1;30350:20;:::i;:::-;30345:25;;30384:20;30402:1;30384:20;:::i;:::-;30379:25;;30423:1;30420;30417:8;30414:2;;;30428:18;;:::i;:::-;30414:2;30473:1;30470;30466:9;30458:17;;30335:146;;;;:::o;30487:96::-;30524:7;30553:24;30571:5;30553:24;:::i;:::-;30542:35;;30532:51;;;:::o;30589:90::-;30623:7;30666:5;30659:13;30652:21;30641:32;;30631:48;;;:::o;30685:149::-;30721:7;30761:66;30754:5;30750:78;30739:89;;30729:105;;;:::o;30840:126::-;30877:7;30917:42;30910:5;30906:54;30895:65;;30885:81;;;:::o;30972:77::-;31009:7;31038:5;31027:16;;31017:32;;;:::o;31055:154::-;31139:6;31134:3;31129;31116:30;31201:1;31192:6;31187:3;31183:16;31176:27;31106:103;;;:::o;31215:307::-;31283:1;31293:113;31307:6;31304:1;31301:13;31293:113;;;31392:1;31387:3;31383:11;31377:18;31373:1;31368:3;31364:11;31357:39;31329:2;31326:1;31322:10;31317:15;;31293:113;;;31424:6;31421:1;31418:13;31415:2;;;31504:1;31495:6;31490:3;31486:16;31479:27;31415:2;31264:258;;;;:::o;31528:320::-;31572:6;31609:1;31603:4;31599:12;31589:22;;31656:1;31650:4;31646:12;31677:18;31667:2;;31733:4;31725:6;31721:17;31711:27;;31667:2;31795;31787:6;31784:14;31764:18;31761:38;31758:2;;;31814:18;;:::i;:::-;31758:2;31579:269;;;;:::o;31854:281::-;31937:27;31959:4;31937:27;:::i;:::-;31929:6;31925:40;32067:6;32055:10;32052:22;32031:18;32019:10;32016:34;32013:62;32010:2;;;32078:18;;:::i;:::-;32010:2;32118:10;32114:2;32107:22;31897:238;;;:::o;32141:233::-;32180:3;32203:24;32221:5;32203:24;:::i;:::-;32194:33;;32249:66;32242:5;32239:77;32236:2;;;32319:18;;:::i;:::-;32236:2;32366:1;32359:5;32355:13;32348:20;;32184:190;;;:::o;32380:176::-;32412:1;32429:20;32447:1;32429:20;:::i;:::-;32424:25;;32463:20;32481:1;32463:20;:::i;:::-;32458:25;;32502:1;32492:2;;32507:18;;:::i;:::-;32492:2;32548:1;32545;32541:9;32536:14;;32414:142;;;;:::o;32562:180::-;32610:77;32607:1;32600:88;32707:4;32704:1;32697:15;32731:4;32728:1;32721:15;32748:180;32796:77;32793:1;32786:88;32893:4;32890:1;32883:15;32917:4;32914:1;32907:15;32934:180;32982:77;32979:1;32972:88;33079:4;33076:1;33069:15;33103:4;33100:1;33093:15;33120:180;33168:77;33165:1;33158:88;33265:4;33262:1;33255:15;33289:4;33286:1;33279:15;33306:180;33354:77;33351:1;33344:88;33451:4;33448:1;33441:15;33475:4;33472:1;33465:15;33492:180;33540:77;33537:1;33530:88;33637:4;33634:1;33627:15;33661:4;33658:1;33651:15;33678:117;33787:1;33784;33777:12;33801:117;33910:1;33907;33900:12;33924:117;34033:1;34030;34023:12;34047:117;34156:1;34153;34146:12;34170:117;34279:1;34276;34269:12;34293:117;34402:1;34399;34392:12;34416:102;34457:6;34508:2;34504:7;34499:2;34492:5;34488:14;34484:28;34474:38;;34464:54;;;:::o;34524:230::-;34664:34;34660:1;34652:6;34648:14;34641:58;34733:13;34728:2;34720:6;34716:15;34709:38;34630:124;:::o;34760:237::-;34900:34;34896:1;34888:6;34884:14;34877:58;34969:20;34964:2;34956:6;34952:15;34945:45;34866:131;:::o;35003:225::-;35143:34;35139:1;35131:6;35127:14;35120:58;35212:8;35207:2;35199:6;35195:15;35188:33;35109:119;:::o;35234:178::-;35374:30;35370:1;35362:6;35358:14;35351:54;35340:72;:::o;35418:223::-;35558:34;35554:1;35546:6;35542:14;35535:58;35627:6;35622:2;35614:6;35610:15;35603:31;35524:117;:::o;35647:175::-;35787:27;35783:1;35775:6;35771:14;35764:51;35753:69;:::o;35828:231::-;35968:34;35964:1;35956:6;35952:14;35945:58;36037:14;36032:2;36024:6;36020:15;36013:39;35934:125;:::o;36065:243::-;36205:34;36201:1;36193:6;36189:14;36182:58;36274:26;36269:2;36261:6;36257:15;36250:51;36171:137;:::o;36314:229::-;36454:34;36450:1;36442:6;36438:14;36431:58;36523:12;36518:2;36510:6;36506:15;36499:37;36420:123;:::o;36549:228::-;36689:34;36685:1;36677:6;36673:14;36666:58;36758:11;36753:2;36745:6;36741:15;36734:36;36655:122;:::o;36783:182::-;36923:34;36919:1;36911:6;36907:14;36900:58;36889:76;:::o;36971:231::-;37111:34;37107:1;37099:6;37095:14;37088:58;37180:14;37175:2;37167:6;37163:15;37156:39;37077:125;:::o;37208:182::-;37348:34;37344:1;37336:6;37332:14;37325:58;37314:76;:::o;37396:228::-;37536:34;37532:1;37524:6;37520:14;37513:58;37605:11;37600:2;37592:6;37588:15;37581:36;37502:122;:::o;37630:234::-;37770:34;37766:1;37758:6;37754:14;37747:58;37839:17;37834:2;37826:6;37822:15;37815:42;37736:128;:::o;37870:220::-;38010:34;38006:1;37998:6;37994:14;37987:58;38079:3;38074:2;38066:6;38062:15;38055:28;37976:114;:::o;38096:236::-;38236:34;38232:1;38224:6;38220:14;38213:58;38305:19;38300:2;38292:6;38288:15;38281:44;38202:130;:::o;38338:231::-;38478:34;38474:1;38466:6;38462:14;38455:58;38547:14;38542:2;38534:6;38530:15;38523:39;38444:125;:::o;38575:122::-;38648:24;38666:5;38648:24;:::i;:::-;38641:5;38638:35;38628:2;;38687:1;38684;38677:12;38628:2;38618:79;:::o;38703:116::-;38773:21;38788:5;38773:21;:::i;:::-;38766:5;38763:32;38753:2;;38809:1;38806;38799:12;38753:2;38743:76;:::o;38825:120::-;38897:23;38914:5;38897:23;:::i;:::-;38890:5;38887:34;38877:2;;38935:1;38932;38925:12;38877:2;38867:78;:::o;38951:122::-;39024:24;39042:5;39024:24;:::i;:::-;39017:5;39014:35;39004:2;;39063:1;39060;39053:12;39004:2;38994:79;:::o

Swarm Source

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