ETH Price: $2,276.46 (+1.94%)

Token

Red Panda Pals (RPP)
 

Overview

Max Total Supply

1,008 RPP

Holders

93

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
draz.eth
Balance
1 RPP
0x09591175507fabbe92a6b4b6b3db1a49d48e1d3e
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:
RPP

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 12 of 13: RedPandaPals.sol
// File contracts/RPCC.sol

//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@///////////////////@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@/////*********************////(@@@@@@@@@@@@@@
//@@@@@@@@@@@@///*******,,,,,,,,,,,,,,,,,*******///@@@@@@@@@@@
//@@@@@@@@@///*****,,,,,.................,,,,,*****///@@@@@@@@
//@@@@@@@///***,,,,......               .....,,,,,***///@@@@@@
//@@@@@///,. %%%%%%&.         /%&%*         .&%%%%%% .,//(@@@@
//@@@@//*,.%#          &%###############%(          &%.,*//@@@
//@@@//**. %   &&&&###########################&&&&   % ,**//@@
//@@//***. %   &&###############################@&   % .***//@
//@///***. %   ###################################   % .***//@
//@//***,. %& ###########  (##########  ########### &% ,,***//
//@//***,,./%############    #######    ############% .,,***//
//@//***,. %###    %%@  @@@#%#######*#%  @@@%&    ###% .,***//
//@(//**. %       %%%%@@@@%           %@@@@%%%%      .% .**//@
//@@//*, %%      %%%%#                     %%%%%      %%.,*//@
//@@@//**. %%   #%%%         @@@@@@&         %%%&   %% .**//@@
//@@@@//***,./%&#%%%            @            %%%&&%..,***//@@@
//@@@@@///***,.  %%%%      .@&%@@&/@@       %%%% ..,***///@@@@
//@@@@@@@///****,..  %%%                 %%%  .,,****///@@@@@@
//@@@@@@@@@///*****,,,...     /&&&/     ...,,,*****///@@@@@@@@
//@@@@@@@@@@@(///******,,,,,,,,,,,,,,,,,,,******///@@@@@@@@@@@
//@@@@@@@@@@@@@@@////***********************////@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@/////////////////////@@@@@@@@@@@@@@@@@@@


//Special thank you to the Cool Cats group for their guidance.
//Check out their amazing project at https://www.coolcatsnft.com/

//NFT Design Credit to GC Creative Co. Visit: http://gccreativeco.com.au/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import './ERC721Enumerable.sol';
import './Ownable.sol';

contract RPP is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI;
    uint256 private _reserved = 50;
    uint256 private _price = 0.02 ether;
    bool public _paused = true;

    // withdraw addresses
    address tArt = 0xbD2efA26DAFa5E6238faABe98Af06548aDe8806C;
    address tCharity = 0xC44FF08425375097e4337b48151499280c25268c;
    address tDev = 0xA27a7A5de203B0cbBA4cf2E7c7bcfA490B01fBE0;

    constructor(string memory baseURI) ERC721("Red Panda Pals", "RPP")  {
        setBaseURI(baseURI);

        // Testing the Safe Mint Function upon Deployment
        _safeMint( tArt, 0);
        _safeMint( tDev, 1);
    }

    function adopt(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !_paused,                              "Red Pandas are not quite ready yet for adoption" );
        require( num < 11,                              "Share your love of Red Pandas with others, there is a limit of 10" );
        require( supply + num < 10000 - _reserved,      "There are only so many Red Pandas left in the wild" );
        require( msg.value >= _price * num,             "Please re-evaluate your Ether sent" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    // Just in case Eth acts up
    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _reserved, "Exceeds reserved Red Pandas supply" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        _reserved -= _amount;
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _art = address(this).balance / 20;
        uint256 _dev = address(this).balance / 25;
        uint256 _charity = address(this).balance - _art - _dev;
        require(payable(tArt).send(_art));
        require(payable(tDev).send(_dev));
        require(payable(tCharity).send(_charity));
    }
}

File 1 of 13: 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 2 of 13: 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 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 13: 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 7 of 13: 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 8 of 13: 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 9 of 13: 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 10 of 13: 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 11 of 13: 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 13 of 13: 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":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"adopt","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526032600c5566470de4df820000600d556001600e60006101000a81548160ff02191690831515021790555073bd2efa26dafa5e6238faabe98af06548ade8806c600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c44ff08425375097e4337b48151499280c25268c600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a27a7a5de203b0cbba4cf2e7c7bcfa490b01fbe0601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013b57600080fd5b506040516200588238038062005882833981810160405281019062000161919062000fca565b6040518060400160405280600e81526020017f5265642050616e64612050616c730000000000000000000000000000000000008152506040518060400160405280600381526020017f52505000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001e592919062000e65565b508060019080519060200190620001fe92919062000e65565b5050506000620002136200033460201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002c3816200033c60201b60201c565b620002f8600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000620003e760201b60201c565b6200032d601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620003e760201b60201c565b50620015c0565b600033905090565b6200034c6200033460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003726200040d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c290620012e4565b60405180910390fd5b80600b9080519060200190620003e392919062000e65565b5050565b620004098282604051806020016040528060008152506200043760201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004498383620004a560201b60201c565b6200045e60008484846200068b60201b60201c565b620004a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000497906200125c565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000518576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050f90620012c2565b60405180910390fd5b62000529816200084560201b60201c565b156200056c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000563906200127e565b60405180910390fd5b6200058060008383620008b160201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005d291906200139a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006b98473ffffffffffffffffffffffffffffffffffffffff16620009f860201b62001aa51760201c565b1562000838578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006eb6200033460201b60201c565b8786866040518563ffffffff1660e01b81526004016200070f949392919062001208565b602060405180830381600087803b1580156200072a57600080fd5b505af19250505080156200075e57506040513d601f19601f820116820180604052508101906200075b919062000f9e565b60015b620007e7573d806000811462000791576040519150601f19603f3d011682016040523d82523d6000602084013e62000796565b606091505b50600081511415620007df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007d6906200125c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200083d565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620008c983838362000a0b60201b62001ab81760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200091657620009108162000a1060201b60201c565b6200095e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200095d576200095c838262000a5960201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009ab57620009a58162000bd660201b60201c565b620009f3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620009f257620009f1828262000d1e60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000a738462000daa60201b62000e1a1760201c565b62000a7f9190620013f7565b905060006007600084815260200190815260200160002054905081811462000b65576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000bec9190620013f7565b905060006009600084815260200190815260200160002054905060006008838154811062000c43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000c8c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d02577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000d368362000daa60201b62000e1a1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000e1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e1590620012a0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000e7390620014d2565b90600052602060002090601f01602090048101928262000e97576000855562000ee3565b82601f1062000eb257805160ff191683800117855562000ee3565b8280016001018555821562000ee3579182015b8281111562000ee257825182559160200191906001019062000ec5565b5b50905062000ef2919062000ef6565b5090565b5b8082111562000f1157600081600090555060010162000ef7565b5090565b600062000f2c62000f26846200133a565b62001306565b90508281526020810184848401111562000f4557600080fd5b62000f528482856200149c565b509392505050565b60008151905062000f6b81620015a6565b92915050565b600082601f83011262000f8357600080fd5b815162000f9584826020860162000f15565b91505092915050565b60006020828403121562000fb157600080fd5b600062000fc18482850162000f5a565b91505092915050565b60006020828403121562000fdd57600080fd5b600082015167ffffffffffffffff81111562000ff857600080fd5b620010068482850162000f71565b91505092915050565b6200101a8162001432565b82525050565b60006200102d826200136d565b62001039818562001378565b93506200104b8185602086016200149c565b620010568162001595565b840191505092915050565b60006200107060328362001389565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000620010d8601c8362001389565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006200111a602a8362001389565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006200118260208362001389565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000620011c460208362001389565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b620012028162001492565b82525050565b60006080820190506200121f60008301876200100f565b6200122e60208301866200100f565b6200123d6040830185620011f7565b818103606083015262001251818462001020565b905095945050505050565b60006020820190508181036000830152620012778162001061565b9050919050565b600060208201905081810360008301526200129981620010c9565b9050919050565b60006020820190508181036000830152620012bb816200110b565b9050919050565b60006020820190508181036000830152620012dd8162001173565b9050919050565b60006020820190508181036000830152620012ff81620011b5565b9050919050565b6000604051905081810181811067ffffffffffffffff8211171562001330576200132f62001566565b5b8060405250919050565b600067ffffffffffffffff82111562001358576200135762001566565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620013a78262001492565b9150620013b48362001492565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620013ec57620013eb62001508565b5b828201905092915050565b6000620014048262001492565b9150620014118362001492565b92508282101562001427576200142662001508565b5b828203905092915050565b60006200143f8262001472565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620014bc5780820151818401526020810190506200149f565b83811115620014cc576000848401525b50505050565b60006002820490506001821680620014eb57607f821691505b6020821081141562001502576200150162001537565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620015b18162001446565b8114620015bd57600080fd5b50565b6142b280620015d06000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec57806398d5fdca1161008a578063c87b56dd11610064578063c87b56dd146105ee578063ca8001441461062b578063e985e9c514610654578063f2fde38b14610691576101b7565b806398d5fdca14610571578063a22cb4651461059c578063b88d4fde146105c5576101b7565b80638588b2c5116100c65780638588b2c5146104d65780638da5cb5b146104f257806391b7f5ed1461051d57806395d89b4114610546576101b7565b806370a0823114610478578063715018a6146104b5578063853828b6146104cc576101b7565b806323b872dd11610159578063438b630011610133578063438b6300146103985780634f6ccce7146103d557806355f804b3146104125780636352211e1461043b576101b7565b806323b872dd146103095780632f745c591461033257806342842e0e1461036f576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806316c61ccc146102b357806318160ddd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612f21565b6106ba565b6040516101f09190613a97565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612ef8565b610734565b005b34801561022e57600080fd5b506102376107cd565b6040516102449190613ab2565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612fb4565b61085f565b6040516102819190613a0e565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612ebc565b6108e4565b005b3480156102bf57600080fd5b506102c86109fc565b6040516102d59190613a97565b60405180910390f35b3480156102ea57600080fd5b506102f3610a0f565b6040516103009190613db4565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190612db6565b610a1c565b005b34801561033e57600080fd5b5061035960048036038101906103549190612ebc565b610a7c565b6040516103669190613db4565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190612db6565b610b21565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612d51565b610b41565b6040516103cc9190613a75565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190612fb4565b610c3b565b6040516104099190613db4565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190612f73565b610cd2565b005b34801561044757600080fd5b50610462600480360381019061045d9190612fb4565b610d68565b60405161046f9190613a0e565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612d51565b610e1a565b6040516104ac9190613db4565b60405180910390f35b3480156104c157600080fd5b506104ca610ed2565b005b6104d461100f565b005b6104f060048036038101906104eb9190612fb4565b6111ed565b005b3480156104fe57600080fd5b50610507611370565b6040516105149190613a0e565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612fb4565b61139a565b005b34801561055257600080fd5b5061055b611420565b6040516105689190613ab2565b60405180910390f35b34801561057d57600080fd5b506105866114b2565b6040516105939190613db4565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612e80565b6114bc565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190612e05565b61163d565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612fb4565b61169f565b6040516106229190613ab2565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612ebc565b611746565b005b34801561066057600080fd5b5061067b60048036038101906106769190612d7a565b611865565b6040516106889190613a97565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612d51565b6118f9565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072d575061072c82611abd565b5b9050919050565b61073c611b9f565b73ffffffffffffffffffffffffffffffffffffffff1661075a611370565b73ffffffffffffffffffffffffffffffffffffffff16146107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a790613c94565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546107dc906140a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610808906140a7565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a82611ba7565b6108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090613c74565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ef82610d68565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790613cf4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097f611b9f565b73ffffffffffffffffffffffffffffffffffffffff1614806109ae57506109ad816109a8611b9f565b611865565b5b6109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490613bf4565b60405180910390fd5b6109f78383611c13565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b610a2d610a27611b9f565b82611ccc565b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613d34565b60405180910390fd5b610a77838383611daa565b505050565b6000610a8783610e1a565b8210610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90613ad4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b3c8383836040518060200160405280600081525061163d565b505050565b60606000610b4e83610e1a565b905060008167ffffffffffffffff811115610b92577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bc05781602001602082028036833780820191505090505b50905060005b82811015610c3057610bd88582610a7c565b828281518110610c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c28906140d9565b915050610bc6565b508092505050919050565b6000610c45610a0f565b8210610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90613d54565b60405180910390fd5b60088281548110610cc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cda611b9f565b73ffffffffffffffffffffffffffffffffffffffff16610cf8611370565b73ffffffffffffffffffffffffffffffffffffffff1614610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590613c94565b60405180910390fd5b80600b9080519060200190610d64929190612b75565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613c34565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290613c14565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eda611b9f565b73ffffffffffffffffffffffffffffffffffffffff16610ef8611370565b73ffffffffffffffffffffffffffffffffffffffff1614610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613c94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611017611b9f565b73ffffffffffffffffffffffffffffffffffffffff16611035611370565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290613c94565b60405180910390fd5b600060144761109a9190613f32565b905060006019476110ab9190613f32565b905060008183476110bc9190613fbd565b6110c69190613fbd565b9050600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f1935050505061112857600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061118857600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506111e857600080fd5b505050565b60006111f7610a0f565b9050600e60009054906101000a900460ff1615611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090613b54565b60405180910390fd5b600b821061128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613d14565b60405180910390fd5b600c5461271061129c9190613fbd565b82826112a89190613edc565b106112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df90613d74565b60405180910390fd5b81600d546112f69190613f63565b341015611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613bd4565b60405180910390fd5b60005b8281101561136b576113583382846113539190613edc565b612006565b8080611363906140d9565b91505061133b565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113a2611b9f565b73ffffffffffffffffffffffffffffffffffffffff166113c0611370565b73ffffffffffffffffffffffffffffffffffffffff1614611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d90613c94565b60405180910390fd5b80600d8190555050565b60606001805461142f906140a7565b80601f016020809104026020016040519081016040528092919081815260200182805461145b906140a7565b80156114a85780601f1061147d576101008083540402835291602001916114a8565b820191906000526020600020905b81548152906001019060200180831161148b57829003601f168201915b5050505050905090565b6000600d54905090565b6114c4611b9f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152990613b94565b60405180910390fd5b806005600061153f611b9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115ec611b9f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116319190613a97565b60405180910390a35050565b61164e611648611b9f565b83611ccc565b61168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490613d34565b60405180910390fd5b61169984848484612024565b50505050565b60606116aa82611ba7565b6116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613cd4565b60405180910390fd5b60006116f3612080565b90506000815111611713576040518060200160405280600081525061173e565b8061171d84612112565b60405160200161172e9291906139ea565b6040516020818303038152906040525b915050919050565b61174e611b9f565b73ffffffffffffffffffffffffffffffffffffffff1661176c611370565b73ffffffffffffffffffffffffffffffffffffffff16146117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b990613c94565b60405180910390fd5b600c54811115611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90613d94565b60405180910390fd5b6000611811610a0f565b905060005b828110156118465761183384828461182e9190613edc565b612006565b808061183e906140d9565b915050611816565b5081600c60008282546118599190613fbd565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611901611b9f565b73ffffffffffffffffffffffffffffffffffffffff1661191f611370565b73ffffffffffffffffffffffffffffffffffffffff1614611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90613c94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90613b14565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b8857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b985750611b97826122bf565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c8683610d68565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cd782611ba7565b611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d90613bb4565b60405180910390fd5b6000611d2183610d68565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d9057508373ffffffffffffffffffffffffffffffffffffffff16611d788461085f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611da15750611da08185611865565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dca82610d68565b73ffffffffffffffffffffffffffffffffffffffff1614611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790613cb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8790613b74565b60405180910390fd5b611e9b838383612329565b611ea6600082611c13565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ef69190613fbd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f4d9190613edc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61202082826040518060200160405280600081525061243d565b5050565b61202f848484611daa565b61203b84848484612498565b61207a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207190613af4565b60405180910390fd5b50505050565b6060600b805461208f906140a7565b80601f01602080910402602001604051908101604052809291908181526020018280546120bb906140a7565b80156121085780601f106120dd57610100808354040283529160200191612108565b820191906000526020600020905b8154815290600101906020018083116120eb57829003601f168201915b5050505050905090565b6060600082141561215a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122ba565b600082905060005b6000821461218c578080612175906140d9565b915050600a826121859190613f32565b9150612162565b60008167ffffffffffffffff8111156121ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122005781602001600182028036833780820191505090505b5090505b600085146122b3576001826122199190613fbd565b9150600a856122289190614122565b60306122349190613edc565b60f81b818381518110612270577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ac9190613f32565b9450612204565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612334838383611ab8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612377576123728161262f565b6123b6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123b5576123b48382612678565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123f9576123f4816127e5565b612438565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612437576124368282612928565b5b5b505050565b61244783836129a7565b6124546000848484612498565b612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a90613af4565b60405180910390fd5b505050565b60006124b98473ffffffffffffffffffffffffffffffffffffffff16611aa5565b15612622578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124e2611b9f565b8786866040518563ffffffff1660e01b81526004016125049493929190613a29565b602060405180830381600087803b15801561251e57600080fd5b505af192505050801561254f57506040513d601f19601f8201168201806040525081019061254c9190612f4a565b60015b6125d2573d806000811461257f576040519150601f19603f3d011682016040523d82523d6000602084013e612584565b606091505b506000815114156125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c190613af4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612627565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161268584610e1a565b61268f9190613fbd565b9050600060076000848152602001908152602001600020549050818114612774576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127f99190613fbd565b905060006009600084815260200190815260200160002054905060006008838154811061284f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612897577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061290c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061293383610e1a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90613c54565b60405180910390fd5b612a2081611ba7565b15612a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5790613b34565b60405180910390fd5b612a6c60008383612329565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612abc9190613edc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b81906140a7565b90600052602060002090601f016020900481019282612ba35760008555612bea565b82601f10612bbc57805160ff1916838001178555612bea565b82800160010185558215612bea579182015b82811115612be9578251825591602001919060010190612bce565b5b509050612bf79190612bfb565b5090565b5b80821115612c14576000816000905550600101612bfc565b5090565b6000612c2b612c2684613e00565b613dcf565b905082815260208101848484011115612c4357600080fd5b612c4e848285614065565b509392505050565b6000612c69612c6484613e30565b613dcf565b905082815260208101848484011115612c8157600080fd5b612c8c848285614065565b509392505050565b600081359050612ca381614220565b92915050565b600081359050612cb881614237565b92915050565b600081359050612ccd8161424e565b92915050565b600081519050612ce28161424e565b92915050565b600082601f830112612cf957600080fd5b8135612d09848260208601612c18565b91505092915050565b600082601f830112612d2357600080fd5b8135612d33848260208601612c56565b91505092915050565b600081359050612d4b81614265565b92915050565b600060208284031215612d6357600080fd5b6000612d7184828501612c94565b91505092915050565b60008060408385031215612d8d57600080fd5b6000612d9b85828601612c94565b9250506020612dac85828601612c94565b9150509250929050565b600080600060608486031215612dcb57600080fd5b6000612dd986828701612c94565b9350506020612dea86828701612c94565b9250506040612dfb86828701612d3c565b9150509250925092565b60008060008060808587031215612e1b57600080fd5b6000612e2987828801612c94565b9450506020612e3a87828801612c94565b9350506040612e4b87828801612d3c565b925050606085013567ffffffffffffffff811115612e6857600080fd5b612e7487828801612ce8565b91505092959194509250565b60008060408385031215612e9357600080fd5b6000612ea185828601612c94565b9250506020612eb285828601612ca9565b9150509250929050565b60008060408385031215612ecf57600080fd5b6000612edd85828601612c94565b9250506020612eee85828601612d3c565b9150509250929050565b600060208284031215612f0a57600080fd5b6000612f1884828501612ca9565b91505092915050565b600060208284031215612f3357600080fd5b6000612f4184828501612cbe565b91505092915050565b600060208284031215612f5c57600080fd5b6000612f6a84828501612cd3565b91505092915050565b600060208284031215612f8557600080fd5b600082013567ffffffffffffffff811115612f9f57600080fd5b612fab84828501612d12565b91505092915050565b600060208284031215612fc657600080fd5b6000612fd484828501612d3c565b91505092915050565b6000612fe983836139cc565b60208301905092915050565b612ffe81613ff1565b82525050565b600061300f82613e70565b6130198185613e9e565b935061302483613e60565b8060005b8381101561305557815161303c8882612fdd565b975061304783613e91565b925050600181019050613028565b5085935050505092915050565b61306b81614003565b82525050565b600061307c82613e7b565b6130868185613eaf565b9350613096818560208601614074565b61309f8161420f565b840191505092915050565b60006130b582613e86565b6130bf8185613ec0565b93506130cf818560208601614074565b6130d88161420f565b840191505092915050565b60006130ee82613e86565b6130f88185613ed1565b9350613108818560208601614074565b80840191505092915050565b6000613121602b83613ec0565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613187603283613ec0565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006131ed602683613ec0565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613253601c83613ec0565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613293602f83613ec0565b91507f5265642050616e64617320617265206e6f74207175697465207265616479207960008301527f657420666f722061646f7074696f6e00000000000000000000000000000000006020830152604082019050919050565b60006132f9602483613ec0565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061335f601983613ec0565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061339f602c83613ec0565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613405602283613ec0565b91507f506c656173652072652d6576616c7561746520796f757220457468657220736560008301527f6e740000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061346b603883613ec0565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006134d1602a83613ec0565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613537602983613ec0565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061359d602083613ec0565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006135dd602c83613ec0565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613643602083613ec0565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613683602983613ec0565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006136e9602f83613ec0565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061374f602183613ec0565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137b5604183613ec0565b91507f536861726520796f7572206c6f7665206f66205265642050616e64617320776960008301527f7468206f74686572732c2074686572652069732061206c696d6974206f66203160208301527f30000000000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613841603183613ec0565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006138a7602c83613ec0565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061390d603283613ec0565b91507f546865726520617265206f6e6c7920736f206d616e79205265642050616e646160008301527f73206c65667420696e207468652077696c6400000000000000000000000000006020830152604082019050919050565b6000613973602283613ec0565b91507f45786365656473207265736572766564205265642050616e646173207375707060008301527f6c790000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6139d58161405b565b82525050565b6139e48161405b565b82525050565b60006139f682856130e3565b9150613a0282846130e3565b91508190509392505050565b6000602082019050613a236000830184612ff5565b92915050565b6000608082019050613a3e6000830187612ff5565b613a4b6020830186612ff5565b613a5860408301856139db565b8181036060830152613a6a8184613071565b905095945050505050565b60006020820190508181036000830152613a8f8184613004565b905092915050565b6000602082019050613aac6000830184613062565b92915050565b60006020820190508181036000830152613acc81846130aa565b905092915050565b60006020820190508181036000830152613aed81613114565b9050919050565b60006020820190508181036000830152613b0d8161317a565b9050919050565b60006020820190508181036000830152613b2d816131e0565b9050919050565b60006020820190508181036000830152613b4d81613246565b9050919050565b60006020820190508181036000830152613b6d81613286565b9050919050565b60006020820190508181036000830152613b8d816132ec565b9050919050565b60006020820190508181036000830152613bad81613352565b9050919050565b60006020820190508181036000830152613bcd81613392565b9050919050565b60006020820190508181036000830152613bed816133f8565b9050919050565b60006020820190508181036000830152613c0d8161345e565b9050919050565b60006020820190508181036000830152613c2d816134c4565b9050919050565b60006020820190508181036000830152613c4d8161352a565b9050919050565b60006020820190508181036000830152613c6d81613590565b9050919050565b60006020820190508181036000830152613c8d816135d0565b9050919050565b60006020820190508181036000830152613cad81613636565b9050919050565b60006020820190508181036000830152613ccd81613676565b9050919050565b60006020820190508181036000830152613ced816136dc565b9050919050565b60006020820190508181036000830152613d0d81613742565b9050919050565b60006020820190508181036000830152613d2d816137a8565b9050919050565b60006020820190508181036000830152613d4d81613834565b9050919050565b60006020820190508181036000830152613d6d8161389a565b9050919050565b60006020820190508181036000830152613d8d81613900565b9050919050565b60006020820190508181036000830152613dad81613966565b9050919050565b6000602082019050613dc960008301846139db565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613df657613df56141e0565b5b8060405250919050565b600067ffffffffffffffff821115613e1b57613e1a6141e0565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613e4b57613e4a6141e0565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ee78261405b565b9150613ef28361405b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f2757613f26614153565b5b828201905092915050565b6000613f3d8261405b565b9150613f488361405b565b925082613f5857613f57614182565b5b828204905092915050565b6000613f6e8261405b565b9150613f798361405b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fb257613fb1614153565b5b828202905092915050565b6000613fc88261405b565b9150613fd38361405b565b925082821015613fe657613fe5614153565b5b828203905092915050565b6000613ffc8261403b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614092578082015181840152602081019050614077565b838111156140a1576000848401525b50505050565b600060028204905060018216806140bf57607f821691505b602082108114156140d3576140d26141b1565b5b50919050565b60006140e48261405b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561411757614116614153565b5b600182019050919050565b600061412d8261405b565b91506141388361405b565b92508261414857614147614182565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61422981613ff1565b811461423457600080fd5b50565b61424081614003565b811461424b57600080fd5b50565b6142578161400f565b811461426257600080fd5b50565b61426e8161405b565b811461427957600080fd5b5056fea2646970667358221220668099d4fdd095bdcc0ab0a1f9dcd00d583955a3aca730a5b2971f14acada5da64736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f727065702e6d7970696e6174612e636c6f75642f697066732f516d51636453576b7653755931764e455868794563363964777869394a584a5742364c367936513436595064456b2f00000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec57806398d5fdca1161008a578063c87b56dd11610064578063c87b56dd146105ee578063ca8001441461062b578063e985e9c514610654578063f2fde38b14610691576101b7565b806398d5fdca14610571578063a22cb4651461059c578063b88d4fde146105c5576101b7565b80638588b2c5116100c65780638588b2c5146104d65780638da5cb5b146104f257806391b7f5ed1461051d57806395d89b4114610546576101b7565b806370a0823114610478578063715018a6146104b5578063853828b6146104cc576101b7565b806323b872dd11610159578063438b630011610133578063438b6300146103985780634f6ccce7146103d557806355f804b3146104125780636352211e1461043b576101b7565b806323b872dd146103095780632f745c591461033257806342842e0e1461036f576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806316c61ccc146102b357806318160ddd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612f21565b6106ba565b6040516101f09190613a97565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612ef8565b610734565b005b34801561022e57600080fd5b506102376107cd565b6040516102449190613ab2565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612fb4565b61085f565b6040516102819190613a0e565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612ebc565b6108e4565b005b3480156102bf57600080fd5b506102c86109fc565b6040516102d59190613a97565b60405180910390f35b3480156102ea57600080fd5b506102f3610a0f565b6040516103009190613db4565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190612db6565b610a1c565b005b34801561033e57600080fd5b5061035960048036038101906103549190612ebc565b610a7c565b6040516103669190613db4565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190612db6565b610b21565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612d51565b610b41565b6040516103cc9190613a75565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190612fb4565b610c3b565b6040516104099190613db4565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190612f73565b610cd2565b005b34801561044757600080fd5b50610462600480360381019061045d9190612fb4565b610d68565b60405161046f9190613a0e565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612d51565b610e1a565b6040516104ac9190613db4565b60405180910390f35b3480156104c157600080fd5b506104ca610ed2565b005b6104d461100f565b005b6104f060048036038101906104eb9190612fb4565b6111ed565b005b3480156104fe57600080fd5b50610507611370565b6040516105149190613a0e565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612fb4565b61139a565b005b34801561055257600080fd5b5061055b611420565b6040516105689190613ab2565b60405180910390f35b34801561057d57600080fd5b506105866114b2565b6040516105939190613db4565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612e80565b6114bc565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190612e05565b61163d565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612fb4565b61169f565b6040516106229190613ab2565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612ebc565b611746565b005b34801561066057600080fd5b5061067b60048036038101906106769190612d7a565b611865565b6040516106889190613a97565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612d51565b6118f9565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072d575061072c82611abd565b5b9050919050565b61073c611b9f565b73ffffffffffffffffffffffffffffffffffffffff1661075a611370565b73ffffffffffffffffffffffffffffffffffffffff16146107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a790613c94565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546107dc906140a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610808906140a7565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a82611ba7565b6108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090613c74565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ef82610d68565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790613cf4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097f611b9f565b73ffffffffffffffffffffffffffffffffffffffff1614806109ae57506109ad816109a8611b9f565b611865565b5b6109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490613bf4565b60405180910390fd5b6109f78383611c13565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b610a2d610a27611b9f565b82611ccc565b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613d34565b60405180910390fd5b610a77838383611daa565b505050565b6000610a8783610e1a565b8210610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90613ad4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b3c8383836040518060200160405280600081525061163d565b505050565b60606000610b4e83610e1a565b905060008167ffffffffffffffff811115610b92577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bc05781602001602082028036833780820191505090505b50905060005b82811015610c3057610bd88582610a7c565b828281518110610c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c28906140d9565b915050610bc6565b508092505050919050565b6000610c45610a0f565b8210610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90613d54565b60405180910390fd5b60088281548110610cc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cda611b9f565b73ffffffffffffffffffffffffffffffffffffffff16610cf8611370565b73ffffffffffffffffffffffffffffffffffffffff1614610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590613c94565b60405180910390fd5b80600b9080519060200190610d64929190612b75565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613c34565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290613c14565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eda611b9f565b73ffffffffffffffffffffffffffffffffffffffff16610ef8611370565b73ffffffffffffffffffffffffffffffffffffffff1614610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613c94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611017611b9f565b73ffffffffffffffffffffffffffffffffffffffff16611035611370565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290613c94565b60405180910390fd5b600060144761109a9190613f32565b905060006019476110ab9190613f32565b905060008183476110bc9190613fbd565b6110c69190613fbd565b9050600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f1935050505061112857600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061118857600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506111e857600080fd5b505050565b60006111f7610a0f565b9050600e60009054906101000a900460ff1615611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090613b54565b60405180910390fd5b600b821061128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613d14565b60405180910390fd5b600c5461271061129c9190613fbd565b82826112a89190613edc565b106112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df90613d74565b60405180910390fd5b81600d546112f69190613f63565b341015611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613bd4565b60405180910390fd5b60005b8281101561136b576113583382846113539190613edc565b612006565b8080611363906140d9565b91505061133b565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113a2611b9f565b73ffffffffffffffffffffffffffffffffffffffff166113c0611370565b73ffffffffffffffffffffffffffffffffffffffff1614611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d90613c94565b60405180910390fd5b80600d8190555050565b60606001805461142f906140a7565b80601f016020809104026020016040519081016040528092919081815260200182805461145b906140a7565b80156114a85780601f1061147d576101008083540402835291602001916114a8565b820191906000526020600020905b81548152906001019060200180831161148b57829003601f168201915b5050505050905090565b6000600d54905090565b6114c4611b9f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152990613b94565b60405180910390fd5b806005600061153f611b9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115ec611b9f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116319190613a97565b60405180910390a35050565b61164e611648611b9f565b83611ccc565b61168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490613d34565b60405180910390fd5b61169984848484612024565b50505050565b60606116aa82611ba7565b6116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613cd4565b60405180910390fd5b60006116f3612080565b90506000815111611713576040518060200160405280600081525061173e565b8061171d84612112565b60405160200161172e9291906139ea565b6040516020818303038152906040525b915050919050565b61174e611b9f565b73ffffffffffffffffffffffffffffffffffffffff1661176c611370565b73ffffffffffffffffffffffffffffffffffffffff16146117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b990613c94565b60405180910390fd5b600c54811115611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90613d94565b60405180910390fd5b6000611811610a0f565b905060005b828110156118465761183384828461182e9190613edc565b612006565b808061183e906140d9565b915050611816565b5081600c60008282546118599190613fbd565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611901611b9f565b73ffffffffffffffffffffffffffffffffffffffff1661191f611370565b73ffffffffffffffffffffffffffffffffffffffff1614611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90613c94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90613b14565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b8857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b985750611b97826122bf565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c8683610d68565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cd782611ba7565b611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d90613bb4565b60405180910390fd5b6000611d2183610d68565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d9057508373ffffffffffffffffffffffffffffffffffffffff16611d788461085f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611da15750611da08185611865565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dca82610d68565b73ffffffffffffffffffffffffffffffffffffffff1614611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790613cb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8790613b74565b60405180910390fd5b611e9b838383612329565b611ea6600082611c13565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ef69190613fbd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f4d9190613edc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61202082826040518060200160405280600081525061243d565b5050565b61202f848484611daa565b61203b84848484612498565b61207a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207190613af4565b60405180910390fd5b50505050565b6060600b805461208f906140a7565b80601f01602080910402602001604051908101604052809291908181526020018280546120bb906140a7565b80156121085780601f106120dd57610100808354040283529160200191612108565b820191906000526020600020905b8154815290600101906020018083116120eb57829003601f168201915b5050505050905090565b6060600082141561215a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122ba565b600082905060005b6000821461218c578080612175906140d9565b915050600a826121859190613f32565b9150612162565b60008167ffffffffffffffff8111156121ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122005781602001600182028036833780820191505090505b5090505b600085146122b3576001826122199190613fbd565b9150600a856122289190614122565b60306122349190613edc565b60f81b818381518110612270577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ac9190613f32565b9450612204565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612334838383611ab8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612377576123728161262f565b6123b6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123b5576123b48382612678565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123f9576123f4816127e5565b612438565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612437576124368282612928565b5b5b505050565b61244783836129a7565b6124546000848484612498565b612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a90613af4565b60405180910390fd5b505050565b60006124b98473ffffffffffffffffffffffffffffffffffffffff16611aa5565b15612622578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124e2611b9f565b8786866040518563ffffffff1660e01b81526004016125049493929190613a29565b602060405180830381600087803b15801561251e57600080fd5b505af192505050801561254f57506040513d601f19601f8201168201806040525081019061254c9190612f4a565b60015b6125d2573d806000811461257f576040519150601f19603f3d011682016040523d82523d6000602084013e612584565b606091505b506000815114156125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c190613af4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612627565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161268584610e1a565b61268f9190613fbd565b9050600060076000848152602001908152602001600020549050818114612774576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127f99190613fbd565b905060006009600084815260200190815260200160002054905060006008838154811061284f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612897577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061290c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061293383610e1a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90613c54565b60405180910390fd5b612a2081611ba7565b15612a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5790613b34565b60405180910390fd5b612a6c60008383612329565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612abc9190613edc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b81906140a7565b90600052602060002090601f016020900481019282612ba35760008555612bea565b82601f10612bbc57805160ff1916838001178555612bea565b82800160010185558215612bea579182015b82811115612be9578251825591602001919060010190612bce565b5b509050612bf79190612bfb565b5090565b5b80821115612c14576000816000905550600101612bfc565b5090565b6000612c2b612c2684613e00565b613dcf565b905082815260208101848484011115612c4357600080fd5b612c4e848285614065565b509392505050565b6000612c69612c6484613e30565b613dcf565b905082815260208101848484011115612c8157600080fd5b612c8c848285614065565b509392505050565b600081359050612ca381614220565b92915050565b600081359050612cb881614237565b92915050565b600081359050612ccd8161424e565b92915050565b600081519050612ce28161424e565b92915050565b600082601f830112612cf957600080fd5b8135612d09848260208601612c18565b91505092915050565b600082601f830112612d2357600080fd5b8135612d33848260208601612c56565b91505092915050565b600081359050612d4b81614265565b92915050565b600060208284031215612d6357600080fd5b6000612d7184828501612c94565b91505092915050565b60008060408385031215612d8d57600080fd5b6000612d9b85828601612c94565b9250506020612dac85828601612c94565b9150509250929050565b600080600060608486031215612dcb57600080fd5b6000612dd986828701612c94565b9350506020612dea86828701612c94565b9250506040612dfb86828701612d3c565b9150509250925092565b60008060008060808587031215612e1b57600080fd5b6000612e2987828801612c94565b9450506020612e3a87828801612c94565b9350506040612e4b87828801612d3c565b925050606085013567ffffffffffffffff811115612e6857600080fd5b612e7487828801612ce8565b91505092959194509250565b60008060408385031215612e9357600080fd5b6000612ea185828601612c94565b9250506020612eb285828601612ca9565b9150509250929050565b60008060408385031215612ecf57600080fd5b6000612edd85828601612c94565b9250506020612eee85828601612d3c565b9150509250929050565b600060208284031215612f0a57600080fd5b6000612f1884828501612ca9565b91505092915050565b600060208284031215612f3357600080fd5b6000612f4184828501612cbe565b91505092915050565b600060208284031215612f5c57600080fd5b6000612f6a84828501612cd3565b91505092915050565b600060208284031215612f8557600080fd5b600082013567ffffffffffffffff811115612f9f57600080fd5b612fab84828501612d12565b91505092915050565b600060208284031215612fc657600080fd5b6000612fd484828501612d3c565b91505092915050565b6000612fe983836139cc565b60208301905092915050565b612ffe81613ff1565b82525050565b600061300f82613e70565b6130198185613e9e565b935061302483613e60565b8060005b8381101561305557815161303c8882612fdd565b975061304783613e91565b925050600181019050613028565b5085935050505092915050565b61306b81614003565b82525050565b600061307c82613e7b565b6130868185613eaf565b9350613096818560208601614074565b61309f8161420f565b840191505092915050565b60006130b582613e86565b6130bf8185613ec0565b93506130cf818560208601614074565b6130d88161420f565b840191505092915050565b60006130ee82613e86565b6130f88185613ed1565b9350613108818560208601614074565b80840191505092915050565b6000613121602b83613ec0565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613187603283613ec0565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006131ed602683613ec0565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613253601c83613ec0565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613293602f83613ec0565b91507f5265642050616e64617320617265206e6f74207175697465207265616479207960008301527f657420666f722061646f7074696f6e00000000000000000000000000000000006020830152604082019050919050565b60006132f9602483613ec0565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061335f601983613ec0565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061339f602c83613ec0565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613405602283613ec0565b91507f506c656173652072652d6576616c7561746520796f757220457468657220736560008301527f6e740000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061346b603883613ec0565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006134d1602a83613ec0565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613537602983613ec0565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061359d602083613ec0565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006135dd602c83613ec0565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613643602083613ec0565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613683602983613ec0565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006136e9602f83613ec0565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061374f602183613ec0565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137b5604183613ec0565b91507f536861726520796f7572206c6f7665206f66205265642050616e64617320776960008301527f7468206f74686572732c2074686572652069732061206c696d6974206f66203160208301527f30000000000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613841603183613ec0565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006138a7602c83613ec0565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061390d603283613ec0565b91507f546865726520617265206f6e6c7920736f206d616e79205265642050616e646160008301527f73206c65667420696e207468652077696c6400000000000000000000000000006020830152604082019050919050565b6000613973602283613ec0565b91507f45786365656473207265736572766564205265642050616e646173207375707060008301527f6c790000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6139d58161405b565b82525050565b6139e48161405b565b82525050565b60006139f682856130e3565b9150613a0282846130e3565b91508190509392505050565b6000602082019050613a236000830184612ff5565b92915050565b6000608082019050613a3e6000830187612ff5565b613a4b6020830186612ff5565b613a5860408301856139db565b8181036060830152613a6a8184613071565b905095945050505050565b60006020820190508181036000830152613a8f8184613004565b905092915050565b6000602082019050613aac6000830184613062565b92915050565b60006020820190508181036000830152613acc81846130aa565b905092915050565b60006020820190508181036000830152613aed81613114565b9050919050565b60006020820190508181036000830152613b0d8161317a565b9050919050565b60006020820190508181036000830152613b2d816131e0565b9050919050565b60006020820190508181036000830152613b4d81613246565b9050919050565b60006020820190508181036000830152613b6d81613286565b9050919050565b60006020820190508181036000830152613b8d816132ec565b9050919050565b60006020820190508181036000830152613bad81613352565b9050919050565b60006020820190508181036000830152613bcd81613392565b9050919050565b60006020820190508181036000830152613bed816133f8565b9050919050565b60006020820190508181036000830152613c0d8161345e565b9050919050565b60006020820190508181036000830152613c2d816134c4565b9050919050565b60006020820190508181036000830152613c4d8161352a565b9050919050565b60006020820190508181036000830152613c6d81613590565b9050919050565b60006020820190508181036000830152613c8d816135d0565b9050919050565b60006020820190508181036000830152613cad81613636565b9050919050565b60006020820190508181036000830152613ccd81613676565b9050919050565b60006020820190508181036000830152613ced816136dc565b9050919050565b60006020820190508181036000830152613d0d81613742565b9050919050565b60006020820190508181036000830152613d2d816137a8565b9050919050565b60006020820190508181036000830152613d4d81613834565b9050919050565b60006020820190508181036000830152613d6d8161389a565b9050919050565b60006020820190508181036000830152613d8d81613900565b9050919050565b60006020820190508181036000830152613dad81613966565b9050919050565b6000602082019050613dc960008301846139db565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613df657613df56141e0565b5b8060405250919050565b600067ffffffffffffffff821115613e1b57613e1a6141e0565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613e4b57613e4a6141e0565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ee78261405b565b9150613ef28361405b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f2757613f26614153565b5b828201905092915050565b6000613f3d8261405b565b9150613f488361405b565b925082613f5857613f57614182565b5b828204905092915050565b6000613f6e8261405b565b9150613f798361405b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fb257613fb1614153565b5b828202905092915050565b6000613fc88261405b565b9150613fd38361405b565b925082821015613fe657613fe5614153565b5b828203905092915050565b6000613ffc8261403b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614092578082015181840152602081019050614077565b838111156140a1576000848401525b50505050565b600060028204905060018216806140bf57607f821691505b602082108114156140d3576140d26141b1565b5b50919050565b60006140e48261405b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561411757614116614153565b5b600182019050919050565b600061412d8261405b565b91506141388361405b565b92508261414857614147614182565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61422981613ff1565b811461423457600080fd5b50565b61424081614003565b811461424b57600080fd5b50565b6142578161400f565b811461426257600080fd5b50565b61426e8161405b565b811461427957600080fd5b5056fea2646970667358221220668099d4fdd095bdcc0ab0a1f9dcd00d583955a3aca730a5b2971f14acada5da64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f727065702e6d7970696e6174612e636c6f75642f697066732f516d51636453576b7653755931764e455868794563363964777869394a584a5742364c367936513436595064456b2f00000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://rpep.mypinata.cloud/ipfs/QmQcdSWkvSuY1vNEXhyEc69dwxi9JXJWB6L6y6Q46YPdEk/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [2] : 68747470733a2f2f727065702e6d7970696e6174612e636c6f75642f69706673
Arg [3] : 2f516d51636453576b7653755931764e455868794563363964777869394a584a
Arg [4] : 5742364c367936513436595064456b2f00000000000000000000000000000000


Deployed Bytecode Sourcemap

1899:2929:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;937:237:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4378:74:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2419:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3879:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3416:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2090:26:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1590:113:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4769:305:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1258:256:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5145:151:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3235:342:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1780:233:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3841:102:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2113:239:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1843:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1746:148:10;;;;;;;;;;;;;:::i;:::-;;4460:365:11;;;:::i;:::-;;2585:642;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1095:87:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3618:93:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2588:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3951:81:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4172:295:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5367:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2763:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4040:330:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4538:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2049:244:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;937:237:4;1039:4;1078:35;1063:50;;;:11;:50;;;;:103;;;;1130:36;1154:11;1130:23;:36::i;:::-;1063:103;1056:110;;937:237;;;:::o;4378:74:11:-;1326:12:10;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4441:3:11::1;4431:7;;:13;;;;;;;;;;;;;;;;;;4378:74:::0;:::o;2419:100:3:-;2473:13;2506:5;2499:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2419:100;:::o;3879:221::-;3955:7;3983:16;3991:7;3983;:16::i;:::-;3975:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4068:15;:24;4084:7;4068:24;;;;;;;;;;;;;;;;;;;;;4061:31;;3879:221;;;:::o;3416:397::-;3497:13;3513:23;3528:7;3513:14;:23::i;:::-;3497:39;;3561:5;3555:11;;:2;:11;;;;3547:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3641:5;3625:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3650:37;3667:5;3674:12;:10;:12::i;:::-;3650:16;:37::i;:::-;3625:62;3617:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;3784:21;3793:2;3797:7;3784:8;:21::i;:::-;3416:397;;;:::o;2090:26:11:-;;;;;;;;;;;;;:::o;1590:113:4:-;1651:7;1678:10;:17;;;;1671:24;;1590:113;:::o;4769:305:3:-;4930:41;4949:12;:10;:12::i;:::-;4963:7;4930:18;:41::i;:::-;4922:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5038:28;5048:4;5054:2;5058:7;5038:9;:28::i;:::-;4769:305;;;:::o;1258:256:4:-;1355:7;1391:23;1408:5;1391:16;:23::i;:::-;1383:5;:31;1375:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1480:12;:19;1493:5;1480:19;;;;;;;;;;;;;;;:26;1500:5;1480:26;;;;;;;;;;;;1473:33;;1258:256;;;;:::o;5145:151:3:-;5249:39;5266:4;5272:2;5276:7;5249:39;;;;;;;;;;;;:16;:39::i;:::-;5145:151;;;:::o;3235:342:11:-;3294:16;3323:18;3344:17;3354:6;3344:9;:17::i;:::-;3323:38;;3374:25;3416:10;3402:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3374:53;;3442:9;3438:106;3457:10;3453:1;:14;3438:106;;;3502:30;3522:6;3530:1;3502:19;:30::i;:::-;3488:8;3497:1;3488:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;3469:3;;;;;:::i;:::-;;;;3438:106;;;;3561:8;3554:15;;;;3235:342;;;:::o;1780:233:4:-;1855:7;1891:30;:28;:30::i;:::-;1883:5;:38;1875:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1988:10;1999:5;1988:17;;;;;;;;;;;;;;;;;;;;;;;;1981:24;;1780:233;;;:::o;3841:102:11:-;1326:12:10;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3928:7:11::1;3912:13;:23;;;;;;;;;;;;:::i;:::-;;3841:102:::0;:::o;2113:239:3:-;2185:7;2205:13;2221:7;:16;2229:7;2221:16;;;;;;;;;;;;;;;;;;;;;2205:32;;2273:1;2256:19;;:5;:19;;;;2248:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2339:5;2332:12;;;2113:239;;;:::o;1843:208::-;1915:7;1960:1;1943:19;;:5;:19;;;;1935:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2027:9;:16;2037:5;2027:16;;;;;;;;;;;;;;;;2020:23;;1843:208;;;:::o;1746:148:10:-;1326:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1853:1:::1;1816:40;;1837:6;;;;;;;;;;;1816:40;;;;;;;;;;;;1884:1;1867:6;;:19;;;;;;;;;;;;;;;;;;1746:148::o:0;4460:365:11:-;1326:12:10;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4519:12:11::1;4558:2;4534:21;:26;;;;:::i;:::-;4519:41;;4571:12;4610:2;4586:21;:26;;;;:::i;:::-;4571:41;;4623:16;4673:4;4666;4642:21;:28;;;;:::i;:::-;:35;;;;:::i;:::-;4623:54;;4704:4;;;;;;;;;;;4696:18;;:24;4715:4;4696:24;;;;;;;;;;;;;;;;;;;;;;;4688:33;;;::::0;::::1;;4748:4;;;;;;;;;;;4740:18;;:24;4759:4;4740:24;;;;;;;;;;;;;;;;;;;;;;;4732:33;;;::::0;::::1;;4792:8;;;;;;;;;;;4784:22;;:32;4807:8;4784:32;;;;;;;;;;;;;;;;;;;;;;;4776:41;;;::::0;::::1;;1386:1:10;;;4460:365:11:o:0;2585:642::-;2639:14;2656:13;:11;:13::i;:::-;2639:30;;2690:7;;;;;;;;;;;2689:8;2680:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;2805:2;2799:3;:8;2790:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;2950:9;;2942:5;:17;;;;:::i;:::-;2936:3;2927:6;:12;;;;:::i;:::-;:32;2918:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;3062:3;3053:6;;:12;;;;:::i;:::-;3040:9;:25;;3031:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;3134:9;3130:90;3149:3;3145:1;:7;3130:90;;;3173:35;3184:10;3205:1;3196:6;:10;;;;:::i;:::-;3173:9;:35::i;:::-;3154:3;;;;;:::i;:::-;;;;3130:90;;;;2585:642;;:::o;1095:87:10:-;1141:7;1168:6;;;;;;;;;;;1161:13;;1095:87;:::o;3618:93:11:-;1326:12:10;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3694:9:11::1;3685:6;:18;;;;3618:93:::0;:::o;2588:104:3:-;2644:13;2677:7;2670:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2588:104;:::o;3951:81:11:-;3992:7;4018:6;;4011:13;;3951:81;:::o;4172:295:3:-;4287:12;:10;:12::i;:::-;4275:24;;:8;:24;;;;4267:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4387:8;4342:18;:32;4361:12;:10;:12::i;:::-;4342:32;;;;;;;;;;;;;;;:42;4375:8;4342:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4440:8;4411:48;;4426:12;:10;:12::i;:::-;4411:48;;;4450:8;4411:48;;;;;;:::i;:::-;;;;;;;;4172:295;;:::o;5367:285::-;5499:41;5518:12;:10;:12::i;:::-;5532:7;5499:18;:41::i;:::-;5491:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5605:39;5619:4;5625:2;5629:7;5638:5;5605:13;:39::i;:::-;5367:285;;;;:::o;2763:360::-;2836:13;2870:16;2878:7;2870;:16::i;:::-;2862:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2951:21;2975:10;:8;:10::i;:::-;2951:34;;3027:1;3009:7;3003:21;:25;:112;;;;;;;;;;;;;;;;;3068:7;3077:18;:7;:16;:18::i;:::-;3051:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3003:112;2996:119;;;2763:360;;;:::o;4040:330:11:-;1326:12:10;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4140:9:11::1;;4129:7;:20;;4120:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;4202:14;4219:13;:11;:13::i;:::-;4202:30;;4247:9;4243:87;4262:7;4258:1;:11;4243:87;;;4290:28;4301:3;4315:1;4306:6;:10;;;;:::i;:::-;4290:9;:28::i;:::-;4271:3;;;;;:::i;:::-;;;;4243:87;;;;4355:7;4342:9;;:20;;;;;;;:::i;:::-;;;;;;;;1386:1:10;4040:330:11::0;;:::o;4538:164:3:-;4635:4;4659:18;:25;4678:5;4659:25;;;;;;;;;;;;;;;:35;4685:8;4659:35;;;;;;;;;;;;;;;;;;;;;;;;;4652:42;;4538:164;;;;:::o;2049:244:10:-;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;;;;;;;;;;;2219:38;;;;;;;;;;;;2277:8;2268:6;;:17;;;;;;;;;;;;;;;;;;2049:244:::0;:::o;743:422:0:-;803:4;1011:12;1122:7;1110:20;1102:28;;1156:1;1149:4;:8;1142:15;;;743:422;;;:::o;13191:93:3:-;;;;:::o;1487:292::-;1589:4;1628:25;1613:40;;;:11;:40;;;;:105;;;;1685:33;1670:48;;;:11;:48;;;;1613:105;:158;;;;1735:36;1759:11;1735:23;:36::i;:::-;1613:158;1606:165;;1487:292;;;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;7119:127:3:-;7184:4;7236:1;7208:30;;:7;:16;7216:7;7208:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7201:37;;7119:127;;;:::o;10996:174::-;11098:2;11071:15;:24;11087:7;11071:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11154:7;11150:2;11116:46;;11125:23;11140:7;11125:14;:23::i;:::-;11116:46;;;;;;;;;;;;10996:174;;:::o;7413:348::-;7506:4;7531:16;7539:7;7531;:16::i;:::-;7523:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7607:13;7623:23;7638:7;7623:14;:23::i;:::-;7607:39;;7676:5;7665:16;;:7;:16;;;:51;;;;7709:7;7685:31;;:20;7697:7;7685:11;:20::i;:::-;:31;;;7665:51;:87;;;;7720:32;7737:5;7744:7;7720:16;:32::i;:::-;7665:87;7657:96;;;7413:348;;;;:::o;10334:544::-;10459:4;10432:31;;:23;10447:7;10432:14;:23::i;:::-;:31;;;10424:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10542:1;10528:16;;:2;:16;;;;10520:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10598:39;10619:4;10625:2;10629:7;10598:20;:39::i;:::-;10702:29;10719:1;10723:7;10702:8;:29::i;:::-;10763:1;10744:9;:15;10754:4;10744:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10792:1;10775:9;:13;10785:2;10775:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10823:2;10804:7;:16;10812:7;10804:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10862:7;10858:2;10843:27;;10852:4;10843:27;;;;;;;;;;;;10334:544;;;:::o;8103:110::-;8179:26;8189:2;8193:7;8179:26;;;;;;;;;;;;:9;:26::i;:::-;8103:110;;:::o;6534:272::-;6648:28;6658:4;6664:2;6668:7;6648:9;:28::i;:::-;6695:48;6718:4;6724:2;6728:7;6737:5;6695:22;:48::i;:::-;6687:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6534:272;;;;:::o;3719:114:11:-;3779:13;3812;3805:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3719:114;:::o;284:723:12:-;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;954:2;945:11;;;;;:::i;:::-;;;814:154;;;992:6;978:21;;;;;284:723;;;;:::o;787:157:2:-;872:4;911:25;896:40;;;:11;:40;;;;889:47;;787:157;;;:::o;2626:555:4:-;2736:45;2763:4;2769:2;2773:7;2736:26;:45::i;:::-;2814:1;2798:18;;:4;:18;;;2794:187;;;2833:40;2865:7;2833:31;:40::i;:::-;2794:187;;;2903:2;2895:10;;:4;:10;;;2891:90;;2922:47;2955:4;2961:7;2922:32;:47::i;:::-;2891:90;2794:187;3009:1;2995:16;;:2;:16;;;2991:183;;;3028:45;3065:7;3028:36;:45::i;:::-;2991:183;;;3101:4;3095:10;;:2;:10;;;3091:83;;3122:40;3150:2;3154:7;3122:27;:40::i;:::-;3091:83;2991:183;2626:555;;;:::o;8440:250:3:-;8536:18;8542:2;8546:7;8536:5;:18::i;:::-;8573:54;8604:1;8608:2;8612:7;8621:5;8573:22;:54::i;:::-;8565:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;8440:250;;;:::o;11735:843::-;11856:4;11882:15;:2;:13;;;:15::i;:::-;11878:693;;;11934:2;11918:36;;;11955:12;:10;:12::i;:::-;11969:4;11975:7;11984:5;11918:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11914:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12181:1;12164:6;:13;:18;12160:341;;;12207:60;;;;;;;;;;:::i;:::-;;;;;;;;12160:341;12451:6;12445:13;12436:6;12432:2;12428:15;12421:38;11914:602;12051:45;;;12041:55;;;:6;:55;;;;12034:62;;;;;11878:693;12555:4;12548:11;;11735:843;;;;;;;:::o;3904:164:4:-;4008:10;:17;;;;3981:15;:24;3997:7;3981:24;;;;;;;;;;;:44;;;;4036:10;4052:7;4036:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3904:164;:::o;4695:988::-;4961:22;5011:1;4986:22;5003:4;4986:16;:22::i;:::-;:26;;;;:::i;:::-;4961:51;;5023:18;5044:17;:26;5062:7;5044:26;;;;;;;;;;;;5023:47;;5191:14;5177:10;:28;5173:328;;5222:19;5244:12;:18;5257:4;5244:18;;;;;;;;;;;;;;;:34;5263:14;5244:34;;;;;;;;;;;;5222:56;;5328:11;5295:12;:18;5308:4;5295:18;;;;;;;;;;;;;;;:30;5314:10;5295:30;;;;;;;;;;;:44;;;;5445:10;5412:17;:30;5430:11;5412:30;;;;;;;;;;;:43;;;;5173:328;;5597:17;:26;5615:7;5597:26;;;;;;;;;;;5590:33;;;5641:12;:18;5654:4;5641:18;;;;;;;;;;;;;;;:34;5660:14;5641:34;;;;;;;;;;;5634:41;;;4695:988;;;;:::o;5978:1079::-;6231:22;6276:1;6256:10;:17;;;;:21;;;;:::i;:::-;6231:46;;6288:18;6309:15;:24;6325:7;6309:24;;;;;;;;;;;;6288:45;;6660:19;6682:10;6693:14;6682:26;;;;;;;;;;;;;;;;;;;;;;;;6660:48;;6746:11;6721:10;6732;6721:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;6857:10;6826:15;:28;6842:11;6826:28;;;;;;;;;;;:41;;;;6998:15;:24;7014:7;6998:24;;;;;;;;;;;6991:31;;;7033:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5978:1079;;;;:::o;3482:221::-;3567:14;3584:20;3601:2;3584:16;:20::i;:::-;3567:37;;3642:7;3615:12;:16;3628:2;3615:16;;;;;;;;;;;;;;;:24;3632:6;3615:24;;;;;;;;;;;:34;;;;3689:6;3660:17;:26;3678:7;3660:26;;;;;;;;;;;:35;;;;3482:221;;;:::o;9026:382:3:-;9120:1;9106:16;;:2;:16;;;;9098:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9179:16;9187:7;9179;:16::i;:::-;9178:17;9170:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9241:45;9270:1;9274:2;9278:7;9241:20;:45::i;:::-;9316:1;9299:9;:13;9309:2;9299:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9347:2;9328:7;:16;9336:7;9328:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9392:7;9388:2;9367:33;;9384:1;9367:33;;;;;;;;;;;;9026:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:13:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:179::-;;6436:46;6478:3;6470:6;6436:46;:::i;:::-;6514:4;6509:3;6505:14;6491:28;;6426:99;;;;:::o;6531:118::-;6618:24;6636:5;6618:24;:::i;:::-;6613:3;6606:37;6596:53;;:::o;6685:732::-;;6833:54;6881:5;6833:54;:::i;:::-;6903:86;6982:6;6977:3;6903:86;:::i;:::-;6896:93;;7013:56;7063:5;7013:56;:::i;:::-;7092:7;7123:1;7108:284;7133:6;7130:1;7127:13;7108:284;;;7209:6;7203:13;7236:63;7295:3;7280:13;7236:63;:::i;:::-;7229:70;;7322:60;7375:6;7322:60;:::i;:::-;7312:70;;7168:224;7155:1;7152;7148:9;7143:14;;7108:284;;;7112:14;7408:3;7401:10;;6809:608;;;;;;;:::o;7423:109::-;7504:21;7519:5;7504:21;:::i;:::-;7499:3;7492:34;7482:50;;:::o;7538:360::-;;7652:38;7684:5;7652:38;:::i;:::-;7706:70;7769:6;7764:3;7706:70;:::i;:::-;7699:77;;7785:52;7830:6;7825:3;7818:4;7811:5;7807:16;7785:52;:::i;:::-;7862:29;7884:6;7862:29;:::i;:::-;7857:3;7853:39;7846:46;;7628:270;;;;;:::o;7904:364::-;;8020:39;8053:5;8020:39;:::i;:::-;8075:71;8139:6;8134:3;8075:71;:::i;:::-;8068:78;;8155:52;8200:6;8195:3;8188:4;8181:5;8177:16;8155:52;:::i;:::-;8232:29;8254:6;8232:29;:::i;:::-;8227:3;8223:39;8216:46;;7996:272;;;;;:::o;8274:377::-;;8408:39;8441:5;8408:39;:::i;:::-;8463:89;8545:6;8540:3;8463:89;:::i;:::-;8456:96;;8561:52;8606:6;8601:3;8594:4;8587:5;8583:16;8561:52;:::i;:::-;8638:6;8633:3;8629:16;8622:23;;8384:267;;;;;:::o;8657:375::-;;8820:67;8884:2;8879:3;8820:67;:::i;:::-;8813:74;;8917:34;8913:1;8908:3;8904:11;8897:55;8983:13;8978:2;8973:3;8969:12;8962:35;9023:2;9018:3;9014:12;9007:19;;8803:229;;;:::o;9038:382::-;;9201:67;9265:2;9260:3;9201:67;:::i;:::-;9194:74;;9298:34;9294:1;9289:3;9285:11;9278:55;9364:20;9359:2;9354:3;9350:12;9343:42;9411:2;9406:3;9402:12;9395:19;;9184:236;;;:::o;9426:370::-;;9589:67;9653:2;9648:3;9589:67;:::i;:::-;9582:74;;9686:34;9682:1;9677:3;9673:11;9666:55;9752:8;9747:2;9742:3;9738:12;9731:30;9787:2;9782:3;9778:12;9771:19;;9572:224;;;:::o;9802:326::-;;9965:67;10029:2;10024:3;9965:67;:::i;:::-;9958:74;;10062:30;10058:1;10053:3;10049:11;10042:51;10119:2;10114:3;10110:12;10103:19;;9948:180;;;:::o;10134:379::-;;10297:67;10361:2;10356:3;10297:67;:::i;:::-;10290:74;;10394:34;10390:1;10385:3;10381:11;10374:55;10460:17;10455:2;10450:3;10446:12;10439:39;10504:2;10499:3;10495:12;10488:19;;10280:233;;;:::o;10519:368::-;;10682:67;10746:2;10741:3;10682:67;:::i;:::-;10675:74;;10779:34;10775:1;10770:3;10766:11;10759:55;10845:6;10840:2;10835:3;10831:12;10824:28;10878:2;10873:3;10869:12;10862:19;;10665:222;;;:::o;10893:323::-;;11056:67;11120:2;11115:3;11056:67;:::i;:::-;11049:74;;11153:27;11149:1;11144:3;11140:11;11133:48;11207:2;11202:3;11198:12;11191:19;;11039:177;;;:::o;11222:376::-;;11385:67;11449:2;11444:3;11385:67;:::i;:::-;11378:74;;11482:34;11478:1;11473:3;11469:11;11462:55;11548:14;11543:2;11538:3;11534:12;11527:36;11589:2;11584:3;11580:12;11573:19;;11368:230;;;:::o;11604:366::-;;11767:67;11831:2;11826:3;11767:67;:::i;:::-;11760:74;;11864:34;11860:1;11855:3;11851:11;11844:55;11930:4;11925:2;11920:3;11916:12;11909:26;11961:2;11956:3;11952:12;11945:19;;11750:220;;;:::o;11976:388::-;;12139:67;12203:2;12198:3;12139:67;:::i;:::-;12132:74;;12236:34;12232:1;12227:3;12223:11;12216:55;12302:26;12297:2;12292:3;12288:12;12281:48;12355:2;12350:3;12346:12;12339:19;;12122:242;;;:::o;12370:374::-;;12533:67;12597:2;12592:3;12533:67;:::i;:::-;12526:74;;12630:34;12626:1;12621:3;12617:11;12610:55;12696:12;12691:2;12686:3;12682:12;12675:34;12735:2;12730:3;12726:12;12719:19;;12516:228;;;:::o;12750:373::-;;12913:67;12977:2;12972:3;12913:67;:::i;:::-;12906:74;;13010:34;13006:1;13001:3;12997:11;12990:55;13076:11;13071:2;13066:3;13062:12;13055:33;13114:2;13109:3;13105:12;13098:19;;12896:227;;;:::o;13129:330::-;;13292:67;13356:2;13351:3;13292:67;:::i;:::-;13285:74;;13389:34;13385:1;13380:3;13376:11;13369:55;13450:2;13445:3;13441:12;13434:19;;13275:184;;;:::o;13465:376::-;;13628:67;13692:2;13687:3;13628:67;:::i;:::-;13621:74;;13725:34;13721:1;13716:3;13712:11;13705:55;13791:14;13786:2;13781:3;13777:12;13770:36;13832:2;13827:3;13823:12;13816:19;;13611:230;;;:::o;13847:330::-;;14010:67;14074:2;14069:3;14010:67;:::i;:::-;14003:74;;14107:34;14103:1;14098:3;14094:11;14087:55;14168:2;14163:3;14159:12;14152:19;;13993:184;;;:::o;14183:373::-;;14346:67;14410:2;14405:3;14346:67;:::i;:::-;14339:74;;14443:34;14439:1;14434:3;14430:11;14423:55;14509:11;14504:2;14499:3;14495:12;14488:33;14547:2;14542:3;14538:12;14531:19;;14329:227;;;:::o;14562:379::-;;14725:67;14789:2;14784:3;14725:67;:::i;:::-;14718:74;;14822:34;14818:1;14813:3;14809:11;14802:55;14888:17;14883:2;14878:3;14874:12;14867:39;14932:2;14927:3;14923:12;14916:19;;14708:233;;;:::o;14947:365::-;;15110:67;15174:2;15169:3;15110:67;:::i;:::-;15103:74;;15207:34;15203:1;15198:3;15194:11;15187:55;15273:3;15268:2;15263:3;15259:12;15252:25;15303:2;15298:3;15294:12;15287:19;;15093:219;;;:::o;15318:431::-;;15481:67;15545:2;15540:3;15481:67;:::i;:::-;15474:74;;15578:34;15574:1;15569:3;15565:11;15558:55;15644:34;15639:2;15634:3;15630:12;15623:56;15710:3;15705:2;15700:3;15696:12;15689:25;15740:2;15735:3;15731:12;15724:19;;15464:285;;;:::o;15755:381::-;;15918:67;15982:2;15977:3;15918:67;:::i;:::-;15911:74;;16015:34;16011:1;16006:3;16002:11;15995:55;16081:19;16076:2;16071:3;16067:12;16060:41;16127:2;16122:3;16118:12;16111:19;;15901:235;;;:::o;16142:376::-;;16305:67;16369:2;16364:3;16305:67;:::i;:::-;16298:74;;16402:34;16398:1;16393:3;16389:11;16382:55;16468:14;16463:2;16458:3;16454:12;16447:36;16509:2;16504:3;16500:12;16493:19;;16288:230;;;:::o;16524:382::-;;16687:67;16751:2;16746:3;16687:67;:::i;:::-;16680:74;;16784:34;16780:1;16775:3;16771:11;16764:55;16850:20;16845:2;16840:3;16836:12;16829:42;16897:2;16892:3;16888:12;16881:19;;16670:236;;;:::o;16912:366::-;;17075:67;17139:2;17134:3;17075:67;:::i;:::-;17068:74;;17172:34;17168:1;17163:3;17159:11;17152:55;17238:4;17233:2;17228:3;17224:12;17217:26;17269:2;17264:3;17260:12;17253:19;;17058:220;;;:::o;17284:108::-;17361:24;17379:5;17361:24;:::i;:::-;17356:3;17349:37;17339:53;;:::o;17398:118::-;17485:24;17503:5;17485:24;:::i;:::-;17480:3;17473:37;17463:53;;:::o;17522:435::-;;17724:95;17815:3;17806:6;17724:95;:::i;:::-;17717:102;;17836:95;17927:3;17918:6;17836:95;:::i;:::-;17829:102;;17948:3;17941:10;;17706:251;;;;;:::o;17963:222::-;;18094:2;18083:9;18079:18;18071:26;;18107:71;18175:1;18164:9;18160:17;18151:6;18107:71;:::i;:::-;18061:124;;;;:::o;18191:640::-;;18424:3;18413:9;18409:19;18401:27;;18438:71;18506:1;18495:9;18491:17;18482:6;18438:71;:::i;:::-;18519:72;18587:2;18576:9;18572:18;18563:6;18519:72;:::i;:::-;18601;18669:2;18658:9;18654:18;18645:6;18601:72;:::i;:::-;18720:9;18714:4;18710:20;18705:2;18694:9;18690:18;18683:48;18748:76;18819:4;18810:6;18748:76;:::i;:::-;18740:84;;18391:440;;;;;;;:::o;18837:373::-;;19018:2;19007:9;19003:18;18995:26;;19067:9;19061:4;19057:20;19053:1;19042:9;19038:17;19031:47;19095:108;19198:4;19189:6;19095:108;:::i;:::-;19087:116;;18985:225;;;;:::o;19216:210::-;;19341:2;19330:9;19326:18;19318:26;;19354:65;19416:1;19405:9;19401:17;19392:6;19354:65;:::i;:::-;19308:118;;;;:::o;19432:313::-;;19583:2;19572:9;19568:18;19560:26;;19632:9;19626:4;19622:20;19618:1;19607:9;19603:17;19596:47;19660:78;19733:4;19724:6;19660:78;:::i;:::-;19652:86;;19550:195;;;;:::o;19751:419::-;;19955:2;19944:9;19940:18;19932:26;;20004:9;19998:4;19994:20;19990:1;19979:9;19975:17;19968:47;20032:131;20158:4;20032:131;:::i;:::-;20024:139;;19922:248;;;:::o;20176:419::-;;20380:2;20369:9;20365:18;20357:26;;20429:9;20423:4;20419:20;20415:1;20404:9;20400:17;20393:47;20457:131;20583:4;20457:131;:::i;:::-;20449:139;;20347:248;;;:::o;20601:419::-;;20805:2;20794:9;20790:18;20782:26;;20854:9;20848:4;20844:20;20840:1;20829:9;20825:17;20818:47;20882:131;21008:4;20882:131;:::i;:::-;20874:139;;20772:248;;;:::o;21026:419::-;;21230:2;21219:9;21215:18;21207:26;;21279:9;21273:4;21269:20;21265:1;21254:9;21250:17;21243:47;21307:131;21433:4;21307:131;:::i;:::-;21299:139;;21197:248;;;:::o;21451:419::-;;21655:2;21644:9;21640:18;21632:26;;21704:9;21698:4;21694:20;21690:1;21679:9;21675:17;21668:47;21732:131;21858:4;21732:131;:::i;:::-;21724:139;;21622:248;;;:::o;21876:419::-;;22080:2;22069:9;22065:18;22057:26;;22129:9;22123:4;22119:20;22115:1;22104:9;22100:17;22093:47;22157:131;22283:4;22157:131;:::i;:::-;22149:139;;22047:248;;;:::o;22301:419::-;;22505:2;22494:9;22490:18;22482:26;;22554:9;22548:4;22544:20;22540:1;22529:9;22525:17;22518:47;22582:131;22708:4;22582:131;:::i;:::-;22574:139;;22472:248;;;:::o;22726:419::-;;22930:2;22919:9;22915:18;22907:26;;22979:9;22973:4;22969:20;22965:1;22954:9;22950:17;22943:47;23007:131;23133:4;23007:131;:::i;:::-;22999:139;;22897:248;;;:::o;23151:419::-;;23355:2;23344:9;23340:18;23332:26;;23404:9;23398:4;23394:20;23390:1;23379:9;23375:17;23368:47;23432:131;23558:4;23432:131;:::i;:::-;23424:139;;23322:248;;;:::o;23576:419::-;;23780:2;23769:9;23765:18;23757:26;;23829:9;23823:4;23819:20;23815:1;23804:9;23800:17;23793:47;23857:131;23983:4;23857:131;:::i;:::-;23849:139;;23747:248;;;:::o;24001:419::-;;24205:2;24194:9;24190:18;24182:26;;24254:9;24248:4;24244:20;24240:1;24229:9;24225:17;24218:47;24282:131;24408:4;24282:131;:::i;:::-;24274:139;;24172:248;;;:::o;24426:419::-;;24630:2;24619:9;24615:18;24607:26;;24679:9;24673:4;24669:20;24665:1;24654:9;24650:17;24643:47;24707:131;24833:4;24707:131;:::i;:::-;24699:139;;24597:248;;;:::o;24851:419::-;;25055:2;25044:9;25040:18;25032:26;;25104:9;25098:4;25094:20;25090:1;25079:9;25075:17;25068:47;25132:131;25258:4;25132:131;:::i;:::-;25124:139;;25022:248;;;:::o;25276:419::-;;25480:2;25469:9;25465:18;25457:26;;25529:9;25523:4;25519:20;25515:1;25504:9;25500:17;25493:47;25557:131;25683:4;25557:131;:::i;:::-;25549:139;;25447:248;;;:::o;25701:419::-;;25905:2;25894:9;25890:18;25882:26;;25954:9;25948:4;25944:20;25940:1;25929:9;25925:17;25918:47;25982:131;26108:4;25982:131;:::i;:::-;25974:139;;25872:248;;;:::o;26126:419::-;;26330:2;26319:9;26315:18;26307:26;;26379:9;26373:4;26369:20;26365:1;26354:9;26350:17;26343:47;26407:131;26533:4;26407:131;:::i;:::-;26399:139;;26297:248;;;:::o;26551:419::-;;26755:2;26744:9;26740:18;26732:26;;26804:9;26798:4;26794:20;26790:1;26779:9;26775:17;26768:47;26832:131;26958:4;26832:131;:::i;:::-;26824:139;;26722:248;;;:::o;26976:419::-;;27180:2;27169:9;27165:18;27157:26;;27229:9;27223:4;27219:20;27215:1;27204:9;27200:17;27193:47;27257:131;27383:4;27257:131;:::i;:::-;27249:139;;27147:248;;;:::o;27401:419::-;;27605:2;27594:9;27590:18;27582:26;;27654:9;27648:4;27644:20;27640:1;27629:9;27625:17;27618:47;27682:131;27808:4;27682:131;:::i;:::-;27674:139;;27572:248;;;:::o;27826:419::-;;28030:2;28019:9;28015:18;28007:26;;28079:9;28073:4;28069:20;28065:1;28054:9;28050:17;28043:47;28107:131;28233:4;28107:131;:::i;:::-;28099:139;;27997:248;;;:::o;28251:419::-;;28455:2;28444:9;28440:18;28432:26;;28504:9;28498:4;28494:20;28490:1;28479:9;28475:17;28468:47;28532:131;28658:4;28532:131;:::i;:::-;28524:139;;28422:248;;;:::o;28676:419::-;;28880:2;28869:9;28865:18;28857:26;;28929:9;28923:4;28919:20;28915:1;28904:9;28900:17;28893:47;28957:131;29083:4;28957:131;:::i;:::-;28949:139;;28847:248;;;:::o;29101:419::-;;29305:2;29294:9;29290:18;29282:26;;29354:9;29348:4;29344:20;29340:1;29329:9;29325:17;29318:47;29382:131;29508:4;29382:131;:::i;:::-;29374:139;;29272:248;;;:::o;29526:222::-;;29657:2;29646:9;29642:18;29634:26;;29670:71;29738:1;29727:9;29723:17;29714:6;29670:71;:::i;:::-;29624:124;;;;:::o;29754:283::-;;29820:2;29814:9;29804:19;;29862:4;29854:6;29850:17;29969:6;29957:10;29954:22;29933:18;29921:10;29918:34;29915:62;29912:2;;;29980:18;;:::i;:::-;29912:2;30020:10;30016:2;30009:22;29794:243;;;;:::o;30043:331::-;;30194:18;30186:6;30183:30;30180:2;;;30216:18;;:::i;:::-;30180:2;30301:4;30297:9;30290:4;30282:6;30278:17;30274:33;30266:41;;30362:4;30356;30352:15;30344:23;;30109:265;;;:::o;30380:332::-;;30532:18;30524:6;30521:30;30518:2;;;30554:18;;:::i;:::-;30518:2;30639:4;30635:9;30628:4;30620:6;30616:17;30612:33;30604:41;;30700:4;30694;30690:15;30682:23;;30447:265;;;:::o;30718:132::-;;30808:3;30800:11;;30838:4;30833:3;30829:14;30821:22;;30790:60;;;:::o;30856:114::-;;30957:5;30951:12;30941:22;;30930:40;;;:::o;30976:98::-;;31061:5;31055:12;31045:22;;31034:40;;;:::o;31080:99::-;;31166:5;31160:12;31150:22;;31139:40;;;:::o;31185:113::-;;31287:4;31282:3;31278:14;31270:22;;31260:38;;;:::o;31304:184::-;;31437:6;31432:3;31425:19;31477:4;31472:3;31468:14;31453:29;;31415:73;;;;:::o;31494:168::-;;31611:6;31606:3;31599:19;31651:4;31646:3;31642:14;31627:29;;31589:73;;;;:::o;31668:169::-;;31786:6;31781:3;31774:19;31826:4;31821:3;31817:14;31802:29;;31764:73;;;;:::o;31843:148::-;;31982:3;31967:18;;31957:34;;;;:::o;31997:305::-;;32056:20;32074:1;32056:20;:::i;:::-;32051:25;;32090:20;32108:1;32090:20;:::i;:::-;32085:25;;32244:1;32176:66;32172:74;32169:1;32166:81;32163:2;;;32250:18;;:::i;:::-;32163:2;32294:1;32291;32287:9;32280:16;;32041:261;;;;:::o;32308:185::-;;32365:20;32383:1;32365:20;:::i;:::-;32360:25;;32399:20;32417:1;32399:20;:::i;:::-;32394:25;;32438:1;32428:2;;32443:18;;:::i;:::-;32428:2;32485:1;32482;32478:9;32473:14;;32350:143;;;;:::o;32499:348::-;;32562:20;32580:1;32562:20;:::i;:::-;32557:25;;32596:20;32614:1;32596:20;:::i;:::-;32591:25;;32784:1;32716:66;32712:74;32709:1;32706:81;32701:1;32694:9;32687:17;32683:105;32680:2;;;32791:18;;:::i;:::-;32680:2;32839:1;32836;32832:9;32821:20;;32547:300;;;;:::o;32853:191::-;;32913:20;32931:1;32913:20;:::i;:::-;32908:25;;32947:20;32965:1;32947:20;:::i;:::-;32942:25;;32986:1;32983;32980:8;32977:2;;;32991:18;;:::i;:::-;32977:2;33036:1;33033;33029:9;33021:17;;32898:146;;;;:::o;33050:96::-;;33116:24;33134:5;33116:24;:::i;:::-;33105:35;;33095:51;;;:::o;33152:90::-;;33229:5;33222:13;33215:21;33204:32;;33194:48;;;:::o;33248:149::-;;33324:66;33317:5;33313:78;33302:89;;33292:105;;;:::o;33403:126::-;;33480:42;33473:5;33469:54;33458:65;;33448:81;;;:::o;33535:77::-;;33601:5;33590:16;;33580:32;;;:::o;33618:154::-;33702:6;33697:3;33692;33679:30;33764:1;33755:6;33750:3;33746:16;33739:27;33669:103;;;:::o;33778:307::-;33846:1;33856:113;33870:6;33867:1;33864:13;33856:113;;;33955:1;33950:3;33946:11;33940:18;33936:1;33931:3;33927:11;33920:39;33892:2;33889:1;33885:10;33880:15;;33856:113;;;33987:6;33984:1;33981:13;33978:2;;;34067:1;34058:6;34053:3;34049:16;34042:27;33978:2;33827:258;;;;:::o;34091:320::-;;34172:1;34166:4;34162:12;34152:22;;34219:1;34213:4;34209:12;34240:18;34230:2;;34296:4;34288:6;34284:17;34274:27;;34230:2;34358;34350:6;34347:14;34327:18;34324:38;34321:2;;;34377:18;;:::i;:::-;34321:2;34142:269;;;;:::o;34417:233::-;;34479:24;34497:5;34479:24;:::i;:::-;34470:33;;34525:66;34518:5;34515:77;34512:2;;;34595:18;;:::i;:::-;34512:2;34642:1;34635:5;34631:13;34624:20;;34460:190;;;:::o;34656:176::-;;34705:20;34723:1;34705:20;:::i;:::-;34700:25;;34739:20;34757:1;34739:20;:::i;:::-;34734:25;;34778:1;34768:2;;34783:18;;:::i;:::-;34768:2;34824:1;34821;34817:9;34812:14;;34690:142;;;;:::o;34838:180::-;34886:77;34883:1;34876:88;34983:4;34980:1;34973:15;35007:4;35004:1;34997:15;35024:180;35072:77;35069:1;35062:88;35169:4;35166:1;35159:15;35193:4;35190:1;35183:15;35210:180;35258:77;35255:1;35248:88;35355:4;35352:1;35345:15;35379:4;35376:1;35369:15;35396:180;35444:77;35441:1;35434:88;35541:4;35538:1;35531:15;35565:4;35562:1;35555:15;35582:102;;35674:2;35670:7;35665:2;35658:5;35654:14;35650:28;35640:38;;35630:54;;;:::o;35690:122::-;35763:24;35781:5;35763:24;:::i;:::-;35756:5;35753:35;35743:2;;35802:1;35799;35792:12;35743:2;35733:79;:::o;35818:116::-;35888:21;35903:5;35888:21;:::i;:::-;35881:5;35878:32;35868:2;;35924:1;35921;35914:12;35868:2;35858:76;:::o;35940:120::-;36012:23;36029:5;36012:23;:::i;:::-;36005:5;36002:34;35992:2;;36050:1;36047;36040:12;35992:2;35982:78;:::o;36066:122::-;36139:24;36157:5;36139:24;:::i;:::-;36132:5;36129:35;36119:2;;36178:1;36175;36168:12;36119:2;36109:79;:::o

Swarm Source

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