ETH Price: $3,321.14 (-3.29%)
Gas: 18 Gwei

Token

CareBears (CBR)
 

Overview

Max Total Supply

2,222 CBR

Holders

1,084

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 CBR
0xF5dd83180669255D64686921eA525F0096b95f23
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:
CareBears

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 15: CareBears.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./ERC721F.sol";
import "./SafeMath.sol";

/**
 * @title Care Bears contract
 * @dev Extends ERC721F Non-Fungible Token Standard basic implementation.
 * Optimized to no longer use ERC721Enumerable , but still provide a totalSupply() and walletOfOwner(address _owner) implementation.
 * @author @rip0004
 * 
 */

contract CareBears is ERC721F {
    using SafeMath for uint256;
    using Strings for uint256;
    
    uint256 public tokenPrice = 0.01 ether;
    uint256 public MAX_TOKENS = 2222;
    
    bool public saleIsActive;

    event priceChange(address _by, uint256 price);
    
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721F(_name, _symbol) {
        setBaseTokenURI(_initBaseURI);
    }

    function mintOwner(address to,uint numberOfTokens) public onlyOwner {    
        uint supply = totalSupply();
        require(supply.add(numberOfTokens) <= MAX_TOKENS, "Reserve would exceed max supply of Tokens");
        for (uint i = 0; i < numberOfTokens; i++) {
            _safeMint(to, supply + i);
        }
    }

    function flipSaleState() external onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function setPrice(uint256 price) external onlyOwner {
        tokenPrice = price;
    }

    function publicMint(uint256 numberOfTokens) external payable {
        uint256 supply = totalSupply();
        require(saleIsActive, "Sale NOT active yet");
        require(numberOfTokens < 11, "max of 10 NFTs per transaction");
        require(supply.add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of Tokens");
        if(supply.add(numberOfTokens) > 1600) {  require(tokenPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct"); }
        for(uint256 i; i < numberOfTokens; i++){
            _safeMint( msg.sender, supply + i );
        }
    }
    
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        _withdraw(owner(), balance);
    }
    
    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{ value: _amount }("");
        require(success, "Failed to widthdraw Ether");
    }

    // contract can recieve Ether
    fallback() external payable { }
    receive() external payable { }
}

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

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

File 4 of 15: Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.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}. 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 || ERC721.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 || ERC721.isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

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

import './ERC721.sol';
import "./Ownable.sol";
import "./Counters.sol";

/**
 * @title ERC721B
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation.
 * Optimized to no longer use ERC721Enumerable , but still provide a totalSupply() and walletOfOwner(address _owner) implementation.
 * @author @FrankPoncelet
 * 
 */

contract ERC721F is Ownable, ERC721 {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenSupply;

    // Base URI for Meta data
    string private _baseTokenURI;

    
    constructor(string memory name_, string memory symbol_) ERC721(name_, symbol_) {
    }

    /** 
     * @dev walletofOwner
     * @return tokens id owned by the given address
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function walletOfOwner(address _owner) external view returns (uint256[] memory){
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while ( ownedTokenIndex < ownerTokenCount && currentTokenId < _tokenSupply.current() ) {
            if (ownerOf(currentTokenId) == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
            currentTokenId++;
        }
        return ownedTokenIds;
    }


    /**
     * @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 override returns (string memory) {
        return _baseTokenURI;
    }
    /**
     * @dev Set the base token URI
     */
    function setBaseTokenURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    /**
     *    
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     */
    function _mint(address to, uint256 tokenId) internal virtual override {
        super._mint(to, tokenId);
        _tokenSupply.increment();
    }

    /**
     * @dev Gets the total amount of tokens stored by the contract.
     * @return uint256 representing the total amount of tokens
     */
    function totalSupply() public view returns (uint256) {
        return _tokenSupply.current();
    }
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

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

pragma solidity ^0.8.0;

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

File 13 of 15: 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

File 14 of 15: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[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"},{"internalType":"string","name":"_initBaseURI","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"priceChange","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052662386f26fc100006009556108ae600a553480156200002257600080fd5b506040516200432338038062004323833981810160405281019062000048919062000356565b8282818160006200005e6200014c60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600190805190602001906200011492919062000228565b5080600290805190602001906200012d92919062000228565b505050505062000143816200015460201b60201c565b50505062000616565b600033905090565b620001646200014c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200018a620001ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620001e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001da9062000436565b60405180910390fd5b8060089080519060200190620001fb92919062000228565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200023690620004fe565b90600052602060002090601f0160209004810192826200025a5760008555620002a6565b82601f106200027557805160ff1916838001178555620002a6565b82800160010185558215620002a6579182015b82811115620002a557825182559160200191906001019062000288565b5b509050620002b59190620002b9565b5090565b5b80821115620002d4576000816000905550600101620002ba565b5090565b6000620002ef620002e98462000481565b62000458565b9050828152602081018484840111156200030e576200030d620005cd565b5b6200031b848285620004c8565b509392505050565b600082601f8301126200033b576200033a620005c8565b5b81516200034d848260208601620002d8565b91505092915050565b600080600060608486031215620003725762000371620005d7565b5b600084015167ffffffffffffffff811115620003935762000392620005d2565b5b620003a18682870162000323565b935050602084015167ffffffffffffffff811115620003c557620003c4620005d2565b5b620003d38682870162000323565b925050604084015167ffffffffffffffff811115620003f757620003f6620005d2565b5b620004058682870162000323565b9150509250925092565b60006200041e602083620004b7565b91506200042b82620005ed565b602082019050919050565b6000602082019050818103600083015262000451816200040f565b9050919050565b60006200046462000477565b905062000472828262000534565b919050565b6000604051905090565b600067ffffffffffffffff8211156200049f576200049e62000599565b5b620004aa82620005dc565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620004e8578082015181840152602081019050620004cb565b83811115620004f8576000848401525b50505050565b600060028204905060018216806200051757607f821691505b602082108114156200052e576200052d6200056a565b5b50919050565b6200053f82620005dc565b810181811067ffffffffffffffff8211171562000561576200056062000599565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613cfd80620006266000396000f3fe6080604052600436106101a05760003560e01c80636352211e116100ec578063a22cb4651161008a578063e985e9c511610064578063e985e9c514610597578063eb8d2444146105d4578063f2fde38b146105ff578063f47c84c514610628576101a7565b8063a22cb46514610508578063b88d4fde14610531578063c87b56dd1461055a576101a7565b80637ff9b596116100c65780637ff9b5961461045e5780638da5cb5b1461048957806391b7f5ed146104b457806395d89b41146104dd576101a7565b80636352211e146103cd57806370a082311461040a578063715018a614610447576101a7565b80632db11544116101595780633ccfd60b116101335780633ccfd60b14610327578063408cbf941461033e57806342842e0e14610367578063438b630014610390576101a7565b80632db11544146102cb57806330176e13146102e757806334918dfd14610310576101a7565b806301ffc9a7146101a957806306fdde03146101e6578063081812fc14610211578063095ea7b31461024e57806318160ddd1461027757806323b872dd146102a2576101a7565b366101a757005b005b3480156101b557600080fd5b506101d060048036038101906101cb9190612878565b610653565b6040516101dd9190612ea7565b60405180910390f35b3480156101f257600080fd5b506101fb610735565b6040516102089190612ec2565b60405180910390f35b34801561021d57600080fd5b506102386004803603810190610233919061291b565b6107c7565b6040516102459190612e1e565b60405180910390f35b34801561025a57600080fd5b5061027560048036038101906102709190612838565b61084c565b005b34801561028357600080fd5b5061028c610964565b60405161029991906131c4565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612722565b610975565b005b6102e560048036038101906102e0919061291b565b6109d5565b005b3480156102f357600080fd5b5061030e600480360381019061030991906128d2565b610b76565b005b34801561031c57600080fd5b50610325610c0c565b005b34801561033357600080fd5b5061033c610cb4565b005b34801561034a57600080fd5b5061036560048036038101906103609190612838565b610d8c565b005b34801561037357600080fd5b5061038e60048036038101906103899190612722565b610ea4565b005b34801561039c57600080fd5b506103b760048036038101906103b291906126b5565b610ec4565b6040516103c49190612e85565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef919061291b565b610fcf565b6040516104019190612e1e565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906126b5565b611081565b60405161043e91906131c4565b60405180910390f35b34801561045357600080fd5b5061045c611139565b005b34801561046a57600080fd5b50610473611273565b60405161048091906131c4565b60405180910390f35b34801561049557600080fd5b5061049e611279565b6040516104ab9190612e1e565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d6919061291b565b6112a2565b005b3480156104e957600080fd5b506104f2611328565b6040516104ff9190612ec2565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a91906127f8565b6113ba565b005b34801561053d57600080fd5b5061055860048036038101906105539190612775565b61153b565b005b34801561056657600080fd5b50610581600480360381019061057c919061291b565b61159d565b60405161058e9190612ec2565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b991906126e2565b611644565b6040516105cb9190612ea7565b60405180910390f35b3480156105e057600080fd5b506105e96116d8565b6040516105f69190612ea7565b60405180910390f35b34801561060b57600080fd5b50610626600480360381019061062191906126b5565b6116eb565b005b34801561063457600080fd5b5061063d611894565b60405161064a91906131c4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072e575061072d8261189a565b5b9050919050565b606060018054610744906134b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610770906134b8565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d282611904565b610811576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610808906130c4565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085782610fcf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf90613184565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e7611970565b73ffffffffffffffffffffffffffffffffffffffff161480610916575061091581610910611970565b611644565b5b610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c90613024565b60405180910390fd5b61095f8383611978565b505050565b60006109706007611a31565b905090565b610986610980611970565b82611a3f565b6109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc906131a4565b60405180910390fd5b6109d0838383611b1d565b505050565b60006109df610964565b9050600b60009054906101000a900460ff16610a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2790612fe4565b60405180910390fd5b600b8210610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a906130a4565b60405180910390fd5b600a54610a898383611d7990919063ffffffff16565b1115610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190612f64565b60405180910390fd5b610640610ae08383611d7990919063ffffffff16565b1115610b3e5734610afc83600954611d8f90919063ffffffff16565b1115610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490612fc4565b60405180910390fd5b5b60005b82811015610b7157610b5e338284610b5991906132ed565b611da5565b8080610b699061351b565b915050610b41565b505050565b610b7e611970565b73ffffffffffffffffffffffffffffffffffffffff16610b9c611279565b73ffffffffffffffffffffffffffffffffffffffff1614610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990613104565b60405180910390fd5b8060089080519060200190610c089291906124c9565b5050565b610c14611970565b73ffffffffffffffffffffffffffffffffffffffff16610c32611279565b73ffffffffffffffffffffffffffffffffffffffff1614610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90613104565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b610cbc611970565b73ffffffffffffffffffffffffffffffffffffffff16610cda611279565b73ffffffffffffffffffffffffffffffffffffffff1614610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613104565b60405180910390fd5b600047905060008111610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f906130e4565b60405180910390fd5b610d89610d83611279565b82611dc3565b50565b610d94611970565b73ffffffffffffffffffffffffffffffffffffffff16610db2611279565b73ffffffffffffffffffffffffffffffffffffffff1614610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90613104565b60405180910390fd5b6000610e12610964565b9050600a54610e2a8383611d7990919063ffffffff16565b1115610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290612f44565b60405180910390fd5b60005b82811015610e9e57610e8b848284610e8691906132ed565b611da5565b8080610e969061351b565b915050610e6e565b50505050565b610ebf8383836040518060200160405280600081525061153b565b505050565b60606000610ed183611081565b905060008167ffffffffffffffff811115610eef57610eee613651565b5b604051908082528060200260200182016040528015610f1d5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f405750610f3d6007611a31565b82105b15610fc3578573ffffffffffffffffffffffffffffffffffffffff16610f6583610fcf565b73ffffffffffffffffffffffffffffffffffffffff161415610fb05781838281518110610f9557610f94613622565b5b6020026020010181815250508080610fac9061351b565b9150505b8180610fbb9061351b565b925050610f29565b82945050505050919050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90613064565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990613044565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611141611970565b73ffffffffffffffffffffffffffffffffffffffff1661115f611279565b73ffffffffffffffffffffffffffffffffffffffff16146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90613104565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112aa611970565b73ffffffffffffffffffffffffffffffffffffffff166112c8611279565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613104565b60405180910390fd5b8060098190555050565b606060028054611337906134b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611363906134b8565b80156113b05780601f10611385576101008083540402835291602001916113b0565b820191906000526020600020905b81548152906001019060200180831161139357829003601f168201915b5050505050905090565b6113c2611970565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790612fa4565b60405180910390fd5b806006600061143d611970565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ea611970565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161152f9190612ea7565b60405180910390a35050565b61154c611546611970565b83611a3f565b61158b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611582906131a4565b60405180910390fd5b61159784848484611e74565b50505050565b60606115a882611904565b6115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613144565b60405180910390fd5b60006115f1611ed0565b90506000815111611611576040518060200160405280600081525061163c565b8061161b84611f62565b60405160200161162c929190612de5565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff1681565b6116f3611970565b73ffffffffffffffffffffffffffffffffffffffff16611711611279565b73ffffffffffffffffffffffffffffffffffffffff1614611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90613104565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90612f04565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119eb83610fcf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a4a82611904565b611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090613004565b60405180910390fd5b6000611a9483610fcf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b0357508373ffffffffffffffffffffffffffffffffffffffff16611aeb846107c7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b145750611b138185611644565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b3d82610fcf565b73ffffffffffffffffffffffffffffffffffffffff1614611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613124565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90612f84565b60405180910390fd5b611c0e8383836120c3565b611c19600082611978565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c6991906133ce565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc091906132ed565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611d8791906132ed565b905092915050565b60008183611d9d9190613374565b905092915050565b611dbf8282604051806020016040528060008152506120c8565b5050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611de990612e09565b60006040518083038185875af1925050503d8060008114611e26576040519150601f19603f3d011682016040523d82523d6000602084013e611e2b565b606091505b5050905080611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690613164565b60405180910390fd5b505050565b611e7f848484611b1d565b611e8b84848484612123565b611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec190612ee4565b60405180910390fd5b50505050565b606060088054611edf906134b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0b906134b8565b8015611f585780601f10611f2d57610100808354040283529160200191611f58565b820191906000526020600020905b815481529060010190602001808311611f3b57829003601f168201915b5050505050905090565b60606000821415611faa576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120be565b600082905060005b60008214611fdc578080611fc59061351b565b915050600a82611fd59190613343565b9150611fb2565b60008167ffffffffffffffff811115611ff857611ff7613651565b5b6040519080825280601f01601f19166020018201604052801561202a5781602001600182028036833780820191505090505b5090505b600085146120b75760018261204391906133ce565b9150600a856120529190613564565b603061205e91906132ed565b60f81b81838151811061207457612073613622565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120b09190613343565b945061202e565b8093505050505b919050565b505050565b6120d283836122ba565b6120df6000848484612123565b61211e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211590612ee4565b60405180910390fd5b505050565b60006121448473ffffffffffffffffffffffffffffffffffffffff166122d2565b156122ad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261216d611970565b8786866040518563ffffffff1660e01b815260040161218f9493929190612e39565b602060405180830381600087803b1580156121a957600080fd5b505af19250505080156121da57506040513d601f19601f820116820180604052508101906121d791906128a5565b60015b61225d573d806000811461220a576040519150601f19603f3d011682016040523d82523d6000602084013e61220f565b606091505b50600081511415612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90612ee4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122b2565b600190505b949350505050565b6122c482826122e5565b6122ce60076124b3565b5050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c90613084565b60405180910390fd5b61235e81611904565b1561239e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239590612f24565b60405180910390fd5b6123aa600083836120c3565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123fa91906132ed565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6001816000016000828254019250508190555050565b8280546124d5906134b8565b90600052602060002090601f0160209004810192826124f7576000855561253e565b82601f1061251057805160ff191683800117855561253e565b8280016001018555821561253e579182015b8281111561253d578251825591602001919060010190612522565b5b50905061254b919061254f565b5090565b5b80821115612568576000816000905550600101612550565b5090565b600061257f61257a84613204565b6131df565b90508281526020810184848401111561259b5761259a613685565b5b6125a6848285613476565b509392505050565b60006125c16125bc84613235565b6131df565b9050828152602081018484840111156125dd576125dc613685565b5b6125e8848285613476565b509392505050565b6000813590506125ff81613c6b565b92915050565b60008135905061261481613c82565b92915050565b60008135905061262981613c99565b92915050565b60008151905061263e81613c99565b92915050565b600082601f83011261265957612658613680565b5b813561266984826020860161256c565b91505092915050565b600082601f83011261268757612686613680565b5b81356126978482602086016125ae565b91505092915050565b6000813590506126af81613cb0565b92915050565b6000602082840312156126cb576126ca61368f565b5b60006126d9848285016125f0565b91505092915050565b600080604083850312156126f9576126f861368f565b5b6000612707858286016125f0565b9250506020612718858286016125f0565b9150509250929050565b60008060006060848603121561273b5761273a61368f565b5b6000612749868287016125f0565b935050602061275a868287016125f0565b925050604061276b868287016126a0565b9150509250925092565b6000806000806080858703121561278f5761278e61368f565b5b600061279d878288016125f0565b94505060206127ae878288016125f0565b93505060406127bf878288016126a0565b925050606085013567ffffffffffffffff8111156127e0576127df61368a565b5b6127ec87828801612644565b91505092959194509250565b6000806040838503121561280f5761280e61368f565b5b600061281d858286016125f0565b925050602061282e85828601612605565b9150509250929050565b6000806040838503121561284f5761284e61368f565b5b600061285d858286016125f0565b925050602061286e858286016126a0565b9150509250929050565b60006020828403121561288e5761288d61368f565b5b600061289c8482850161261a565b91505092915050565b6000602082840312156128bb576128ba61368f565b5b60006128c98482850161262f565b91505092915050565b6000602082840312156128e8576128e761368f565b5b600082013567ffffffffffffffff8111156129065761290561368a565b5b61291284828501612672565b91505092915050565b6000602082840312156129315761293061368f565b5b600061293f848285016126a0565b91505092915050565b60006129548383612dc7565b60208301905092915050565b61296981613402565b82525050565b600061297a82613276565b61298481856132a4565b935061298f83613266565b8060005b838110156129c05781516129a78882612948565b97506129b283613297565b925050600181019050612993565b5085935050505092915050565b6129d681613414565b82525050565b60006129e782613281565b6129f181856132b5565b9350612a01818560208601613485565b612a0a81613694565b840191505092915050565b6000612a208261328c565b612a2a81856132d1565b9350612a3a818560208601613485565b612a4381613694565b840191505092915050565b6000612a598261328c565b612a6381856132e2565b9350612a73818560208601613485565b80840191505092915050565b6000612a8c6032836132d1565b9150612a97826136a5565b604082019050919050565b6000612aaf6026836132d1565b9150612aba826136f4565b604082019050919050565b6000612ad2601c836132d1565b9150612add82613743565b602082019050919050565b6000612af56029836132d1565b9150612b008261376c565b604082019050919050565b6000612b18602a836132d1565b9150612b23826137bb565b604082019050919050565b6000612b3b6024836132d1565b9150612b468261380a565b604082019050919050565b6000612b5e6019836132d1565b9150612b6982613859565b602082019050919050565b6000612b81601f836132d1565b9150612b8c82613882565b602082019050919050565b6000612ba46013836132d1565b9150612baf826138ab565b602082019050919050565b6000612bc7602c836132d1565b9150612bd2826138d4565b604082019050919050565b6000612bea6038836132d1565b9150612bf582613923565b604082019050919050565b6000612c0d602a836132d1565b9150612c1882613972565b604082019050919050565b6000612c306029836132d1565b9150612c3b826139c1565b604082019050919050565b6000612c536020836132d1565b9150612c5e82613a10565b602082019050919050565b6000612c76601e836132d1565b9150612c8182613a39565b602082019050919050565b6000612c99602c836132d1565b9150612ca482613a62565b604082019050919050565b6000612cbc6013836132d1565b9150612cc782613ab1565b602082019050919050565b6000612cdf6020836132d1565b9150612cea82613ada565b602082019050919050565b6000612d026029836132d1565b9150612d0d82613b03565b604082019050919050565b6000612d25602f836132d1565b9150612d3082613b52565b604082019050919050565b6000612d486019836132d1565b9150612d5382613ba1565b602082019050919050565b6000612d6b6021836132d1565b9150612d7682613bca565b604082019050919050565b6000612d8e6000836132c6565b9150612d9982613c19565b600082019050919050565b6000612db16031836132d1565b9150612dbc82613c1c565b604082019050919050565b612dd08161346c565b82525050565b612ddf8161346c565b82525050565b6000612df18285612a4e565b9150612dfd8284612a4e565b91508190509392505050565b6000612e1482612d81565b9150819050919050565b6000602082019050612e336000830184612960565b92915050565b6000608082019050612e4e6000830187612960565b612e5b6020830186612960565b612e686040830185612dd6565b8181036060830152612e7a81846129dc565b905095945050505050565b60006020820190508181036000830152612e9f818461296f565b905092915050565b6000602082019050612ebc60008301846129cd565b92915050565b60006020820190508181036000830152612edc8184612a15565b905092915050565b60006020820190508181036000830152612efd81612a7f565b9050919050565b60006020820190508181036000830152612f1d81612aa2565b9050919050565b60006020820190508181036000830152612f3d81612ac5565b9050919050565b60006020820190508181036000830152612f5d81612ae8565b9050919050565b60006020820190508181036000830152612f7d81612b0b565b9050919050565b60006020820190508181036000830152612f9d81612b2e565b9050919050565b60006020820190508181036000830152612fbd81612b51565b9050919050565b60006020820190508181036000830152612fdd81612b74565b9050919050565b60006020820190508181036000830152612ffd81612b97565b9050919050565b6000602082019050818103600083015261301d81612bba565b9050919050565b6000602082019050818103600083015261303d81612bdd565b9050919050565b6000602082019050818103600083015261305d81612c00565b9050919050565b6000602082019050818103600083015261307d81612c23565b9050919050565b6000602082019050818103600083015261309d81612c46565b9050919050565b600060208201905081810360008301526130bd81612c69565b9050919050565b600060208201905081810360008301526130dd81612c8c565b9050919050565b600060208201905081810360008301526130fd81612caf565b9050919050565b6000602082019050818103600083015261311d81612cd2565b9050919050565b6000602082019050818103600083015261313d81612cf5565b9050919050565b6000602082019050818103600083015261315d81612d18565b9050919050565b6000602082019050818103600083015261317d81612d3b565b9050919050565b6000602082019050818103600083015261319d81612d5e565b9050919050565b600060208201905081810360008301526131bd81612da4565b9050919050565b60006020820190506131d96000830184612dd6565b92915050565b60006131e96131fa565b90506131f582826134ea565b919050565b6000604051905090565b600067ffffffffffffffff82111561321f5761321e613651565b5b61322882613694565b9050602081019050919050565b600067ffffffffffffffff8211156132505761324f613651565b5b61325982613694565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132f88261346c565b91506133038361346c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561333857613337613595565b5b828201905092915050565b600061334e8261346c565b91506133598361346c565b925082613369576133686135c4565b5b828204905092915050565b600061337f8261346c565b915061338a8361346c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133c3576133c2613595565b5b828202905092915050565b60006133d98261346c565b91506133e48361346c565b9250828210156133f7576133f6613595565b5b828203905092915050565b600061340d8261344c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134a3578082015181840152602081019050613488565b838111156134b2576000848401525b50505050565b600060028204905060018216806134d057607f821691505b602082108114156134e4576134e36135f3565b5b50919050565b6134f382613694565b810181811067ffffffffffffffff8211171561351257613511613651565b5b80604052505050565b60006135268261346c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561355957613558613595565b5b600182019050919050565b600061356f8261346c565b915061357a8361346c565b92508261358a576135896135c4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5265736572766520776f756c6420657863656564206d617820737570706c792060008201527f6f6620546f6b656e730000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620546f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f53616c65204e4f54206163746976652079657400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6d6178206f66203130204e46547320706572207472616e73616374696f6e0000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4661696c656420746f2077696474686472617720457468657200000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613c7481613402565b8114613c7f57600080fd5b50565b613c8b81613414565b8114613c9657600080fd5b50565b613ca281613420565b8114613cad57600080fd5b50565b613cb98161346c565b8114613cc457600080fd5b5056fea26469706673582212207586adf02fedfd52e47b76942643ffd6054d032cd4879ccdfa907f84ae83455e64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000094361726542656172730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343425200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101a05760003560e01c80636352211e116100ec578063a22cb4651161008a578063e985e9c511610064578063e985e9c514610597578063eb8d2444146105d4578063f2fde38b146105ff578063f47c84c514610628576101a7565b8063a22cb46514610508578063b88d4fde14610531578063c87b56dd1461055a576101a7565b80637ff9b596116100c65780637ff9b5961461045e5780638da5cb5b1461048957806391b7f5ed146104b457806395d89b41146104dd576101a7565b80636352211e146103cd57806370a082311461040a578063715018a614610447576101a7565b80632db11544116101595780633ccfd60b116101335780633ccfd60b14610327578063408cbf941461033e57806342842e0e14610367578063438b630014610390576101a7565b80632db11544146102cb57806330176e13146102e757806334918dfd14610310576101a7565b806301ffc9a7146101a957806306fdde03146101e6578063081812fc14610211578063095ea7b31461024e57806318160ddd1461027757806323b872dd146102a2576101a7565b366101a757005b005b3480156101b557600080fd5b506101d060048036038101906101cb9190612878565b610653565b6040516101dd9190612ea7565b60405180910390f35b3480156101f257600080fd5b506101fb610735565b6040516102089190612ec2565b60405180910390f35b34801561021d57600080fd5b506102386004803603810190610233919061291b565b6107c7565b6040516102459190612e1e565b60405180910390f35b34801561025a57600080fd5b5061027560048036038101906102709190612838565b61084c565b005b34801561028357600080fd5b5061028c610964565b60405161029991906131c4565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612722565b610975565b005b6102e560048036038101906102e0919061291b565b6109d5565b005b3480156102f357600080fd5b5061030e600480360381019061030991906128d2565b610b76565b005b34801561031c57600080fd5b50610325610c0c565b005b34801561033357600080fd5b5061033c610cb4565b005b34801561034a57600080fd5b5061036560048036038101906103609190612838565b610d8c565b005b34801561037357600080fd5b5061038e60048036038101906103899190612722565b610ea4565b005b34801561039c57600080fd5b506103b760048036038101906103b291906126b5565b610ec4565b6040516103c49190612e85565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef919061291b565b610fcf565b6040516104019190612e1e565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906126b5565b611081565b60405161043e91906131c4565b60405180910390f35b34801561045357600080fd5b5061045c611139565b005b34801561046a57600080fd5b50610473611273565b60405161048091906131c4565b60405180910390f35b34801561049557600080fd5b5061049e611279565b6040516104ab9190612e1e565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d6919061291b565b6112a2565b005b3480156104e957600080fd5b506104f2611328565b6040516104ff9190612ec2565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a91906127f8565b6113ba565b005b34801561053d57600080fd5b5061055860048036038101906105539190612775565b61153b565b005b34801561056657600080fd5b50610581600480360381019061057c919061291b565b61159d565b60405161058e9190612ec2565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b991906126e2565b611644565b6040516105cb9190612ea7565b60405180910390f35b3480156105e057600080fd5b506105e96116d8565b6040516105f69190612ea7565b60405180910390f35b34801561060b57600080fd5b50610626600480360381019061062191906126b5565b6116eb565b005b34801561063457600080fd5b5061063d611894565b60405161064a91906131c4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072e575061072d8261189a565b5b9050919050565b606060018054610744906134b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610770906134b8565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d282611904565b610811576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610808906130c4565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085782610fcf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf90613184565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e7611970565b73ffffffffffffffffffffffffffffffffffffffff161480610916575061091581610910611970565b611644565b5b610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c90613024565b60405180910390fd5b61095f8383611978565b505050565b60006109706007611a31565b905090565b610986610980611970565b82611a3f565b6109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc906131a4565b60405180910390fd5b6109d0838383611b1d565b505050565b60006109df610964565b9050600b60009054906101000a900460ff16610a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2790612fe4565b60405180910390fd5b600b8210610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a906130a4565b60405180910390fd5b600a54610a898383611d7990919063ffffffff16565b1115610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190612f64565b60405180910390fd5b610640610ae08383611d7990919063ffffffff16565b1115610b3e5734610afc83600954611d8f90919063ffffffff16565b1115610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490612fc4565b60405180910390fd5b5b60005b82811015610b7157610b5e338284610b5991906132ed565b611da5565b8080610b699061351b565b915050610b41565b505050565b610b7e611970565b73ffffffffffffffffffffffffffffffffffffffff16610b9c611279565b73ffffffffffffffffffffffffffffffffffffffff1614610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990613104565b60405180910390fd5b8060089080519060200190610c089291906124c9565b5050565b610c14611970565b73ffffffffffffffffffffffffffffffffffffffff16610c32611279565b73ffffffffffffffffffffffffffffffffffffffff1614610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90613104565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b610cbc611970565b73ffffffffffffffffffffffffffffffffffffffff16610cda611279565b73ffffffffffffffffffffffffffffffffffffffff1614610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613104565b60405180910390fd5b600047905060008111610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f906130e4565b60405180910390fd5b610d89610d83611279565b82611dc3565b50565b610d94611970565b73ffffffffffffffffffffffffffffffffffffffff16610db2611279565b73ffffffffffffffffffffffffffffffffffffffff1614610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90613104565b60405180910390fd5b6000610e12610964565b9050600a54610e2a8383611d7990919063ffffffff16565b1115610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290612f44565b60405180910390fd5b60005b82811015610e9e57610e8b848284610e8691906132ed565b611da5565b8080610e969061351b565b915050610e6e565b50505050565b610ebf8383836040518060200160405280600081525061153b565b505050565b60606000610ed183611081565b905060008167ffffffffffffffff811115610eef57610eee613651565b5b604051908082528060200260200182016040528015610f1d5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f405750610f3d6007611a31565b82105b15610fc3578573ffffffffffffffffffffffffffffffffffffffff16610f6583610fcf565b73ffffffffffffffffffffffffffffffffffffffff161415610fb05781838281518110610f9557610f94613622565b5b6020026020010181815250508080610fac9061351b565b9150505b8180610fbb9061351b565b925050610f29565b82945050505050919050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90613064565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990613044565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611141611970565b73ffffffffffffffffffffffffffffffffffffffff1661115f611279565b73ffffffffffffffffffffffffffffffffffffffff16146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90613104565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112aa611970565b73ffffffffffffffffffffffffffffffffffffffff166112c8611279565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613104565b60405180910390fd5b8060098190555050565b606060028054611337906134b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611363906134b8565b80156113b05780601f10611385576101008083540402835291602001916113b0565b820191906000526020600020905b81548152906001019060200180831161139357829003601f168201915b5050505050905090565b6113c2611970565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790612fa4565b60405180910390fd5b806006600061143d611970565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ea611970565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161152f9190612ea7565b60405180910390a35050565b61154c611546611970565b83611a3f565b61158b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611582906131a4565b60405180910390fd5b61159784848484611e74565b50505050565b60606115a882611904565b6115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613144565b60405180910390fd5b60006115f1611ed0565b90506000815111611611576040518060200160405280600081525061163c565b8061161b84611f62565b60405160200161162c929190612de5565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff1681565b6116f3611970565b73ffffffffffffffffffffffffffffffffffffffff16611711611279565b73ffffffffffffffffffffffffffffffffffffffff1614611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90613104565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90612f04565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119eb83610fcf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a4a82611904565b611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090613004565b60405180910390fd5b6000611a9483610fcf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b0357508373ffffffffffffffffffffffffffffffffffffffff16611aeb846107c7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b145750611b138185611644565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b3d82610fcf565b73ffffffffffffffffffffffffffffffffffffffff1614611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613124565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90612f84565b60405180910390fd5b611c0e8383836120c3565b611c19600082611978565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c6991906133ce565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc091906132ed565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611d8791906132ed565b905092915050565b60008183611d9d9190613374565b905092915050565b611dbf8282604051806020016040528060008152506120c8565b5050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611de990612e09565b60006040518083038185875af1925050503d8060008114611e26576040519150601f19603f3d011682016040523d82523d6000602084013e611e2b565b606091505b5050905080611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690613164565b60405180910390fd5b505050565b611e7f848484611b1d565b611e8b84848484612123565b611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec190612ee4565b60405180910390fd5b50505050565b606060088054611edf906134b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0b906134b8565b8015611f585780601f10611f2d57610100808354040283529160200191611f58565b820191906000526020600020905b815481529060010190602001808311611f3b57829003601f168201915b5050505050905090565b60606000821415611faa576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120be565b600082905060005b60008214611fdc578080611fc59061351b565b915050600a82611fd59190613343565b9150611fb2565b60008167ffffffffffffffff811115611ff857611ff7613651565b5b6040519080825280601f01601f19166020018201604052801561202a5781602001600182028036833780820191505090505b5090505b600085146120b75760018261204391906133ce565b9150600a856120529190613564565b603061205e91906132ed565b60f81b81838151811061207457612073613622565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120b09190613343565b945061202e565b8093505050505b919050565b505050565b6120d283836122ba565b6120df6000848484612123565b61211e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211590612ee4565b60405180910390fd5b505050565b60006121448473ffffffffffffffffffffffffffffffffffffffff166122d2565b156122ad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261216d611970565b8786866040518563ffffffff1660e01b815260040161218f9493929190612e39565b602060405180830381600087803b1580156121a957600080fd5b505af19250505080156121da57506040513d601f19601f820116820180604052508101906121d791906128a5565b60015b61225d573d806000811461220a576040519150601f19603f3d011682016040523d82523d6000602084013e61220f565b606091505b50600081511415612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90612ee4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122b2565b600190505b949350505050565b6122c482826122e5565b6122ce60076124b3565b5050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c90613084565b60405180910390fd5b61235e81611904565b1561239e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239590612f24565b60405180910390fd5b6123aa600083836120c3565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123fa91906132ed565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6001816000016000828254019250508190555050565b8280546124d5906134b8565b90600052602060002090601f0160209004810192826124f7576000855561253e565b82601f1061251057805160ff191683800117855561253e565b8280016001018555821561253e579182015b8281111561253d578251825591602001919060010190612522565b5b50905061254b919061254f565b5090565b5b80821115612568576000816000905550600101612550565b5090565b600061257f61257a84613204565b6131df565b90508281526020810184848401111561259b5761259a613685565b5b6125a6848285613476565b509392505050565b60006125c16125bc84613235565b6131df565b9050828152602081018484840111156125dd576125dc613685565b5b6125e8848285613476565b509392505050565b6000813590506125ff81613c6b565b92915050565b60008135905061261481613c82565b92915050565b60008135905061262981613c99565b92915050565b60008151905061263e81613c99565b92915050565b600082601f83011261265957612658613680565b5b813561266984826020860161256c565b91505092915050565b600082601f83011261268757612686613680565b5b81356126978482602086016125ae565b91505092915050565b6000813590506126af81613cb0565b92915050565b6000602082840312156126cb576126ca61368f565b5b60006126d9848285016125f0565b91505092915050565b600080604083850312156126f9576126f861368f565b5b6000612707858286016125f0565b9250506020612718858286016125f0565b9150509250929050565b60008060006060848603121561273b5761273a61368f565b5b6000612749868287016125f0565b935050602061275a868287016125f0565b925050604061276b868287016126a0565b9150509250925092565b6000806000806080858703121561278f5761278e61368f565b5b600061279d878288016125f0565b94505060206127ae878288016125f0565b93505060406127bf878288016126a0565b925050606085013567ffffffffffffffff8111156127e0576127df61368a565b5b6127ec87828801612644565b91505092959194509250565b6000806040838503121561280f5761280e61368f565b5b600061281d858286016125f0565b925050602061282e85828601612605565b9150509250929050565b6000806040838503121561284f5761284e61368f565b5b600061285d858286016125f0565b925050602061286e858286016126a0565b9150509250929050565b60006020828403121561288e5761288d61368f565b5b600061289c8482850161261a565b91505092915050565b6000602082840312156128bb576128ba61368f565b5b60006128c98482850161262f565b91505092915050565b6000602082840312156128e8576128e761368f565b5b600082013567ffffffffffffffff8111156129065761290561368a565b5b61291284828501612672565b91505092915050565b6000602082840312156129315761293061368f565b5b600061293f848285016126a0565b91505092915050565b60006129548383612dc7565b60208301905092915050565b61296981613402565b82525050565b600061297a82613276565b61298481856132a4565b935061298f83613266565b8060005b838110156129c05781516129a78882612948565b97506129b283613297565b925050600181019050612993565b5085935050505092915050565b6129d681613414565b82525050565b60006129e782613281565b6129f181856132b5565b9350612a01818560208601613485565b612a0a81613694565b840191505092915050565b6000612a208261328c565b612a2a81856132d1565b9350612a3a818560208601613485565b612a4381613694565b840191505092915050565b6000612a598261328c565b612a6381856132e2565b9350612a73818560208601613485565b80840191505092915050565b6000612a8c6032836132d1565b9150612a97826136a5565b604082019050919050565b6000612aaf6026836132d1565b9150612aba826136f4565b604082019050919050565b6000612ad2601c836132d1565b9150612add82613743565b602082019050919050565b6000612af56029836132d1565b9150612b008261376c565b604082019050919050565b6000612b18602a836132d1565b9150612b23826137bb565b604082019050919050565b6000612b3b6024836132d1565b9150612b468261380a565b604082019050919050565b6000612b5e6019836132d1565b9150612b6982613859565b602082019050919050565b6000612b81601f836132d1565b9150612b8c82613882565b602082019050919050565b6000612ba46013836132d1565b9150612baf826138ab565b602082019050919050565b6000612bc7602c836132d1565b9150612bd2826138d4565b604082019050919050565b6000612bea6038836132d1565b9150612bf582613923565b604082019050919050565b6000612c0d602a836132d1565b9150612c1882613972565b604082019050919050565b6000612c306029836132d1565b9150612c3b826139c1565b604082019050919050565b6000612c536020836132d1565b9150612c5e82613a10565b602082019050919050565b6000612c76601e836132d1565b9150612c8182613a39565b602082019050919050565b6000612c99602c836132d1565b9150612ca482613a62565b604082019050919050565b6000612cbc6013836132d1565b9150612cc782613ab1565b602082019050919050565b6000612cdf6020836132d1565b9150612cea82613ada565b602082019050919050565b6000612d026029836132d1565b9150612d0d82613b03565b604082019050919050565b6000612d25602f836132d1565b9150612d3082613b52565b604082019050919050565b6000612d486019836132d1565b9150612d5382613ba1565b602082019050919050565b6000612d6b6021836132d1565b9150612d7682613bca565b604082019050919050565b6000612d8e6000836132c6565b9150612d9982613c19565b600082019050919050565b6000612db16031836132d1565b9150612dbc82613c1c565b604082019050919050565b612dd08161346c565b82525050565b612ddf8161346c565b82525050565b6000612df18285612a4e565b9150612dfd8284612a4e565b91508190509392505050565b6000612e1482612d81565b9150819050919050565b6000602082019050612e336000830184612960565b92915050565b6000608082019050612e4e6000830187612960565b612e5b6020830186612960565b612e686040830185612dd6565b8181036060830152612e7a81846129dc565b905095945050505050565b60006020820190508181036000830152612e9f818461296f565b905092915050565b6000602082019050612ebc60008301846129cd565b92915050565b60006020820190508181036000830152612edc8184612a15565b905092915050565b60006020820190508181036000830152612efd81612a7f565b9050919050565b60006020820190508181036000830152612f1d81612aa2565b9050919050565b60006020820190508181036000830152612f3d81612ac5565b9050919050565b60006020820190508181036000830152612f5d81612ae8565b9050919050565b60006020820190508181036000830152612f7d81612b0b565b9050919050565b60006020820190508181036000830152612f9d81612b2e565b9050919050565b60006020820190508181036000830152612fbd81612b51565b9050919050565b60006020820190508181036000830152612fdd81612b74565b9050919050565b60006020820190508181036000830152612ffd81612b97565b9050919050565b6000602082019050818103600083015261301d81612bba565b9050919050565b6000602082019050818103600083015261303d81612bdd565b9050919050565b6000602082019050818103600083015261305d81612c00565b9050919050565b6000602082019050818103600083015261307d81612c23565b9050919050565b6000602082019050818103600083015261309d81612c46565b9050919050565b600060208201905081810360008301526130bd81612c69565b9050919050565b600060208201905081810360008301526130dd81612c8c565b9050919050565b600060208201905081810360008301526130fd81612caf565b9050919050565b6000602082019050818103600083015261311d81612cd2565b9050919050565b6000602082019050818103600083015261313d81612cf5565b9050919050565b6000602082019050818103600083015261315d81612d18565b9050919050565b6000602082019050818103600083015261317d81612d3b565b9050919050565b6000602082019050818103600083015261319d81612d5e565b9050919050565b600060208201905081810360008301526131bd81612da4565b9050919050565b60006020820190506131d96000830184612dd6565b92915050565b60006131e96131fa565b90506131f582826134ea565b919050565b6000604051905090565b600067ffffffffffffffff82111561321f5761321e613651565b5b61322882613694565b9050602081019050919050565b600067ffffffffffffffff8211156132505761324f613651565b5b61325982613694565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132f88261346c565b91506133038361346c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561333857613337613595565b5b828201905092915050565b600061334e8261346c565b91506133598361346c565b925082613369576133686135c4565b5b828204905092915050565b600061337f8261346c565b915061338a8361346c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133c3576133c2613595565b5b828202905092915050565b60006133d98261346c565b91506133e48361346c565b9250828210156133f7576133f6613595565b5b828203905092915050565b600061340d8261344c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134a3578082015181840152602081019050613488565b838111156134b2576000848401525b50505050565b600060028204905060018216806134d057607f821691505b602082108114156134e4576134e36135f3565b5b50919050565b6134f382613694565b810181811067ffffffffffffffff8211171561351257613511613651565b5b80604052505050565b60006135268261346c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561355957613558613595565b5b600182019050919050565b600061356f8261346c565b915061357a8361346c565b92508261358a576135896135c4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5265736572766520776f756c6420657863656564206d617820737570706c792060008201527f6f6620546f6b656e730000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620546f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f53616c65204e4f54206163746976652079657400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6d6178206f66203130204e46547320706572207472616e73616374696f6e0000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4661696c656420746f2077696474686472617720457468657200000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613c7481613402565b8114613c7f57600080fd5b50565b613c8b81613414565b8114613c9657600080fd5b50565b613ca281613420565b8114613cad57600080fd5b50565b613cb98161346c565b8114613cc457600080fd5b5056fea26469706673582212207586adf02fedfd52e47b76942643ffd6054d032cd4879ccdfa907f84ae83455e64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000094361726542656172730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343425200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CareBears
Arg [1] : _symbol (string): CBR
Arg [2] : _initBaseURI (string):

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 4361726542656172730000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4342520000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

377:2069:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1522:292:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2454:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3921:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3451:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2598:101:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4811:305:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1360:587:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2083:107:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1172:89:1;;;;;;;;;;;;;:::i;:::-;;1957:183;;;;;;;;;;;;;:::i;:::-;;845:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5187:151:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1025:634:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2148:239:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1878:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1746:148:12;;;;;;;;;;;;;:::i;:::-;;481:38:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1095:87:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1267::1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2623:104:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4214:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5409:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2798:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4580:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;568:24:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2049:244:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;525:32:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1522:292:5;1624:4;1663:25;1648:40;;;:11;:40;;;;:105;;;;1720:33;1705:48;;;:11;:48;;;;1648:105;:158;;;;1770:36;1794:11;1770:23;:36::i;:::-;1648:158;1641:165;;1522:292;;;:::o;2454:100::-;2508:13;2541:5;2534:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2454:100;:::o;3921:221::-;3997:7;4025:16;4033:7;4025;:16::i;:::-;4017:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4110:15;:24;4126:7;4110:24;;;;;;;;;;;;;;;;;;;;;4103:31;;3921:221;;;:::o;3451:404::-;3532:13;3548:23;3563:7;3548:14;:23::i;:::-;3532:39;;3596:5;3590:11;;:2;:11;;;;3582:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3676:5;3660:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;3685:44;3709:5;3716:12;:10;:12::i;:::-;3685:23;:44::i;:::-;3660:69;3652:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;3826:21;3835:2;3839:7;3826:8;:21::i;:::-;3521:334;3451:404;;:::o;2598:101:6:-;2642:7;2669:22;:12;:20;:22::i;:::-;2662:29;;2598:101;:::o;4811:305:5:-;4972:41;4991:12;:10;:12::i;:::-;5005:7;4972:18;:41::i;:::-;4964:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5080:28;5090:4;5096:2;5100:7;5080:9;:28::i;:::-;4811:305;;;:::o;1360:587:1:-;1431:14;1448:13;:11;:13::i;:::-;1431:30;;1479:12;;;;;;;;;;;1471:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;1550:2;1533:14;:19;1525:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1635:10;;1605:26;1616:14;1605:6;:10;;:26;;;;:::i;:::-;:40;;1597:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1734:4;1705:26;1716:14;1705:6;:10;;:26;;;;:::i;:::-;:33;1702:131;;;1785:9;1751:30;1766:14;1751:10;;:14;;:30;;;;:::i;:::-;:43;;1743:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1702:131;1846:9;1842:99;1861:14;1857:1;:18;1842:99;;;1895:35;1906:10;1927:1;1918:6;:10;;;;:::i;:::-;1895:9;:35::i;:::-;1877:3;;;;;:::i;:::-;;;;1842:99;;;;1421:526;1360:587;:::o;2083:107:6:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2175:7:6::1;2159:13;:23;;;;;;;;;;;;:::i;:::-;;2083:107:::0;:::o;1172:89:1:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1242:12:1::1;;;;;;;;;;;1241:13;1226:12;;:28;;;;;;;;;;;;;;;;;;1172:89::o:0;1957:183::-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2004:15:1::1;2022:21;2004:39;;2071:1;2061:7;:11;2053:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;2106:27;2116:7;:5;:7::i;:::-;2125;2106:9;:27::i;:::-;1994:146;1957:183::o:0;845:321::-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;927:11:1::1;941:13;:11;:13::i;:::-;927:27;;1002:10;;972:26;983:14;972:6;:10;;:26;;;;:::i;:::-;:40;;964:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;1073:6;1068:92;1089:14;1085:1;:18;1068:92;;;1124:25;1134:2;1147:1;1138:6;:10;;;;:::i;:::-;1124:9;:25::i;:::-;1105:3;;;;;:::i;:::-;;;;1068:92;;;;913:253;845:321:::0;;:::o;5187:151:5:-;5291:39;5308:4;5314:2;5318:7;5291:39;;;;;;;;;;;;:16;:39::i;:::-;5187:151;;;:::o;1025:634:6:-;1087:16;1115:23;1141:17;1151:6;1141:9;:17::i;:::-;1115:43;;1169:30;1216:15;1202:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1169:63;;1243:22;1268:1;1243:26;;1280:23;1320:301;1346:15;1328;:33;:76;;;;;1382:22;:12;:20;:22::i;:::-;1365:14;:39;1328:76;1320:301;;;1453:6;1426:33;;:23;1434:14;1426:7;:23::i;:::-;:33;;;1422:157;;;1513:14;1480:13;1494:15;1480:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;1546:17;;;;;:::i;:::-;;;;1422:157;1593:16;;;;;:::i;:::-;;;;1320:301;;;1638:13;1631:20;;;;;;1025:634;;;:::o;2148:239:5:-;2220:7;2240:13;2256:7;:16;2264:7;2256:16;;;;;;;;;;;;;;;;;;;;;2240:32;;2308:1;2291:19;;:5;:19;;;;2283:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2374:5;2367:12;;;2148:239;;;:::o;1878:208::-;1950:7;1995:1;1978:19;;:5;:19;;;;1970:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2062:9;:16;2072:5;2062:16;;;;;;;;;;;;;;;;2055:23;;1878:208;;;:::o;1746:148:12:-;1326:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1853:1:::1;1816:40;;1837:6;::::0;::::1;;;;;;;;1816:40;;;;;;;;;;;;1884:1;1867:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;1746:148::o:0;481:38:1:-;;;;:::o;1095:87:12:-;1141:7;1168:6;;;;;;;;;;;1161:13;;1095:87;:::o;1267::1:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1342:5:1::1;1329:10;:18;;;;1267:87:::0;:::o;2623:104:5:-;2679:13;2712:7;2705:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2623:104;:::o;4214:295::-;4329:12;:10;:12::i;:::-;4317:24;;:8;:24;;;;4309:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4429:8;4384:18;:32;4403:12;:10;:12::i;:::-;4384:32;;;;;;;;;;;;;;;:42;4417:8;4384:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4482:8;4453:48;;4468:12;:10;:12::i;:::-;4453:48;;;4492:8;4453:48;;;;;;:::i;:::-;;;;;;;;4214:295;;:::o;5409:285::-;5541:41;5560:12;:10;:12::i;:::-;5574:7;5541:18;:41::i;:::-;5533:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5647:39;5661:4;5667:2;5671:7;5680:5;5647:13;:39::i;:::-;5409:285;;;;:::o;2798:360::-;2871:13;2905:16;2913:7;2905;:16::i;:::-;2897:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2986:21;3010:10;:8;:10::i;:::-;2986:34;;3062:1;3044:7;3038:21;:25;:112;;;;;;;;;;;;;;;;;3103:7;3112:18;:7;:16;:18::i;:::-;3086:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3038:112;3031:119;;;2798:360;;;:::o;4580:164::-;4677:4;4701:18;:25;4720:5;4701:25;;;;;;;;;;;;;;;:35;4727:8;4701:35;;;;;;;;;;;;;;;;;;;;;;;;;4694:42;;4580:164;;;;:::o;568:24:1:-;;;;;;;;;;;;;:::o;2049:244:12:-;1326:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2158:1:::1;2138:22;;:8;:22;;;;2130:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2248:8;2219:38;;2240:6;::::0;::::1;;;;;;;;2219:38;;;;;;;;;;;;2277:8;2268:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2049:244:::0;:::o;525:32:1:-;;;;:::o;787:157:4:-;872:4;911:25;896:40;;;:11;:40;;;;889:47;;787:157;;;:::o;7161:127:5:-;7226:4;7278:1;7250:30;;:7;:16;7258:7;7250:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7243:37;;7161:127;;;:::o;601:98:2:-;654:7;681:10;674:17;;601:98;:::o;11045:174:5:-;11147:2;11120:15;:24;11136:7;11120:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11203:7;11199:2;11165:46;;11174:23;11189:7;11174:14;:23::i;:::-;11165:46;;;;;;;;;;;;11045:174;;:::o;848:114:3:-;913:7;940;:14;;;933:21;;848:114;;;:::o;7455:355:5:-;7548:4;7573:16;7581:7;7573;:16::i;:::-;7565:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7649:13;7665:23;7680:7;7665:14;:23::i;:::-;7649:39;;7718:5;7707:16;;:7;:16;;;:51;;;;7751:7;7727:31;;:20;7739:7;7727:11;:20::i;:::-;:31;;;7707:51;:94;;;;7762:39;7786:5;7793:7;7762:23;:39::i;:::-;7707:94;7699:103;;;7455:355;;;;:::o;10383:544::-;10508:4;10481:31;;:23;10496:7;10481:14;:23::i;:::-;:31;;;10473:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10591:1;10577:16;;:2;:16;;;;10569:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10647:39;10668:4;10674:2;10678:7;10647:20;:39::i;:::-;10751:29;10768:1;10772:7;10751:8;:29::i;:::-;10812:1;10793:9;:15;10803:4;10793:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10841:1;10824:9;:13;10834:2;10824:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10872:2;10853:7;:16;10861:7;10853:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10911:7;10907:2;10892:27;;10901:4;10892:27;;;;;;;;;;;;10383:544;;;:::o;2833:98:13:-;2891:7;2922:1;2918;:5;;;;:::i;:::-;2911:12;;2833:98;;;;:::o;3571:::-;3629:7;3660:1;3656;:5;;;;:::i;:::-;3649:12;;3571:98;;;;:::o;8152:110:5:-;8228:26;8238:2;8242:7;8228:26;;;;;;;;;;;;:9;:26::i;:::-;8152:110;;:::o;2150:188:1:-;2223:12;2241:8;:13;;2263:7;2241:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2222:54;;;2294:7;2286:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;2212:126;2150:188;;:::o;6576:272:5:-;6690:28;6700:4;6706:2;6710:7;6690:9;:28::i;:::-;6737:48;6760:4;6766:2;6770:7;6779:5;6737:22;:48::i;:::-;6729:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6576:272;;;;:::o;1909:114:6:-;1969:13;2002;1995:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1909:114;:::o;284:723:14:-;340:13;570:1;561:5;:10;557:53;;;588:10;;;;;;;;;;;;;;;;;;;;;557:53;620:12;635:5;620:20;;651:14;676:78;691:1;683:4;:9;676:78;;709:8;;;;;:::i;:::-;;;;740:2;732:10;;;;;:::i;:::-;;;676:78;;;764:19;796:6;786:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;764:39;;814:154;830:1;821:5;:10;814:154;;858:1;848:11;;;;;:::i;:::-;;;925:2;917:5;:10;;;;:::i;:::-;904:2;:24;;;;:::i;:::-;891:39;;874:6;881;874:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;954:2;945:11;;;;;:::i;:::-;;;814:154;;;992:6;978:21;;;;;284:723;;;;:::o;13240:93:5:-;;;;:::o;8489:250::-;8585:18;8591:2;8595:7;8585:5;:18::i;:::-;8622:54;8653:1;8657:2;8661:7;8670:5;8622:22;:54::i;:::-;8614:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;8489:250;;;:::o;11784:843::-;11905:4;11931:15;:2;:13;;;:15::i;:::-;11927:693;;;11983:2;11967:36;;;12004:12;:10;:12::i;:::-;12018:4;12024:7;12033:5;11967:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11963:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12230:1;12213:6;:13;:18;12209:341;;;12256:60;;;;;;;;;;:::i;:::-;;;;;;;;12209:341;12500:6;12494:13;12485:6;12481:2;12477:15;12470:38;11963:602;12100:45;;;12090:55;;;:6;:55;;;;12083:62;;;;;11927:693;12604:4;12597:11;;11784:843;;;;;;;:::o;2291:148:6:-;2372:24;2384:2;2388:7;2372:11;:24::i;:::-;2407;:12;:22;:24::i;:::-;2291:148;;:::o;743:422:0:-;803:4;1011:12;1122:7;1110:20;1102:28;;1156:1;1149:4;:8;1142:15;;;743:422;;;:::o;9075:382:5:-;9169:1;9155:16;;:2;:16;;;;9147:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9228:16;9236:7;9228;:16::i;:::-;9227:17;9219:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9290:45;9319:1;9323:2;9327:7;9290:20;:45::i;:::-;9365:1;9348:9;:13;9358:2;9348:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9396:2;9377:7;:16;9385:7;9377:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9441:7;9437:2;9416:33;;9433:1;9416:33;;;;;;;;;;;;9075:382;;:::o;970:127:3:-;1077:1;1059:7;:14;;;:19;;;;;;;;;;;970:127;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:15:-;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:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::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:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:179::-;7227:10;7248:46;7290:3;7282:6;7248:46;:::i;:::-;7326:4;7321:3;7317:14;7303:28;;7158:179;;;;:::o;7343:118::-;7430:24;7448:5;7430:24;:::i;:::-;7425:3;7418:37;7343:118;;:::o;7497:732::-;7616:3;7645:54;7693:5;7645:54;:::i;:::-;7715:86;7794:6;7789:3;7715:86;:::i;:::-;7708:93;;7825:56;7875:5;7825:56;:::i;:::-;7904:7;7935:1;7920:284;7945:6;7942:1;7939:13;7920:284;;;8021:6;8015:13;8048:63;8107:3;8092:13;8048:63;:::i;:::-;8041:70;;8134:60;8187:6;8134:60;:::i;:::-;8124:70;;7980:224;7967:1;7964;7960:9;7955:14;;7920:284;;;7924:14;8220:3;8213:10;;7621:608;;;7497:732;;;;:::o;8235:109::-;8316:21;8331:5;8316:21;:::i;:::-;8311:3;8304:34;8235:109;;:::o;8350:360::-;8436:3;8464:38;8496:5;8464:38;:::i;:::-;8518:70;8581:6;8576:3;8518:70;:::i;:::-;8511:77;;8597:52;8642:6;8637:3;8630:4;8623:5;8619:16;8597:52;:::i;:::-;8674:29;8696:6;8674:29;:::i;:::-;8669:3;8665:39;8658:46;;8440:270;8350:360;;;;:::o;8716:364::-;8804:3;8832:39;8865:5;8832:39;:::i;:::-;8887:71;8951:6;8946:3;8887:71;:::i;:::-;8880:78;;8967:52;9012:6;9007:3;9000:4;8993:5;8989:16;8967:52;:::i;:::-;9044:29;9066:6;9044:29;:::i;:::-;9039:3;9035:39;9028:46;;8808:272;8716:364;;;;:::o;9086:377::-;9192:3;9220:39;9253:5;9220:39;:::i;:::-;9275:89;9357:6;9352:3;9275:89;:::i;:::-;9268:96;;9373:52;9418:6;9413:3;9406:4;9399:5;9395:16;9373:52;:::i;:::-;9450:6;9445:3;9441:16;9434:23;;9196:267;9086:377;;;;:::o;9469:366::-;9611:3;9632:67;9696:2;9691:3;9632:67;:::i;:::-;9625:74;;9708:93;9797:3;9708:93;:::i;:::-;9826:2;9821:3;9817:12;9810:19;;9469:366;;;:::o;9841:::-;9983:3;10004:67;10068:2;10063:3;10004:67;:::i;:::-;9997:74;;10080:93;10169:3;10080:93;:::i;:::-;10198:2;10193:3;10189:12;10182:19;;9841:366;;;:::o;10213:::-;10355:3;10376:67;10440:2;10435:3;10376:67;:::i;:::-;10369:74;;10452:93;10541:3;10452:93;:::i;:::-;10570:2;10565:3;10561:12;10554:19;;10213:366;;;:::o;10585:::-;10727:3;10748:67;10812:2;10807:3;10748:67;:::i;:::-;10741:74;;10824:93;10913:3;10824:93;:::i;:::-;10942:2;10937:3;10933:12;10926:19;;10585:366;;;:::o;10957:::-;11099:3;11120:67;11184:2;11179:3;11120:67;:::i;:::-;11113:74;;11196:93;11285:3;11196:93;:::i;:::-;11314:2;11309:3;11305:12;11298:19;;10957:366;;;:::o;11329:::-;11471:3;11492:67;11556:2;11551:3;11492:67;:::i;:::-;11485:74;;11568:93;11657:3;11568:93;:::i;:::-;11686:2;11681:3;11677:12;11670:19;;11329:366;;;:::o;11701:::-;11843:3;11864:67;11928:2;11923:3;11864:67;:::i;:::-;11857:74;;11940:93;12029:3;11940:93;:::i;:::-;12058:2;12053:3;12049:12;12042:19;;11701:366;;;:::o;12073:::-;12215:3;12236:67;12300:2;12295:3;12236:67;:::i;:::-;12229:74;;12312:93;12401:3;12312:93;:::i;:::-;12430:2;12425:3;12421:12;12414:19;;12073:366;;;:::o;12445:::-;12587:3;12608:67;12672:2;12667:3;12608:67;:::i;:::-;12601:74;;12684:93;12773:3;12684:93;:::i;:::-;12802:2;12797:3;12793:12;12786:19;;12445:366;;;:::o;12817:::-;12959:3;12980:67;13044:2;13039:3;12980:67;:::i;:::-;12973:74;;13056:93;13145:3;13056:93;:::i;:::-;13174:2;13169:3;13165:12;13158:19;;12817:366;;;:::o;13189:::-;13331:3;13352:67;13416:2;13411:3;13352:67;:::i;:::-;13345:74;;13428:93;13517:3;13428:93;:::i;:::-;13546:2;13541:3;13537:12;13530:19;;13189:366;;;:::o;13561:::-;13703:3;13724:67;13788:2;13783:3;13724:67;:::i;:::-;13717:74;;13800:93;13889:3;13800:93;:::i;:::-;13918:2;13913:3;13909:12;13902:19;;13561:366;;;:::o;13933:::-;14075:3;14096:67;14160:2;14155:3;14096:67;:::i;:::-;14089:74;;14172:93;14261:3;14172:93;:::i;:::-;14290:2;14285:3;14281:12;14274:19;;13933:366;;;:::o;14305:::-;14447:3;14468:67;14532:2;14527:3;14468:67;:::i;:::-;14461:74;;14544:93;14633:3;14544:93;:::i;:::-;14662:2;14657:3;14653:12;14646:19;;14305:366;;;:::o;14677:::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:::-;15191:3;15212:67;15276:2;15271:3;15212:67;:::i;:::-;15205:74;;15288:93;15377:3;15288:93;:::i;:::-;15406:2;15401:3;15397:12;15390:19;;15049:366;;;:::o;15421:::-;15563:3;15584:67;15648:2;15643:3;15584:67;:::i;:::-;15577:74;;15660:93;15749:3;15660:93;:::i;:::-;15778:2;15773:3;15769:12;15762:19;;15421:366;;;:::o;15793:::-;15935:3;15956:67;16020:2;16015:3;15956:67;:::i;:::-;15949:74;;16032:93;16121:3;16032:93;:::i;:::-;16150:2;16145:3;16141:12;16134:19;;15793:366;;;:::o;16165:::-;16307:3;16328:67;16392:2;16387:3;16328:67;:::i;:::-;16321:74;;16404:93;16493:3;16404:93;:::i;:::-;16522:2;16517:3;16513:12;16506:19;;16165:366;;;:::o;16537:::-;16679:3;16700:67;16764:2;16759:3;16700:67;:::i;:::-;16693:74;;16776:93;16865:3;16776:93;:::i;:::-;16894:2;16889:3;16885:12;16878:19;;16537:366;;;:::o;16909:::-;17051:3;17072:67;17136:2;17131:3;17072:67;:::i;:::-;17065:74;;17148:93;17237:3;17148:93;:::i;:::-;17266:2;17261:3;17257:12;17250:19;;16909:366;;;:::o;17281:::-;17423:3;17444:67;17508:2;17503:3;17444:67;:::i;:::-;17437:74;;17520:93;17609:3;17520:93;:::i;:::-;17638:2;17633:3;17629:12;17622:19;;17281:366;;;:::o;17653:398::-;17812:3;17833:83;17914:1;17909:3;17833:83;:::i;:::-;17826:90;;17925:93;18014:3;17925:93;:::i;:::-;18043:1;18038:3;18034:11;18027:18;;17653:398;;;:::o;18057:366::-;18199:3;18220:67;18284:2;18279:3;18220:67;:::i;:::-;18213:74;;18296:93;18385:3;18296:93;:::i;:::-;18414:2;18409:3;18405:12;18398:19;;18057:366;;;:::o;18429:108::-;18506:24;18524:5;18506:24;:::i;:::-;18501:3;18494:37;18429:108;;:::o;18543:118::-;18630:24;18648:5;18630:24;:::i;:::-;18625:3;18618:37;18543:118;;:::o;18667:435::-;18847:3;18869:95;18960:3;18951:6;18869:95;:::i;:::-;18862:102;;18981:95;19072:3;19063:6;18981:95;:::i;:::-;18974:102;;19093:3;19086:10;;18667:435;;;;;:::o;19108:379::-;19292:3;19314:147;19457:3;19314:147;:::i;:::-;19307:154;;19478:3;19471:10;;19108:379;;;:::o;19493:222::-;19586:4;19624:2;19613:9;19609:18;19601:26;;19637:71;19705:1;19694:9;19690:17;19681:6;19637:71;:::i;:::-;19493:222;;;;:::o;19721:640::-;19916:4;19954:3;19943:9;19939:19;19931:27;;19968:71;20036:1;20025:9;20021:17;20012:6;19968:71;:::i;:::-;20049:72;20117:2;20106:9;20102:18;20093:6;20049:72;:::i;:::-;20131;20199:2;20188:9;20184:18;20175:6;20131:72;:::i;:::-;20250:9;20244:4;20240:20;20235:2;20224:9;20220:18;20213:48;20278:76;20349:4;20340:6;20278:76;:::i;:::-;20270:84;;19721:640;;;;;;;:::o;20367:373::-;20510:4;20548:2;20537:9;20533:18;20525:26;;20597:9;20591:4;20587:20;20583:1;20572:9;20568:17;20561:47;20625:108;20728:4;20719:6;20625:108;:::i;:::-;20617:116;;20367:373;;;;:::o;20746:210::-;20833:4;20871:2;20860:9;20856:18;20848:26;;20884:65;20946:1;20935:9;20931:17;20922:6;20884:65;:::i;:::-;20746:210;;;;:::o;20962:313::-;21075:4;21113:2;21102:9;21098:18;21090:26;;21162:9;21156:4;21152:20;21148:1;21137:9;21133:17;21126:47;21190:78;21263:4;21254:6;21190:78;:::i;:::-;21182:86;;20962:313;;;;:::o;21281:419::-;21447:4;21485:2;21474:9;21470:18;21462:26;;21534:9;21528:4;21524:20;21520:1;21509:9;21505:17;21498:47;21562:131;21688:4;21562:131;:::i;:::-;21554:139;;21281:419;;;:::o;21706:::-;21872:4;21910:2;21899:9;21895:18;21887:26;;21959:9;21953:4;21949:20;21945:1;21934:9;21930:17;21923:47;21987:131;22113:4;21987:131;:::i;:::-;21979:139;;21706:419;;;:::o;22131:::-;22297:4;22335:2;22324:9;22320:18;22312:26;;22384:9;22378:4;22374:20;22370:1;22359:9;22355:17;22348:47;22412:131;22538:4;22412:131;:::i;:::-;22404:139;;22131:419;;;:::o;22556:::-;22722:4;22760:2;22749:9;22745:18;22737:26;;22809:9;22803:4;22799:20;22795:1;22784:9;22780:17;22773:47;22837:131;22963:4;22837:131;:::i;:::-;22829:139;;22556:419;;;:::o;22981:::-;23147:4;23185:2;23174:9;23170:18;23162:26;;23234:9;23228:4;23224:20;23220:1;23209:9;23205:17;23198:47;23262:131;23388:4;23262:131;:::i;:::-;23254:139;;22981:419;;;:::o;23406:::-;23572:4;23610:2;23599:9;23595:18;23587:26;;23659:9;23653:4;23649:20;23645:1;23634:9;23630:17;23623:47;23687:131;23813:4;23687:131;:::i;:::-;23679:139;;23406:419;;;:::o;23831:::-;23997:4;24035:2;24024:9;24020:18;24012:26;;24084:9;24078:4;24074:20;24070:1;24059:9;24055:17;24048:47;24112:131;24238:4;24112:131;:::i;:::-;24104:139;;23831:419;;;:::o;24256:::-;24422:4;24460:2;24449:9;24445:18;24437:26;;24509:9;24503:4;24499:20;24495:1;24484:9;24480:17;24473:47;24537:131;24663:4;24537:131;:::i;:::-;24529:139;;24256:419;;;:::o;24681:::-;24847:4;24885:2;24874:9;24870:18;24862:26;;24934:9;24928:4;24924:20;24920:1;24909:9;24905:17;24898:47;24962:131;25088:4;24962:131;:::i;:::-;24954:139;;24681:419;;;:::o;25106:::-;25272:4;25310:2;25299:9;25295:18;25287:26;;25359:9;25353:4;25349:20;25345:1;25334:9;25330:17;25323:47;25387:131;25513:4;25387:131;:::i;:::-;25379:139;;25106:419;;;:::o;25531:::-;25697:4;25735:2;25724:9;25720:18;25712:26;;25784:9;25778:4;25774:20;25770:1;25759:9;25755:17;25748:47;25812:131;25938:4;25812:131;:::i;:::-;25804:139;;25531:419;;;:::o;25956:::-;26122:4;26160:2;26149:9;26145:18;26137:26;;26209:9;26203:4;26199:20;26195:1;26184:9;26180:17;26173:47;26237:131;26363:4;26237:131;:::i;:::-;26229:139;;25956:419;;;:::o;26381:::-;26547:4;26585:2;26574:9;26570:18;26562:26;;26634:9;26628:4;26624:20;26620:1;26609:9;26605:17;26598:47;26662:131;26788:4;26662:131;:::i;:::-;26654:139;;26381:419;;;:::o;26806:::-;26972:4;27010:2;26999:9;26995:18;26987:26;;27059:9;27053:4;27049:20;27045:1;27034:9;27030:17;27023:47;27087:131;27213:4;27087:131;:::i;:::-;27079:139;;26806:419;;;:::o;27231:::-;27397:4;27435:2;27424:9;27420:18;27412:26;;27484:9;27478:4;27474:20;27470:1;27459:9;27455:17;27448:47;27512:131;27638:4;27512:131;:::i;:::-;27504:139;;27231:419;;;:::o;27656:::-;27822:4;27860:2;27849:9;27845:18;27837:26;;27909:9;27903:4;27899:20;27895:1;27884:9;27880:17;27873:47;27937:131;28063:4;27937:131;:::i;:::-;27929:139;;27656:419;;;:::o;28081:::-;28247:4;28285:2;28274:9;28270:18;28262:26;;28334:9;28328:4;28324:20;28320:1;28309:9;28305:17;28298:47;28362:131;28488:4;28362:131;:::i;:::-;28354:139;;28081:419;;;:::o;28506:::-;28672:4;28710:2;28699:9;28695:18;28687:26;;28759:9;28753:4;28749:20;28745:1;28734:9;28730:17;28723:47;28787:131;28913:4;28787:131;:::i;:::-;28779:139;;28506:419;;;:::o;28931:::-;29097:4;29135:2;29124:9;29120:18;29112:26;;29184:9;29178:4;29174:20;29170:1;29159:9;29155:17;29148:47;29212:131;29338:4;29212:131;:::i;:::-;29204:139;;28931:419;;;:::o;29356:::-;29522:4;29560:2;29549:9;29545:18;29537:26;;29609:9;29603:4;29599:20;29595:1;29584:9;29580:17;29573:47;29637:131;29763:4;29637:131;:::i;:::-;29629:139;;29356:419;;;:::o;29781:::-;29947:4;29985:2;29974:9;29970:18;29962:26;;30034:9;30028:4;30024:20;30020:1;30009:9;30005:17;29998:47;30062:131;30188:4;30062:131;:::i;:::-;30054:139;;29781:419;;;:::o;30206:::-;30372:4;30410:2;30399:9;30395:18;30387:26;;30459:9;30453:4;30449:20;30445:1;30434:9;30430:17;30423:47;30487:131;30613:4;30487:131;:::i;:::-;30479:139;;30206:419;;;:::o;30631:::-;30797:4;30835:2;30824:9;30820:18;30812:26;;30884:9;30878:4;30874:20;30870:1;30859:9;30855:17;30848:47;30912:131;31038:4;30912:131;:::i;:::-;30904:139;;30631:419;;;:::o;31056:222::-;31149:4;31187:2;31176:9;31172:18;31164:26;;31200:71;31268:1;31257:9;31253:17;31244:6;31200:71;:::i;:::-;31056:222;;;;:::o;31284:129::-;31318:6;31345:20;;:::i;:::-;31335:30;;31374:33;31402:4;31394:6;31374:33;:::i;:::-;31284:129;;;:::o;31419:75::-;31452:6;31485:2;31479:9;31469:19;;31419:75;:::o;31500:307::-;31561:4;31651:18;31643:6;31640:30;31637:56;;;31673:18;;:::i;:::-;31637:56;31711:29;31733:6;31711:29;:::i;:::-;31703:37;;31795:4;31789;31785:15;31777:23;;31500:307;;;:::o;31813:308::-;31875:4;31965:18;31957:6;31954:30;31951:56;;;31987:18;;:::i;:::-;31951:56;32025:29;32047:6;32025:29;:::i;:::-;32017:37;;32109:4;32103;32099:15;32091:23;;31813:308;;;:::o;32127:132::-;32194:4;32217:3;32209:11;;32247:4;32242:3;32238:14;32230:22;;32127:132;;;:::o;32265:114::-;32332:6;32366:5;32360:12;32350:22;;32265:114;;;:::o;32385:98::-;32436:6;32470:5;32464:12;32454:22;;32385:98;;;:::o;32489:99::-;32541:6;32575:5;32569:12;32559:22;;32489:99;;;:::o;32594:113::-;32664:4;32696;32691:3;32687:14;32679:22;;32594:113;;;:::o;32713:184::-;32812:11;32846:6;32841:3;32834:19;32886:4;32881:3;32877:14;32862:29;;32713:184;;;;:::o;32903:168::-;32986:11;33020:6;33015:3;33008:19;33060:4;33055:3;33051:14;33036:29;;32903:168;;;;:::o;33077:147::-;33178:11;33215:3;33200:18;;33077:147;;;;:::o;33230:169::-;33314:11;33348:6;33343:3;33336:19;33388:4;33383:3;33379:14;33364:29;;33230:169;;;;:::o;33405:148::-;33507:11;33544:3;33529:18;;33405:148;;;;:::o;33559:305::-;33599:3;33618:20;33636:1;33618:20;:::i;:::-;33613:25;;33652:20;33670:1;33652:20;:::i;:::-;33647:25;;33806:1;33738:66;33734:74;33731:1;33728:81;33725:107;;;33812:18;;:::i;:::-;33725:107;33856:1;33853;33849:9;33842:16;;33559:305;;;;:::o;33870:185::-;33910:1;33927:20;33945:1;33927:20;:::i;:::-;33922:25;;33961:20;33979:1;33961:20;:::i;:::-;33956:25;;34000:1;33990:35;;34005:18;;:::i;:::-;33990:35;34047:1;34044;34040:9;34035:14;;33870:185;;;;:::o;34061:348::-;34101:7;34124:20;34142:1;34124:20;:::i;:::-;34119:25;;34158:20;34176:1;34158:20;:::i;:::-;34153:25;;34346:1;34278:66;34274:74;34271:1;34268:81;34263:1;34256:9;34249:17;34245:105;34242:131;;;34353:18;;:::i;:::-;34242:131;34401:1;34398;34394:9;34383:20;;34061:348;;;;:::o;34415:191::-;34455:4;34475:20;34493:1;34475:20;:::i;:::-;34470:25;;34509:20;34527:1;34509:20;:::i;:::-;34504:25;;34548:1;34545;34542:8;34539:34;;;34553:18;;:::i;:::-;34539:34;34598:1;34595;34591:9;34583:17;;34415:191;;;;:::o;34612:96::-;34649:7;34678:24;34696:5;34678:24;:::i;:::-;34667:35;;34612:96;;;:::o;34714:90::-;34748:7;34791:5;34784:13;34777:21;34766:32;;34714:90;;;:::o;34810:149::-;34846:7;34886:66;34879:5;34875:78;34864:89;;34810:149;;;:::o;34965:126::-;35002:7;35042:42;35035:5;35031:54;35020:65;;34965:126;;;:::o;35097:77::-;35134:7;35163:5;35152:16;;35097:77;;;:::o;35180:154::-;35264:6;35259:3;35254;35241:30;35326:1;35317:6;35312:3;35308:16;35301:27;35180:154;;;:::o;35340:307::-;35408:1;35418:113;35432:6;35429:1;35426:13;35418:113;;;35517:1;35512:3;35508:11;35502:18;35498:1;35493:3;35489:11;35482:39;35454:2;35451:1;35447:10;35442:15;;35418:113;;;35549:6;35546:1;35543:13;35540:101;;;35629:1;35620:6;35615:3;35611:16;35604:27;35540:101;35389:258;35340:307;;;:::o;35653:320::-;35697:6;35734:1;35728:4;35724:12;35714:22;;35781:1;35775:4;35771:12;35802:18;35792:81;;35858:4;35850:6;35846:17;35836:27;;35792:81;35920:2;35912:6;35909:14;35889:18;35886:38;35883:84;;;35939:18;;:::i;:::-;35883:84;35704:269;35653:320;;;:::o;35979:281::-;36062:27;36084:4;36062:27;:::i;:::-;36054:6;36050:40;36192:6;36180:10;36177:22;36156:18;36144:10;36141:34;36138:62;36135:88;;;36203:18;;:::i;:::-;36135:88;36243:10;36239:2;36232:22;36022:238;35979:281;;:::o;36266:233::-;36305:3;36328:24;36346:5;36328:24;:::i;:::-;36319:33;;36374:66;36367:5;36364:77;36361:103;;;36444:18;;:::i;:::-;36361:103;36491:1;36484:5;36480:13;36473:20;;36266:233;;;:::o;36505:176::-;36537:1;36554:20;36572:1;36554:20;:::i;:::-;36549:25;;36588:20;36606:1;36588:20;:::i;:::-;36583:25;;36627:1;36617:35;;36632:18;;:::i;:::-;36617:35;36673:1;36670;36666:9;36661:14;;36505:176;;;;:::o;36687:180::-;36735:77;36732:1;36725:88;36832:4;36829:1;36822:15;36856:4;36853:1;36846:15;36873:180;36921:77;36918:1;36911:88;37018:4;37015:1;37008:15;37042:4;37039:1;37032:15;37059:180;37107:77;37104:1;37097:88;37204:4;37201:1;37194:15;37228:4;37225:1;37218:15;37245:180;37293:77;37290:1;37283:88;37390:4;37387:1;37380:15;37414:4;37411:1;37404:15;37431:180;37479:77;37476:1;37469:88;37576:4;37573:1;37566:15;37600:4;37597:1;37590:15;37617:117;37726:1;37723;37716:12;37740:117;37849:1;37846;37839:12;37863:117;37972:1;37969;37962:12;37986:117;38095:1;38092;38085:12;38109:102;38150:6;38201:2;38197:7;38192:2;38185:5;38181:14;38177:28;38167:38;;38109:102;;;:::o;38217:237::-;38357:34;38353:1;38345:6;38341:14;38334:58;38426:20;38421:2;38413:6;38409:15;38402:45;38217:237;:::o;38460:225::-;38600:34;38596:1;38588:6;38584:14;38577:58;38669:8;38664:2;38656:6;38652:15;38645:33;38460:225;:::o;38691:178::-;38831:30;38827:1;38819:6;38815:14;38808:54;38691:178;:::o;38875:228::-;39015:34;39011:1;39003:6;38999:14;38992:58;39084:11;39079:2;39071:6;39067:15;39060:36;38875:228;:::o;39109:229::-;39249:34;39245:1;39237:6;39233:14;39226:58;39318:12;39313:2;39305:6;39301:15;39294:37;39109:229;:::o;39344:223::-;39484:34;39480:1;39472:6;39468:14;39461:58;39553:6;39548:2;39540:6;39536:15;39529:31;39344:223;:::o;39573:175::-;39713:27;39709:1;39701:6;39697:14;39690:51;39573:175;:::o;39754:181::-;39894:33;39890:1;39882:6;39878:14;39871:57;39754:181;:::o;39941:169::-;40081:21;40077:1;40069:6;40065:14;40058:45;39941:169;:::o;40116:231::-;40256:34;40252:1;40244:6;40240:14;40233:58;40325:14;40320:2;40312:6;40308:15;40301:39;40116:231;:::o;40353:243::-;40493:34;40489:1;40481:6;40477:14;40470:58;40562:26;40557:2;40549:6;40545:15;40538:51;40353:243;:::o;40602:229::-;40742:34;40738:1;40730:6;40726:14;40719:58;40811:12;40806:2;40798:6;40794:15;40787:37;40602:229;:::o;40837:228::-;40977:34;40973:1;40965:6;40961:14;40954:58;41046:11;41041:2;41033:6;41029:15;41022:36;40837:228;:::o;41071:182::-;41211:34;41207:1;41199:6;41195:14;41188:58;41071:182;:::o;41259:180::-;41399:32;41395:1;41387:6;41383:14;41376:56;41259:180;:::o;41445:231::-;41585:34;41581:1;41573:6;41569:14;41562:58;41654:14;41649:2;41641:6;41637:15;41630:39;41445:231;:::o;41682:169::-;41822:21;41818:1;41810:6;41806:14;41799:45;41682:169;:::o;41857:182::-;41997:34;41993:1;41985:6;41981:14;41974:58;41857:182;:::o;42045:228::-;42185:34;42181:1;42173:6;42169:14;42162:58;42254:11;42249:2;42241:6;42237:15;42230:36;42045:228;:::o;42279:234::-;42419:34;42415:1;42407:6;42403:14;42396:58;42488:17;42483:2;42475:6;42471:15;42464:42;42279:234;:::o;42519:175::-;42659:27;42655:1;42647:6;42643:14;42636:51;42519:175;:::o;42700:220::-;42840:34;42836:1;42828:6;42824:14;42817:58;42909:3;42904:2;42896:6;42892:15;42885:28;42700:220;:::o;42926:114::-;;:::o;43046:236::-;43186:34;43182:1;43174:6;43170:14;43163:58;43255:19;43250:2;43242:6;43238:15;43231:44;43046:236;:::o;43288:122::-;43361:24;43379:5;43361:24;:::i;:::-;43354:5;43351:35;43341:63;;43400:1;43397;43390:12;43341:63;43288:122;:::o;43416:116::-;43486:21;43501:5;43486:21;:::i;:::-;43479:5;43476:32;43466:60;;43522:1;43519;43512:12;43466:60;43416:116;:::o;43538:120::-;43610:23;43627:5;43610:23;:::i;:::-;43603:5;43600:34;43590:62;;43648:1;43645;43638:12;43590:62;43538:120;:::o;43664:122::-;43737:24;43755:5;43737:24;:::i;:::-;43730:5;43727:35;43717:63;;43776:1;43773;43766:12;43717:63;43664:122;:::o

Swarm Source

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