ETH Price: $3,050.66 (+2.36%)
Gas: 1 Gwei

Token

ShonkyTown DirtyFingers (DFNGR)
 

Overview

Max Total Supply

0 DFNGR

Holders

478

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DFNGR
0xf206edc32dca2b87733bb6661f3305b003ea8a24
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:
ShonkytownDirtyfingers

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 14: ShonkytownDirtyfingers.sol
//Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Counters.sol";
import "./Address.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./ECDSA.sol";

contract ShonkytownDirtyfingers is ERC721, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    
    Counters.Counter private _tokenIdTracker;
    mapping (uint256 => string) private _tokenURIs;

    address private constant KoalaMintDevAddress = 0xD17237307b93b104c50d6F83CF1e2dB99f7a348a;
    address private constant CreatorAddress = 0xfB9E1725AC55960FFE98BE24f1ca32028C2E8346;
    address private constant SignerAddress = 0x4AeA7b69ABb482e34BDd1D8C7A6B8dcA44F65775;

    string private baseURIextended;
    uint256 private constant min_price = 0 ether;
    uint256 private constant feeCreator = 5;
    uint256 private maxSupply = 5000;

    event KoalaMintMinted(uint256 indexed tokenId, address owner, address to, string tokenURI);
    event KoalaMintTransfered(address to, uint value);

    constructor(string memory _baseURIextended) ERC721("ShonkyTown DirtyFingers", "DFNGR"){
        baseURIextended = _baseURIextended;
    }
    
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }
    
    function revealCollection(string memory _baseURIextended) public onlyOwner {
        require(keccak256(bytes(baseURIextended)) != keccak256(bytes(_baseURIextended)), "Collection already revealed");
        setBaseURI(_baseURIextended);
    }

    function setBaseURI(string memory _baseURIextended) private onlyOwner {
        baseURIextended = _baseURIextended;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURIextended;
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        return string(abi.encodePacked(base, _tokenURI));
    }

    function signatureSignerMint(address _to, string memory _tokenURI, uint256 _timestamp, uint8 v, bytes32 r, bytes32 s) public view virtual returns (address){
        return ECDSA.recover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", keccak256(abi.encode(_to, _tokenURI, _timestamp)))), v, r, s);
    }

    function mint(address _to, string[] memory _tokensURI, uint256 _timestamp, uint8 v, bytes32 r, bytes32 s) public payable {
        require(msg.value >= min_price.mul(_tokensURI.length), "Value below price");
        require(maxSupply >= _tokenIdTracker.current() + _tokensURI.length, "SoldOut");
        require(_tokensURI.length > 0, "Minimum count");

        address signerMint = signatureSignerMint(_to, _tokensURI[0], _timestamp, v, r, s);
        require(signerMint == SignerAddress, "Not authorized to mint");

        require(_timestamp >= block.timestamp - 300, "Out of time");

        for (uint8 i = 0; i < _tokensURI.length; i++){
            _mintAnElement(_to, _tokensURI[i]);
        }
        
        uint256 _total = msg.value;
        
        if (feeCreator > 0){
            uint256 _feeCreator = _total.mul(feeCreator).div(100);
            _total = _total - _feeCreator;
            transfer(KoalaMintDevAddress, _feeCreator);
        }
        
        transfer(CreatorAddress, _total);
    }

    function _mintAnElement(address _to, string memory _tokenURI) private {
        uint256 _tokenId = _tokenIdTracker.current();
        
        _tokenIdTracker.increment();
        _tokenId = _tokenId + 1;
        _mint(_to, _tokenId);
        _setTokenURI(_tokenId, _tokenURI);

        emit KoalaMintMinted(_tokenId, CreatorAddress, _to, _tokenURI);
    }

    function transfer(address to, uint256 value) private {
        (bool success, ) = to.call{value: value}("");
        require(success, "Transfer failed.");
        emit KoalaMintTransfered(to, value);
    }
}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 14: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 14: Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 14: ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "./Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 14: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-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` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 7 of 14: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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 8 of 14: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 9 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 11 of 14: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 12 of 14: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURIextended","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":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"string","name":"tokenURI","type":"string"}],"name":"KoalaMintMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"KoalaMintTransfered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string[]","name":"_tokensURI","type":"string[]"},{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURIextended","type":"string"}],"name":"revealCollection","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":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"signatureSignerMint","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

6080604052611388600a553480156200001757600080fd5b50604051620044bf380380620044bf83398181016040528101906200003d91906200030d565b6040518060400160405280601781526020017f53686f6e6b79546f776e20446972747946696e676572730000000000000000008152506040518060400160405280600581526020017f44464e47520000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c1929190620001eb565b508060019080519060200190620000da929190620001eb565b505050620000fd620000f16200011d60201b60201c565b6200012560201b60201c565b806009908051906020019062000115929190620001eb565b5050620004c2565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f990620003e7565b90600052602060002090601f0160209004810192826200021d576000855562000269565b82601f106200023857805160ff191683800117855562000269565b8280016001018555821562000269579182015b82811115620002685782518255916020019190600101906200024b565b5b5090506200027891906200027c565b5090565b5b80821115620002975760008160009055506001016200027d565b5090565b6000620002b2620002ac846200037b565b62000352565b905082815260208101848484011115620002cb57600080fd5b620002d8848285620003b1565b509392505050565b600082601f830112620002f257600080fd5b8151620003048482602086016200029b565b91505092915050565b6000602082840312156200032057600080fd5b600082015167ffffffffffffffff8111156200033b57600080fd5b6200034984828501620002e0565b91505092915050565b60006200035e62000371565b90506200036c82826200041d565b919050565b6000604051905090565b600067ffffffffffffffff82111562000399576200039862000482565b5b620003a482620004b1565b9050602081019050919050565b60005b83811015620003d1578082015181840152602081019050620003b4565b83811115620003e1576000848401525b50505050565b600060028204905060018216806200040057607f821691505b6020821081141562000417576200041662000453565b5b50919050565b6200042882620004b1565b810181811067ffffffffffffffff821117156200044a576200044962000482565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613fed80620004d26000396000f3fe60806040526004361061011f5760003560e01c806370a08231116100a0578063a22cb46511610064578063a22cb465146103d6578063b88d4fde146103ff578063c87b56dd14610428578063e985e9c514610465578063f2fde38b146104a25761011f565b806370a08231146102ef578063715018a61461032c57806371ca8bd3146103435780638da5cb5b1461038057806395d89b41146103ab5761011f565b80633f288cb8116100e75780633f288cb81461021b57806342842e0e1461023757806350179bae146102605780636352211e146102895780636f8b44b0146102c65761011f565b806301ffc9a71461012457806306fdde0314610161578063081812fc1461018c578063095ea7b3146101c957806323b872dd146101f2575b600080fd5b34801561013057600080fd5b5061014b6004803603810190610146919061298c565b6104cb565b6040516101589190613122565b60405180910390f35b34801561016d57600080fd5b506101766105ad565b6040516101839190613182565b60405180910390f35b34801561019857600080fd5b506101b360048036038101906101ae9190612a1f565b61063f565b6040516101c09190613016565b60405180910390f35b3480156101d557600080fd5b506101f060048036038101906101eb9190612950565b610685565b005b3480156101fe57600080fd5b5061021960048036038101906102149190612708565b61079d565b005b610235600480360381019061023091906127d2565b6107fd565b005b34801561024357600080fd5b5061025e60048036038101906102599190612708565b610b17565b005b34801561026c57600080fd5b50610287600480360381019061028291906129de565b610b37565b005b34801561029557600080fd5b506102b060048036038101906102ab9190612a1f565b610bab565b6040516102bd9190613016565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190612a1f565b610c5d565b005b3480156102fb57600080fd5b50610316600480360381019061031191906126a3565b610c6f565b60405161032391906134e4565b60405180910390f35b34801561033857600080fd5b50610341610d27565b005b34801561034f57600080fd5b5061036a600480360381019061036591906128af565b610d3b565b6040516103779190613016565b60405180910390f35b34801561038c57600080fd5b50610395610da5565b6040516103a29190613016565b60405180910390f35b3480156103b757600080fd5b506103c0610dcf565b6040516103cd9190613182565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f89190612873565b610e61565b005b34801561040b57600080fd5b5061042660048036038101906104219190612757565b610e77565b005b34801561043457600080fd5b5061044f600480360381019061044a9190612a1f565b610ed9565b60405161045c9190613182565b60405180910390f35b34801561047157600080fd5b5061048c600480360381019061048791906126cc565b610ffa565b6040516104999190613122565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906126a3565b61108e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a657506105a582611112565b5b9050919050565b6060600080546105bc906137f7565b80601f01602080910402602001604051908101604052809291908181526020018280546105e8906137f7565b80156106355780601f1061060a57610100808354040283529160200191610635565b820191906000526020600020905b81548152906001019060200180831161061857829003601f168201915b5050505050905090565b600061064a8261117c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061069082610bab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f890613424565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107206111c7565b73ffffffffffffffffffffffffffffffffffffffff16148061074f575061074e816107496111c7565b610ffa565b5b61078e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078590613364565b60405180910390fd5b61079883836111cf565b505050565b6107ae6107a86111c7565b82611288565b6107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e4906134a4565b60405180910390fd5b6107f883838361131d565b505050565b6108128551600061158490919063ffffffff16565b341015610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906133c4565b60405180910390fd5b8451610860600761159a565b61086a9190613615565b600a5410156108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a5906131c4565b60405180910390fd5b60008551116108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e9906134c4565b60405180910390fd5b60006109438787600081518110610932577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015187878787610d3b565b9050734aea7b69abb482e34bdd1d8c7a6b8dca44f6577573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be90613304565b60405180910390fd5b61012c426109d591906136f6565b851015610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90613464565b60405180910390fd5b60005b86518160ff161015610a8657610a7388888360ff1681518110610a66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516115a8565b8080610a7e9061385a565b915050610a1a565b506000349050600060051115610aef576000610abf6064610ab160058561158490919063ffffffff16565b61163890919063ffffffff16565b90508082610acd91906136f6565b9150610aed73d17237307b93b104c50d6f83cf1e2db99f7a348a8261164e565b505b610b0d73fb9e1725ac55960ffe98be24f1ca32028c2e83468261164e565b5050505050505050565b610b3283838360405180602001604052806000815250610e77565b505050565b610b3f611738565b80805190602001206009604051610b569190612fa0565b60405180910390201415610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690613444565b60405180910390fd5b610ba8816117b6565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613404565b60405180910390fd5b80915050919050565b610c65611738565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790613324565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d2f611738565b610d3960006117d8565b565b6000610d99878787604051602001610d55939291906130bb565b60405160208183030381529060405280519060200120604051602001610d7b9190612fdb565b6040516020818303038152906040528051906020012085858561189e565b90509695505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610dde906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a906137f7565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b5050505050905090565b610e73610e6c6111c7565b83836118c9565b5050565b610e88610e826111c7565b83611288565b610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe906134a4565b60405180910390fd5b610ed384848484611a36565b50505050565b6060610ee482611a92565b610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90613204565b60405180910390fd5b6000600860008481526020019081526020016000208054610f43906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6f906137f7565b8015610fbc5780601f10610f9157610100808354040283529160200191610fbc565b820191906000526020600020905b815481529060010190602001808311610f9f57829003601f168201915b505050505090506000610fcd611afe565b90508082604051602001610fe2929190612fb7565b60405160208183030381529060405292505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611096611738565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90613244565b60405180910390fd5b61110f816117d8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61118581611a92565b6111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90613404565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661124283610bab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061129483610bab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806112d657506112d58185610ffa565b5b8061131457508373ffffffffffffffffffffffffffffffffffffffff166112fc8461063f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661133d82610bab565b73ffffffffffffffffffffffffffffffffffffffff1614611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90613264565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906132a4565b60405180910390fd5b61140e838383611b90565b6114196000826111cf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461146991906136f6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114c09190613615565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461157f838383611b95565b505050565b60008183611592919061369c565b905092915050565b600081600001549050919050565b60006115b4600761159a565b90506115c06007611b9a565b6001816115cd9190613615565b90506115d98382611bb0565b6115e38183611d8a565b807f22f159d78f3070bdaa3a1b6adf066ff0bb90c4c161fb27506307e6af06e18dfa73fb9e1725ac55960ffe98be24f1ca32028c2e8346858560405161162b93929190613031565b60405180910390a2505050565b60008183611646919061366b565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161167490613001565b60006040518083038185875af1925050503d80600081146116b1576040519150601f19603f3d011682016040523d82523d6000602084013e6116b6565b606091505b50509050806116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613484565b60405180910390fd5b7fcd90c098a9e93a26c6962609f457d04072f9e433f1e3bfb275e5c54d4398e79c838360405161172b9291906130f9565b60405180910390a1505050565b6117406111c7565b73ffffffffffffffffffffffffffffffffffffffff1661175e610da5565b73ffffffffffffffffffffffffffffffffffffffff16146117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab906133a4565b60405180910390fd5b565b6117be611738565b80600990805190602001906117d4929190612416565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060006118af87878787611dfe565b915091506118bc81611f0b565b8192505050949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f906132c4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a299190613122565b60405180910390a3505050565b611a4184848461131d565b611a4d8484848461225c565b611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390613224565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060098054611b0d906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b39906137f7565b8015611b865780601f10611b5b57610100808354040283529160200191611b86565b820191906000526020600020905b815481529060010190602001808311611b6957829003601f168201915b5050505050905090565b505050565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790613384565b60405180910390fd5b611c2981611a92565b15611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613284565b60405180910390fd5b611c7560008383611b90565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc59190613615565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8660008383611b95565b5050565b611d9382611a92565b611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc9906133e4565b60405180910390fd5b80600860008481526020019081526020016000209080519060200190611df9929190612416565b505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611e39576000600391509150611f02565b601b8560ff1614158015611e515750601c8560ff1614155b15611e63576000600491509150611f02565b600060018787878760405160008152602001604052604051611e88949392919061313d565b6020604051602081039080840390855afa158015611eaa573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ef957600060019250925050611f02565b80600092509250505b94509492505050565b60006004811115611f45577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611f7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611f8957612259565b60016004811115611fc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611ffc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561203d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612034906131a4565b60405180910390fd5b60026004811115612077577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156120b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e8906131e4565b60405180910390fd5b6003600481111561212b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612164577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c906132e4565b60405180910390fd5b6004808111156121de577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612217577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f90613344565b60405180910390fd5b5b50565b600061227d8473ffffffffffffffffffffffffffffffffffffffff166123f3565b156123e6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122a66111c7565b8786866040518563ffffffff1660e01b81526004016122c8949392919061306f565b602060405180830381600087803b1580156122e257600080fd5b505af192505050801561231357506040513d601f19601f8201168201806040525081019061231091906129b5565b60015b612396573d8060008114612343576040519150601f19603f3d011682016040523d82523d6000602084013e612348565b606091505b5060008151141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590613224565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123eb565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612422906137f7565b90600052602060002090601f016020900481019282612444576000855561248b565b82601f1061245d57805160ff191683800117855561248b565b8280016001018555821561248b579182015b8281111561248a57825182559160200191906001019061246f565b5b509050612498919061249c565b5090565b5b808211156124b557600081600090555060010161249d565b5090565b60006124cc6124c784613524565b6134ff565b9050808382526020820190508260005b8581101561250c57813585016124f2888261264f565b8452602084019350602083019250506001810190506124dc565b5050509392505050565b600061252961252484613550565b6134ff565b90508281526020810184848401111561254157600080fd5b61254c8482856137b5565b509392505050565b600061256761256284613581565b6134ff565b90508281526020810184848401111561257f57600080fd5b61258a8482856137b5565b509392505050565b6000813590506125a181613f2d565b92915050565b600082601f8301126125b857600080fd5b81356125c88482602086016124b9565b91505092915050565b6000813590506125e081613f44565b92915050565b6000813590506125f581613f5b565b92915050565b60008135905061260a81613f72565b92915050565b60008151905061261f81613f72565b92915050565b600082601f83011261263657600080fd5b8135612646848260208601612516565b91505092915050565b600082601f83011261266057600080fd5b8135612670848260208601612554565b91505092915050565b60008135905061268881613f89565b92915050565b60008135905061269d81613fa0565b92915050565b6000602082840312156126b557600080fd5b60006126c384828501612592565b91505092915050565b600080604083850312156126df57600080fd5b60006126ed85828601612592565b92505060206126fe85828601612592565b9150509250929050565b60008060006060848603121561271d57600080fd5b600061272b86828701612592565b935050602061273c86828701612592565b925050604061274d86828701612679565b9150509250925092565b6000806000806080858703121561276d57600080fd5b600061277b87828801612592565b945050602061278c87828801612592565b935050604061279d87828801612679565b925050606085013567ffffffffffffffff8111156127ba57600080fd5b6127c687828801612625565b91505092959194509250565b60008060008060008060c087890312156127eb57600080fd5b60006127f989828a01612592565b965050602087013567ffffffffffffffff81111561281657600080fd5b61282289828a016125a7565b955050604061283389828a01612679565b945050606061284489828a0161268e565b935050608061285589828a016125e6565b92505060a061286689828a016125e6565b9150509295509295509295565b6000806040838503121561288657600080fd5b600061289485828601612592565b92505060206128a5858286016125d1565b9150509250929050565b60008060008060008060c087890312156128c857600080fd5b60006128d689828a01612592565b965050602087013567ffffffffffffffff8111156128f357600080fd5b6128ff89828a0161264f565b955050604061291089828a01612679565b945050606061292189828a0161268e565b935050608061293289828a016125e6565b92505060a061294389828a016125e6565b9150509295509295509295565b6000806040838503121561296357600080fd5b600061297185828601612592565b925050602061298285828601612679565b9150509250929050565b60006020828403121561299e57600080fd5b60006129ac848285016125fb565b91505092915050565b6000602082840312156129c757600080fd5b60006129d584828501612610565b91505092915050565b6000602082840312156129f057600080fd5b600082013567ffffffffffffffff811115612a0a57600080fd5b612a168482850161264f565b91505092915050565b600060208284031215612a3157600080fd5b6000612a3f84828501612679565b91505092915050565b612a518161372a565b82525050565b612a608161373c565b82525050565b612a6f81613748565b82525050565b612a86612a8182613748565b613884565b82525050565b6000612a97826135c7565b612aa181856135dd565b9350612ab18185602086016137c4565b612aba8161394a565b840191505092915050565b60008154612ad2816137f7565b612adc81866135ee565b94506001821660008114612af75760018114612b0857612b3b565b60ff19831686528186019350612b3b565b612b11856135b2565b60005b83811015612b3357815481890152600182019150602081019050612b14565b838801955050505b50505092915050565b6000612b4f826135d2565b612b5981856135f9565b9350612b698185602086016137c4565b612b728161394a565b840191505092915050565b6000612b88826135d2565b612b92818561360a565b9350612ba28185602086016137c4565b80840191505092915050565b6000612bbb6018836135f9565b9150612bc68261395b565b602082019050919050565b6000612bde6007836135f9565b9150612be982613984565b602082019050919050565b6000612c01601f836135f9565b9150612c0c826139ad565b602082019050919050565b6000612c24601c8361360a565b9150612c2f826139d6565b601c82019050919050565b6000612c47601f836135f9565b9150612c52826139ff565b602082019050919050565b6000612c6a6032836135f9565b9150612c7582613a28565b604082019050919050565b6000612c8d6026836135f9565b9150612c9882613a77565b604082019050919050565b6000612cb06025836135f9565b9150612cbb82613ac6565b604082019050919050565b6000612cd3601c836135f9565b9150612cde82613b15565b602082019050919050565b6000612cf66024836135f9565b9150612d0182613b3e565b604082019050919050565b6000612d196019836135f9565b9150612d2482613b8d565b602082019050919050565b6000612d3c6022836135f9565b9150612d4782613bb6565b604082019050919050565b6000612d5f6016836135f9565b9150612d6a82613c05565b602082019050919050565b6000612d826029836135f9565b9150612d8d82613c2e565b604082019050919050565b6000612da56022836135f9565b9150612db082613c7d565b604082019050919050565b6000612dc8603e836135f9565b9150612dd382613ccc565b604082019050919050565b6000612deb6020836135f9565b9150612df682613d1b565b602082019050919050565b6000612e0e6020836135f9565b9150612e1982613d44565b602082019050919050565b6000612e316011836135f9565b9150612e3c82613d6d565b602082019050919050565b6000612e54601c836135f9565b9150612e5f82613d96565b602082019050919050565b6000612e776018836135f9565b9150612e8282613dbf565b602082019050919050565b6000612e9a6021836135f9565b9150612ea582613de8565b604082019050919050565b6000612ebd601b836135f9565b9150612ec882613e37565b602082019050919050565b6000612ee0600b836135f9565b9150612eeb82613e60565b602082019050919050565b6000612f036000836135ee565b9150612f0e82613e89565b600082019050919050565b6000612f266010836135f9565b9150612f3182613e8c565b602082019050919050565b6000612f49602e836135f9565b9150612f5482613eb5565b604082019050919050565b6000612f6c600d836135f9565b9150612f7782613f04565b602082019050919050565b612f8b8161379e565b82525050565b612f9a816137a8565b82525050565b6000612fac8284612ac5565b915081905092915050565b6000612fc38285612b7d565b9150612fcf8284612b7d565b91508190509392505050565b6000612fe682612c17565b9150612ff28284612a75565b60208201915081905092915050565b600061300c82612ef6565b9150819050919050565b600060208201905061302b6000830184612a48565b92915050565b60006060820190506130466000830186612a48565b6130536020830185612a48565b81810360408301526130658184612b44565b9050949350505050565b60006080820190506130846000830187612a48565b6130916020830186612a48565b61309e6040830185612f82565b81810360608301526130b08184612a8c565b905095945050505050565b60006060820190506130d06000830186612a48565b81810360208301526130e28185612b44565b90506130f16040830184612f82565b949350505050565b600060408201905061310e6000830185612a48565b61311b6020830184612f82565b9392505050565b60006020820190506131376000830184612a57565b92915050565b60006080820190506131526000830187612a66565b61315f6020830186612f91565b61316c6040830185612a66565b6131796060830184612a66565b95945050505050565b6000602082019050818103600083015261319c8184612b44565b905092915050565b600060208201905081810360008301526131bd81612bae565b9050919050565b600060208201905081810360008301526131dd81612bd1565b9050919050565b600060208201905081810360008301526131fd81612bf4565b9050919050565b6000602082019050818103600083015261321d81612c3a565b9050919050565b6000602082019050818103600083015261323d81612c5d565b9050919050565b6000602082019050818103600083015261325d81612c80565b9050919050565b6000602082019050818103600083015261327d81612ca3565b9050919050565b6000602082019050818103600083015261329d81612cc6565b9050919050565b600060208201905081810360008301526132bd81612ce9565b9050919050565b600060208201905081810360008301526132dd81612d0c565b9050919050565b600060208201905081810360008301526132fd81612d2f565b9050919050565b6000602082019050818103600083015261331d81612d52565b9050919050565b6000602082019050818103600083015261333d81612d75565b9050919050565b6000602082019050818103600083015261335d81612d98565b9050919050565b6000602082019050818103600083015261337d81612dbb565b9050919050565b6000602082019050818103600083015261339d81612dde565b9050919050565b600060208201905081810360008301526133bd81612e01565b9050919050565b600060208201905081810360008301526133dd81612e24565b9050919050565b600060208201905081810360008301526133fd81612e47565b9050919050565b6000602082019050818103600083015261341d81612e6a565b9050919050565b6000602082019050818103600083015261343d81612e8d565b9050919050565b6000602082019050818103600083015261345d81612eb0565b9050919050565b6000602082019050818103600083015261347d81612ed3565b9050919050565b6000602082019050818103600083015261349d81612f19565b9050919050565b600060208201905081810360008301526134bd81612f3c565b9050919050565b600060208201905081810360008301526134dd81612f5f565b9050919050565b60006020820190506134f96000830184612f82565b92915050565b600061350961351a565b90506135158282613829565b919050565b6000604051905090565b600067ffffffffffffffff82111561353f5761353e61391b565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561356b5761356a61391b565b5b6135748261394a565b9050602081019050919050565b600067ffffffffffffffff82111561359c5761359b61391b565b5b6135a58261394a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136208261379e565b915061362b8361379e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136605761365f61388e565b5b828201905092915050565b60006136768261379e565b91506136818361379e565b925082613691576136906138bd565b5b828204905092915050565b60006136a78261379e565b91506136b28361379e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136eb576136ea61388e565b5b828202905092915050565b60006137018261379e565b915061370c8361379e565b92508282101561371f5761371e61388e565b5b828203905092915050565b60006137358261377e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156137e25780820151818401526020810190506137c7565b838111156137f1576000848401525b50505050565b6000600282049050600182168061380f57607f821691505b60208210811415613823576138226138ec565b5b50919050565b6138328261394a565b810181811067ffffffffffffffff821117156138515761385061391b565b5b80604052505050565b6000613865826137a8565b915060ff8214156138795761387861388e565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420617574686f72697a656420746f206d696e7400000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f55524920736574206f66206e6f6e6578697374656e7420746f6b656e00000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f436f6c6c656374696f6e20616c72656164792072657665616c65640000000000600082015250565b7f4f7574206f662074696d65000000000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f4d696e696d756d20636f756e7400000000000000000000000000000000000000600082015250565b613f368161372a565b8114613f4157600080fd5b50565b613f4d8161373c565b8114613f5857600080fd5b50565b613f6481613748565b8114613f6f57600080fd5b50565b613f7b81613752565b8114613f8657600080fd5b50565b613f928161379e565b8114613f9d57600080fd5b50565b613fa9816137a8565b8114613fb457600080fd5b5056fea26469706673582212209108fff26e1fbdcfd4f4b8842240c7c5630f37633c7b81675d40e8147278149664736f6c634300080100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005b68747470733a2f2f6170692e6b6f616c616d696e742e636f6d2f323962356639313639613062386264366532633833363532316162613364326462303539663230656465343561363936376535363237623333373132643733392f0000000000

Deployed Bytecode

0x60806040526004361061011f5760003560e01c806370a08231116100a0578063a22cb46511610064578063a22cb465146103d6578063b88d4fde146103ff578063c87b56dd14610428578063e985e9c514610465578063f2fde38b146104a25761011f565b806370a08231146102ef578063715018a61461032c57806371ca8bd3146103435780638da5cb5b1461038057806395d89b41146103ab5761011f565b80633f288cb8116100e75780633f288cb81461021b57806342842e0e1461023757806350179bae146102605780636352211e146102895780636f8b44b0146102c65761011f565b806301ffc9a71461012457806306fdde0314610161578063081812fc1461018c578063095ea7b3146101c957806323b872dd146101f2575b600080fd5b34801561013057600080fd5b5061014b6004803603810190610146919061298c565b6104cb565b6040516101589190613122565b60405180910390f35b34801561016d57600080fd5b506101766105ad565b6040516101839190613182565b60405180910390f35b34801561019857600080fd5b506101b360048036038101906101ae9190612a1f565b61063f565b6040516101c09190613016565b60405180910390f35b3480156101d557600080fd5b506101f060048036038101906101eb9190612950565b610685565b005b3480156101fe57600080fd5b5061021960048036038101906102149190612708565b61079d565b005b610235600480360381019061023091906127d2565b6107fd565b005b34801561024357600080fd5b5061025e60048036038101906102599190612708565b610b17565b005b34801561026c57600080fd5b50610287600480360381019061028291906129de565b610b37565b005b34801561029557600080fd5b506102b060048036038101906102ab9190612a1f565b610bab565b6040516102bd9190613016565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190612a1f565b610c5d565b005b3480156102fb57600080fd5b50610316600480360381019061031191906126a3565b610c6f565b60405161032391906134e4565b60405180910390f35b34801561033857600080fd5b50610341610d27565b005b34801561034f57600080fd5b5061036a600480360381019061036591906128af565b610d3b565b6040516103779190613016565b60405180910390f35b34801561038c57600080fd5b50610395610da5565b6040516103a29190613016565b60405180910390f35b3480156103b757600080fd5b506103c0610dcf565b6040516103cd9190613182565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f89190612873565b610e61565b005b34801561040b57600080fd5b5061042660048036038101906104219190612757565b610e77565b005b34801561043457600080fd5b5061044f600480360381019061044a9190612a1f565b610ed9565b60405161045c9190613182565b60405180910390f35b34801561047157600080fd5b5061048c600480360381019061048791906126cc565b610ffa565b6040516104999190613122565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906126a3565b61108e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a657506105a582611112565b5b9050919050565b6060600080546105bc906137f7565b80601f01602080910402602001604051908101604052809291908181526020018280546105e8906137f7565b80156106355780601f1061060a57610100808354040283529160200191610635565b820191906000526020600020905b81548152906001019060200180831161061857829003601f168201915b5050505050905090565b600061064a8261117c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061069082610bab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f890613424565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107206111c7565b73ffffffffffffffffffffffffffffffffffffffff16148061074f575061074e816107496111c7565b610ffa565b5b61078e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078590613364565b60405180910390fd5b61079883836111cf565b505050565b6107ae6107a86111c7565b82611288565b6107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e4906134a4565b60405180910390fd5b6107f883838361131d565b505050565b6108128551600061158490919063ffffffff16565b341015610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906133c4565b60405180910390fd5b8451610860600761159a565b61086a9190613615565b600a5410156108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a5906131c4565b60405180910390fd5b60008551116108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e9906134c4565b60405180910390fd5b60006109438787600081518110610932577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015187878787610d3b565b9050734aea7b69abb482e34bdd1d8c7a6b8dca44f6577573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be90613304565b60405180910390fd5b61012c426109d591906136f6565b851015610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90613464565b60405180910390fd5b60005b86518160ff161015610a8657610a7388888360ff1681518110610a66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516115a8565b8080610a7e9061385a565b915050610a1a565b506000349050600060051115610aef576000610abf6064610ab160058561158490919063ffffffff16565b61163890919063ffffffff16565b90508082610acd91906136f6565b9150610aed73d17237307b93b104c50d6f83cf1e2db99f7a348a8261164e565b505b610b0d73fb9e1725ac55960ffe98be24f1ca32028c2e83468261164e565b5050505050505050565b610b3283838360405180602001604052806000815250610e77565b505050565b610b3f611738565b80805190602001206009604051610b569190612fa0565b60405180910390201415610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690613444565b60405180910390fd5b610ba8816117b6565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613404565b60405180910390fd5b80915050919050565b610c65611738565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790613324565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d2f611738565b610d3960006117d8565b565b6000610d99878787604051602001610d55939291906130bb565b60405160208183030381529060405280519060200120604051602001610d7b9190612fdb565b6040516020818303038152906040528051906020012085858561189e565b90509695505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610dde906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a906137f7565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b5050505050905090565b610e73610e6c6111c7565b83836118c9565b5050565b610e88610e826111c7565b83611288565b610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe906134a4565b60405180910390fd5b610ed384848484611a36565b50505050565b6060610ee482611a92565b610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90613204565b60405180910390fd5b6000600860008481526020019081526020016000208054610f43906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6f906137f7565b8015610fbc5780601f10610f9157610100808354040283529160200191610fbc565b820191906000526020600020905b815481529060010190602001808311610f9f57829003601f168201915b505050505090506000610fcd611afe565b90508082604051602001610fe2929190612fb7565b60405160208183030381529060405292505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611096611738565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90613244565b60405180910390fd5b61110f816117d8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61118581611a92565b6111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90613404565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661124283610bab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061129483610bab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806112d657506112d58185610ffa565b5b8061131457508373ffffffffffffffffffffffffffffffffffffffff166112fc8461063f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661133d82610bab565b73ffffffffffffffffffffffffffffffffffffffff1614611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90613264565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906132a4565b60405180910390fd5b61140e838383611b90565b6114196000826111cf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461146991906136f6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114c09190613615565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461157f838383611b95565b505050565b60008183611592919061369c565b905092915050565b600081600001549050919050565b60006115b4600761159a565b90506115c06007611b9a565b6001816115cd9190613615565b90506115d98382611bb0565b6115e38183611d8a565b807f22f159d78f3070bdaa3a1b6adf066ff0bb90c4c161fb27506307e6af06e18dfa73fb9e1725ac55960ffe98be24f1ca32028c2e8346858560405161162b93929190613031565b60405180910390a2505050565b60008183611646919061366b565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161167490613001565b60006040518083038185875af1925050503d80600081146116b1576040519150601f19603f3d011682016040523d82523d6000602084013e6116b6565b606091505b50509050806116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613484565b60405180910390fd5b7fcd90c098a9e93a26c6962609f457d04072f9e433f1e3bfb275e5c54d4398e79c838360405161172b9291906130f9565b60405180910390a1505050565b6117406111c7565b73ffffffffffffffffffffffffffffffffffffffff1661175e610da5565b73ffffffffffffffffffffffffffffffffffffffff16146117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab906133a4565b60405180910390fd5b565b6117be611738565b80600990805190602001906117d4929190612416565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060006118af87878787611dfe565b915091506118bc81611f0b565b8192505050949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f906132c4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a299190613122565b60405180910390a3505050565b611a4184848461131d565b611a4d8484848461225c565b611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390613224565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060098054611b0d906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b39906137f7565b8015611b865780601f10611b5b57610100808354040283529160200191611b86565b820191906000526020600020905b815481529060010190602001808311611b6957829003601f168201915b5050505050905090565b505050565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790613384565b60405180910390fd5b611c2981611a92565b15611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613284565b60405180910390fd5b611c7560008383611b90565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc59190613615565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8660008383611b95565b5050565b611d9382611a92565b611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc9906133e4565b60405180910390fd5b80600860008481526020019081526020016000209080519060200190611df9929190612416565b505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611e39576000600391509150611f02565b601b8560ff1614158015611e515750601c8560ff1614155b15611e63576000600491509150611f02565b600060018787878760405160008152602001604052604051611e88949392919061313d565b6020604051602081039080840390855afa158015611eaa573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ef957600060019250925050611f02565b80600092509250505b94509492505050565b60006004811115611f45577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611f7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611f8957612259565b60016004811115611fc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611ffc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561203d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612034906131a4565b60405180910390fd5b60026004811115612077577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156120b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e8906131e4565b60405180910390fd5b6003600481111561212b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612164577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c906132e4565b60405180910390fd5b6004808111156121de577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612217577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f90613344565b60405180910390fd5b5b50565b600061227d8473ffffffffffffffffffffffffffffffffffffffff166123f3565b156123e6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122a66111c7565b8786866040518563ffffffff1660e01b81526004016122c8949392919061306f565b602060405180830381600087803b1580156122e257600080fd5b505af192505050801561231357506040513d601f19601f8201168201806040525081019061231091906129b5565b60015b612396573d8060008114612343576040519150601f19603f3d011682016040523d82523d6000602084013e612348565b606091505b5060008151141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590613224565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123eb565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612422906137f7565b90600052602060002090601f016020900481019282612444576000855561248b565b82601f1061245d57805160ff191683800117855561248b565b8280016001018555821561248b579182015b8281111561248a57825182559160200191906001019061246f565b5b509050612498919061249c565b5090565b5b808211156124b557600081600090555060010161249d565b5090565b60006124cc6124c784613524565b6134ff565b9050808382526020820190508260005b8581101561250c57813585016124f2888261264f565b8452602084019350602083019250506001810190506124dc565b5050509392505050565b600061252961252484613550565b6134ff565b90508281526020810184848401111561254157600080fd5b61254c8482856137b5565b509392505050565b600061256761256284613581565b6134ff565b90508281526020810184848401111561257f57600080fd5b61258a8482856137b5565b509392505050565b6000813590506125a181613f2d565b92915050565b600082601f8301126125b857600080fd5b81356125c88482602086016124b9565b91505092915050565b6000813590506125e081613f44565b92915050565b6000813590506125f581613f5b565b92915050565b60008135905061260a81613f72565b92915050565b60008151905061261f81613f72565b92915050565b600082601f83011261263657600080fd5b8135612646848260208601612516565b91505092915050565b600082601f83011261266057600080fd5b8135612670848260208601612554565b91505092915050565b60008135905061268881613f89565b92915050565b60008135905061269d81613fa0565b92915050565b6000602082840312156126b557600080fd5b60006126c384828501612592565b91505092915050565b600080604083850312156126df57600080fd5b60006126ed85828601612592565b92505060206126fe85828601612592565b9150509250929050565b60008060006060848603121561271d57600080fd5b600061272b86828701612592565b935050602061273c86828701612592565b925050604061274d86828701612679565b9150509250925092565b6000806000806080858703121561276d57600080fd5b600061277b87828801612592565b945050602061278c87828801612592565b935050604061279d87828801612679565b925050606085013567ffffffffffffffff8111156127ba57600080fd5b6127c687828801612625565b91505092959194509250565b60008060008060008060c087890312156127eb57600080fd5b60006127f989828a01612592565b965050602087013567ffffffffffffffff81111561281657600080fd5b61282289828a016125a7565b955050604061283389828a01612679565b945050606061284489828a0161268e565b935050608061285589828a016125e6565b92505060a061286689828a016125e6565b9150509295509295509295565b6000806040838503121561288657600080fd5b600061289485828601612592565b92505060206128a5858286016125d1565b9150509250929050565b60008060008060008060c087890312156128c857600080fd5b60006128d689828a01612592565b965050602087013567ffffffffffffffff8111156128f357600080fd5b6128ff89828a0161264f565b955050604061291089828a01612679565b945050606061292189828a0161268e565b935050608061293289828a016125e6565b92505060a061294389828a016125e6565b9150509295509295509295565b6000806040838503121561296357600080fd5b600061297185828601612592565b925050602061298285828601612679565b9150509250929050565b60006020828403121561299e57600080fd5b60006129ac848285016125fb565b91505092915050565b6000602082840312156129c757600080fd5b60006129d584828501612610565b91505092915050565b6000602082840312156129f057600080fd5b600082013567ffffffffffffffff811115612a0a57600080fd5b612a168482850161264f565b91505092915050565b600060208284031215612a3157600080fd5b6000612a3f84828501612679565b91505092915050565b612a518161372a565b82525050565b612a608161373c565b82525050565b612a6f81613748565b82525050565b612a86612a8182613748565b613884565b82525050565b6000612a97826135c7565b612aa181856135dd565b9350612ab18185602086016137c4565b612aba8161394a565b840191505092915050565b60008154612ad2816137f7565b612adc81866135ee565b94506001821660008114612af75760018114612b0857612b3b565b60ff19831686528186019350612b3b565b612b11856135b2565b60005b83811015612b3357815481890152600182019150602081019050612b14565b838801955050505b50505092915050565b6000612b4f826135d2565b612b5981856135f9565b9350612b698185602086016137c4565b612b728161394a565b840191505092915050565b6000612b88826135d2565b612b92818561360a565b9350612ba28185602086016137c4565b80840191505092915050565b6000612bbb6018836135f9565b9150612bc68261395b565b602082019050919050565b6000612bde6007836135f9565b9150612be982613984565b602082019050919050565b6000612c01601f836135f9565b9150612c0c826139ad565b602082019050919050565b6000612c24601c8361360a565b9150612c2f826139d6565b601c82019050919050565b6000612c47601f836135f9565b9150612c52826139ff565b602082019050919050565b6000612c6a6032836135f9565b9150612c7582613a28565b604082019050919050565b6000612c8d6026836135f9565b9150612c9882613a77565b604082019050919050565b6000612cb06025836135f9565b9150612cbb82613ac6565b604082019050919050565b6000612cd3601c836135f9565b9150612cde82613b15565b602082019050919050565b6000612cf66024836135f9565b9150612d0182613b3e565b604082019050919050565b6000612d196019836135f9565b9150612d2482613b8d565b602082019050919050565b6000612d3c6022836135f9565b9150612d4782613bb6565b604082019050919050565b6000612d5f6016836135f9565b9150612d6a82613c05565b602082019050919050565b6000612d826029836135f9565b9150612d8d82613c2e565b604082019050919050565b6000612da56022836135f9565b9150612db082613c7d565b604082019050919050565b6000612dc8603e836135f9565b9150612dd382613ccc565b604082019050919050565b6000612deb6020836135f9565b9150612df682613d1b565b602082019050919050565b6000612e0e6020836135f9565b9150612e1982613d44565b602082019050919050565b6000612e316011836135f9565b9150612e3c82613d6d565b602082019050919050565b6000612e54601c836135f9565b9150612e5f82613d96565b602082019050919050565b6000612e776018836135f9565b9150612e8282613dbf565b602082019050919050565b6000612e9a6021836135f9565b9150612ea582613de8565b604082019050919050565b6000612ebd601b836135f9565b9150612ec882613e37565b602082019050919050565b6000612ee0600b836135f9565b9150612eeb82613e60565b602082019050919050565b6000612f036000836135ee565b9150612f0e82613e89565b600082019050919050565b6000612f266010836135f9565b9150612f3182613e8c565b602082019050919050565b6000612f49602e836135f9565b9150612f5482613eb5565b604082019050919050565b6000612f6c600d836135f9565b9150612f7782613f04565b602082019050919050565b612f8b8161379e565b82525050565b612f9a816137a8565b82525050565b6000612fac8284612ac5565b915081905092915050565b6000612fc38285612b7d565b9150612fcf8284612b7d565b91508190509392505050565b6000612fe682612c17565b9150612ff28284612a75565b60208201915081905092915050565b600061300c82612ef6565b9150819050919050565b600060208201905061302b6000830184612a48565b92915050565b60006060820190506130466000830186612a48565b6130536020830185612a48565b81810360408301526130658184612b44565b9050949350505050565b60006080820190506130846000830187612a48565b6130916020830186612a48565b61309e6040830185612f82565b81810360608301526130b08184612a8c565b905095945050505050565b60006060820190506130d06000830186612a48565b81810360208301526130e28185612b44565b90506130f16040830184612f82565b949350505050565b600060408201905061310e6000830185612a48565b61311b6020830184612f82565b9392505050565b60006020820190506131376000830184612a57565b92915050565b60006080820190506131526000830187612a66565b61315f6020830186612f91565b61316c6040830185612a66565b6131796060830184612a66565b95945050505050565b6000602082019050818103600083015261319c8184612b44565b905092915050565b600060208201905081810360008301526131bd81612bae565b9050919050565b600060208201905081810360008301526131dd81612bd1565b9050919050565b600060208201905081810360008301526131fd81612bf4565b9050919050565b6000602082019050818103600083015261321d81612c3a565b9050919050565b6000602082019050818103600083015261323d81612c5d565b9050919050565b6000602082019050818103600083015261325d81612c80565b9050919050565b6000602082019050818103600083015261327d81612ca3565b9050919050565b6000602082019050818103600083015261329d81612cc6565b9050919050565b600060208201905081810360008301526132bd81612ce9565b9050919050565b600060208201905081810360008301526132dd81612d0c565b9050919050565b600060208201905081810360008301526132fd81612d2f565b9050919050565b6000602082019050818103600083015261331d81612d52565b9050919050565b6000602082019050818103600083015261333d81612d75565b9050919050565b6000602082019050818103600083015261335d81612d98565b9050919050565b6000602082019050818103600083015261337d81612dbb565b9050919050565b6000602082019050818103600083015261339d81612dde565b9050919050565b600060208201905081810360008301526133bd81612e01565b9050919050565b600060208201905081810360008301526133dd81612e24565b9050919050565b600060208201905081810360008301526133fd81612e47565b9050919050565b6000602082019050818103600083015261341d81612e6a565b9050919050565b6000602082019050818103600083015261343d81612e8d565b9050919050565b6000602082019050818103600083015261345d81612eb0565b9050919050565b6000602082019050818103600083015261347d81612ed3565b9050919050565b6000602082019050818103600083015261349d81612f19565b9050919050565b600060208201905081810360008301526134bd81612f3c565b9050919050565b600060208201905081810360008301526134dd81612f5f565b9050919050565b60006020820190506134f96000830184612f82565b92915050565b600061350961351a565b90506135158282613829565b919050565b6000604051905090565b600067ffffffffffffffff82111561353f5761353e61391b565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561356b5761356a61391b565b5b6135748261394a565b9050602081019050919050565b600067ffffffffffffffff82111561359c5761359b61391b565b5b6135a58261394a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136208261379e565b915061362b8361379e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136605761365f61388e565b5b828201905092915050565b60006136768261379e565b91506136818361379e565b925082613691576136906138bd565b5b828204905092915050565b60006136a78261379e565b91506136b28361379e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136eb576136ea61388e565b5b828202905092915050565b60006137018261379e565b915061370c8361379e565b92508282101561371f5761371e61388e565b5b828203905092915050565b60006137358261377e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156137e25780820151818401526020810190506137c7565b838111156137f1576000848401525b50505050565b6000600282049050600182168061380f57607f821691505b60208210811415613823576138226138ec565b5b50919050565b6138328261394a565b810181811067ffffffffffffffff821117156138515761385061391b565b5b80604052505050565b6000613865826137a8565b915060ff8214156138795761387861388e565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420617574686f72697a656420746f206d696e7400000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f55524920736574206f66206e6f6e6578697374656e7420746f6b656e00000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f436f6c6c656374696f6e20616c72656164792072657665616c65640000000000600082015250565b7f4f7574206f662074696d65000000000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f4d696e696d756d20636f756e7400000000000000000000000000000000000000600082015250565b613f368161372a565b8114613f4157600080fd5b50565b613f4d8161373c565b8114613f5857600080fd5b50565b613f6481613748565b8114613f6f57600080fd5b50565b613f7b81613752565b8114613f8657600080fd5b50565b613f928161379e565b8114613f9d57600080fd5b50565b613fa9816137a8565b8114613fb457600080fd5b5056fea26469706673582212209108fff26e1fbdcfd4f4b8842240c7c5630f37633c7b81675d40e8147278149664736f6c63430008010033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005b68747470733a2f2f6170692e6b6f616c616d696e742e636f6d2f323962356639313639613062386264366532633833363532316162613364326462303539663230656465343561363936376535363237623333373132643733392f0000000000

-----Decoded View---------------
Arg [0] : _baseURIextended (string): https://api.koalamint.com/29b5f9169a0b8bd6e2c836521aba3d2db059f20ede45a6967e5627b33712d739/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000005b
Arg [2] : 68747470733a2f2f6170692e6b6f616c616d696e742e636f6d2f323962356639
Arg [3] : 3136396130623862643665326338333635323161626133643264623035396632
Arg [4] : 30656465343561363936376535363237623333373132643733392f0000000000


Deployed Bytecode Sourcemap

272:4062:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1505:300:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2405:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3870:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3402:407;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4547:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2743:1016:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4940:179:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1487:241:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2125:218:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1861:98:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1864:204:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:10;;;;;;;;;;;;;:::i;:::-;;2420:317:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1194:85:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2567:102:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4104:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5185:315;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2093:321:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4323:162:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1505:300:5;1607:4;1657:25;1642:40;;;:11;:40;;;;:104;;;;1713:33;1698:48;;;:11;:48;;;;1642:104;:156;;;;1762:36;1786:11;1762:23;:36::i;:::-;1642:156;1623:175;;1505:300;;;:::o;2405:98::-;2459:13;2491:5;2484:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2405:98;:::o;3870:167::-;3946:7;3965:23;3980:7;3965:14;:23::i;:::-;4006:15;:24;4022:7;4006:24;;;;;;;;;;;;;;;;;;;;;3999:31;;3870:167;;;:::o;3402:407::-;3482:13;3498:23;3513:7;3498:14;:23::i;:::-;3482:39;;3545:5;3539:11;;:2;:11;;;;3531:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3636:5;3620:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3645:37;3662:5;3669:12;:10;:12::i;:::-;3645:16;:37::i;:::-;3620:62;3599:171;;;;;;;;;;;;:::i;:::-;;;;;;;;;3781:21;3790:2;3794:7;3781:8;:21::i;:::-;3402:407;;;:::o;4547:327::-;4736:41;4755:12;:10;:12::i;:::-;4769:7;4736:18;:41::i;:::-;4728:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;4839:28;4849:4;4855:2;4859:7;4839:9;:28::i;:::-;4547:327;;;:::o;2743:1016:12:-;2895:32;2909:10;:17;885:7;2895:13;;:32;;;;:::i;:::-;2882:9;:45;;2874:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;3008:10;:17;2980:25;:15;:23;:25::i;:::-;:45;;;;:::i;:::-;2967:9;;:58;;2959:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;3075:1;3055:10;:17;:21;3047:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;3105:18;3126:60;3146:3;3151:10;3162:1;3151:13;;;;;;;;;;;;;;;;;;;;;;3166:10;3178:1;3181;3184;3126:19;:60::i;:::-;3105:81;;763:42;3204:27;;:10;:27;;;3196:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;3309:3;3291:15;:21;;;;:::i;:::-;3277:10;:35;;3269:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;3344:7;3339:104;3361:10;:17;3357:1;:21;;;3339:104;;;3398:34;3413:3;3418:10;3429:1;3418:13;;;;;;;;;;;;;;;;;;;;;;;;3398:14;:34::i;:::-;3380:3;;;;;:::i;:::-;;;;3339:104;;;;3461:14;3478:9;3461:26;;3523:1;936;3510:14;3506:196;;;3539:19;3561:31;3588:3;3561:22;936:1;3561:6;:10;;:22;;;;:::i;:::-;:26;;:31;;;;:::i;:::-;3539:53;;3624:11;3615:6;:20;;;;:::i;:::-;3606:29;;3649:42;584;3679:11;3649:8;:42::i;:::-;3506:196;;3720:32;674:42;3745:6;3720:8;:32::i;:::-;2743:1016;;;;;;;;:::o;4940:179:5:-;5073:39;5090:4;5096:2;5100:7;5073:39;;;;;;;;;;;;:16;:39::i;:::-;4940:179;;;:::o;1487:241:12:-;1087:13:10;:11;:13::i;:::-;1633:16:12::1;1617:34;;;;;;1596:15;1580:33;;;;;;:::i;:::-;;;;;;;;:71;;1572:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;1693:28;1704:16;1693:10;:28::i;:::-;1487:241:::0;:::o;2125:218:5:-;2197:7;2216:13;2232:7;:16;2240:7;2232:16;;;;;;;;;;;;;;;;;;;;;2216:32;;2283:1;2266:19;;:5;:19;;;;2258:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2331:5;2324:12;;;2125:218;;;:::o;1861:98:12:-;1087:13:10;:11;:13::i;:::-;1942:10:12::1;1930:9;:22;;;;1861:98:::0;:::o;1864:204:5:-;1936:7;1980:1;1963:19;;:5;:19;;;;1955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2045:9;:16;2055:5;2045:16;;;;;;;;;;;;;;;;2038:23;;1864:204;;;:::o;1824:101:10:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;2420:317:12:-;2567:7;2592:138;2690:3;2695:9;2706:10;2679:38;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2669:49;;;;;;2616:103;;;;;;;;:::i;:::-;;;;;;;;;;;;;2606:114;;;;;;2722:1;2725;2728;2592:13;:138::i;:::-;2585:145;;2420:317;;;;;;;;:::o;1194:85:10:-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;2567:102:5:-;2623:13;2655:7;2648:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2567:102;:::o;4104:153::-;4198:52;4217:12;:10;:12::i;:::-;4231:8;4241;4198:18;:52::i;:::-;4104:153;;:::o;5185:315::-;5353:41;5372:12;:10;:12::i;:::-;5386:7;5353:18;:41::i;:::-;5345:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;5455:38;5469:4;5475:2;5479:7;5488:4;5455:13;:38::i;:::-;5185:315;;;;:::o;2093:321:12:-;2166:13;2199:16;2207:7;2199;:16::i;:::-;2191:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;2262:23;2288:10;:19;2299:7;2288:19;;;;;;;;;;;2262:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2317:18;2338:10;:8;:10::i;:::-;2317:31;;2390:4;2396:9;2373:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2359:48;;;;2093:321;;;:::o;4323:162:5:-;4420:4;4443:18;:25;4462:5;4443:25;;;;;;;;;;;;;;;:35;4469:8;4443:35;;;;;;;;;;;;;;;;;;;;;;;;;4436:42;;4323:162;;;;:::o;2074:198:10:-;1087:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;;;2154:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;829:155:4:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;11592:133:5:-;11673:16;11681:7;11673;:16::i;:::-;11665:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;11592:133;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;10894:171:5:-;10995:2;10968:15;:24;10984:7;10968:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11050:7;11046:2;11012:46;;11021:23;11036:7;11021:14;:23::i;:::-;11012:46;;;;;;;;;;;;10894:171;;:::o;7252:261::-;7345:4;7361:13;7377:23;7392:7;7377:14;:23::i;:::-;7361:39;;7429:5;7418:16;;:7;:16;;;:52;;;;7438:32;7455:5;7462:7;7438:16;:32::i;:::-;7418:52;:87;;;;7498:7;7474:31;;:20;7486:7;7474:11;:20::i;:::-;:31;;;7418:87;7410:96;;;7252:261;;;;:::o;10177:605::-;10331:4;10304:31;;:23;10319:7;10304:14;:23::i;:::-;:31;;;10296:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10409:1;10395:16;;:2;:16;;;;10387:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10463:39;10484:4;10490:2;10494:7;10463:20;:39::i;:::-;10564:29;10581:1;10585:7;10564:8;:29::i;:::-;10623:1;10604:9;:15;10614:4;10604:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10651:1;10634:9;:13;10644:2;10634:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10681:2;10662:7;:16;10670:7;10662:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10718:7;10714:2;10699:27;;10708:4;10699:27;;;;;;;;;;;;10737:38;10757:4;10763:2;10767:7;10737:19;:38::i;:::-;10177:605;;;:::o;3465:96:11:-;3523:7;3553:1;3549;:5;;;;:::i;:::-;3542:12;;3465:96;;;;:::o;827:112:2:-;892:7;918;:14;;;911:21;;827:112;;;:::o;3765:356:12:-;3845:16;3864:25;:15;:23;:25::i;:::-;3845:44;;3908:27;:15;:25;:27::i;:::-;3967:1;3956:8;:12;;;;:::i;:::-;3945:23;;3978:20;3984:3;3989:8;3978:5;:20::i;:::-;4008:33;4021:8;4031:9;4008:12;:33::i;:::-;4073:8;4057:57;674:42;4099:3;4104:9;4057:57;;;;;;;;:::i;:::-;;;;;;;;3765:356;;;:::o;3850:96:11:-;3908:7;3938:1;3934;:5;;;;:::i;:::-;3927:12;;3850:96;;;;:::o;4127:205:12:-;4191:12;4209:2;:7;;4224:5;4209:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4190:44;;;4252:7;4244:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;4295:30;4315:2;4319:5;4295:30;;;;;;;:::i;:::-;;;;;;;;4127:205;;;:::o;1352:130:10:-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;1734:121:12:-;1087:13:10;:11;:13::i;:::-;1832:16:12::1;1814:15;:34;;;;;;;;;;;;:::i;:::-;;1734:121:::0;:::o;2426:187:10:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2426:187;;:::o;7545:270:3:-;7668:7;7688:17;7707:18;7729:25;7740:4;7746:1;7749;7752;7729:10;:25::i;:::-;7687:67;;;;7764:18;7776:5;7764:11;:18::i;:::-;7799:9;7792:16;;;;7545:270;;;;;;:::o;11201:307:5:-;11351:8;11342:17;;:5;:17;;;;11334:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11437:8;11399:18;:25;11418:5;11399:25;;;;;;;;;;;;;;;:35;11425:8;11399:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11482:8;11460:41;;11475:5;11460:41;;;11492:8;11460:41;;;;;;:::i;:::-;;;;;;;;11201:307;;;:::o;6361:305::-;6511:28;6521:4;6527:2;6531:7;6511:9;:28::i;:::-;6557:47;6580:4;6586:2;6590:7;6599:4;6557:22;:47::i;:::-;6549:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6361:305;;;;:::o;6969:125::-;7034:4;7085:1;7057:30;;:7;:16;7065:7;7057:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7050:37;;6969:125;;;:::o;1969:114:12:-;2029:13;2061:15;2054:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969:114;:::o;13664:122:5:-;;;;:::o;14158:121::-;;;;:::o;945:123:2:-;1050:1;1032:7;:14;;;:19;;;;;;;;;;;945:123;:::o;8803:427:5:-;8896:1;8882:16;;:2;:16;;;;8874:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;8954:16;8962:7;8954;:16::i;:::-;8953:17;8945:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9014:45;9043:1;9047:2;9051:7;9014:20;:45::i;:::-;9087:1;9070:9;:13;9080:2;9070:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9117:2;9098:7;:16;9106:7;9098:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9160:7;9156:2;9135:33;;9152:1;9135:33;;;;;;;;;;;;9179:44;9207:1;9211:2;9215:7;9179:19;:44::i;:::-;8803:427;;:::o;1281:196:12:-;1380:16;1388:7;1380;:16::i;:::-;1372:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;1461:9;1439:10;:19;1450:7;1439:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;1281:196;;:::o;5809:1603:3:-;5935:7;5944:12;6859:66;6854:1;6846:10;;:79;6842:161;;;6957:1;6961:30;6941:51;;;;;;6842:161;7021:2;7016:1;:7;;;;:18;;;;;7032:2;7027:1;:7;;;;7016:18;7012:100;;;7066:1;7070:30;7050:51;;;;;;7012:100;7206:14;7223:24;7233:4;7239:1;7242;7245;7223:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7206:41;;7279:1;7261:20;;:6;:20;;;7257:101;;;7313:1;7317:29;7297:50;;;;;;;7257:101;7376:6;7384:20;7368:37;;;;;5809:1603;;;;;;;;:::o;547:631::-;624:20;615:29;;;;;;;;;;;;;;;;:5;:29;;;;;;;;;;;;;;;;;611:561;;;660:7;;611:561;720:29;711:38;;;;;;;;;;;;;;;;:5;:38;;;;;;;;;;;;;;;;;707:465;;;765:34;;;;;;;;;;:::i;:::-;;;;;;;;707:465;829:35;820:44;;;;;;;;;;;;;;;;:5;:44;;;;;;;;;;;;;;;;;816:356;;;880:41;;;;;;;;;;:::i;:::-;;;;;;;;816:356;951:30;942:39;;;;;;;;;;;;;;;;:5;:39;;;;;;;;;;;;;;;;;938:234;;;997:44;;;;;;;;;;:::i;:::-;;;;;;;;938:234;1071:30;1062:39;;;;;;;;;;;;;;;;:5;:39;;;;;;;;;;;;;;;;;1058:114;;;1117:44;;;;;;;;;;:::i;:::-;;;;;;;;1058:114;547:631;;:::o;12277:831:5:-;12426:4;12446:15;:2;:13;;;:15::i;:::-;12442:660;;;12497:2;12481:36;;;12518:12;:10;:12::i;:::-;12532:4;12538:7;12547:4;12481:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12477:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12736:1;12719:6;:13;:18;12715:321;;;12761:60;;;;;;;;;;:::i;:::-;;;;;;;;12715:321;12988:6;12982:13;12973:6;12969:2;12965:15;12958:38;12477:573;12612:41;;;12602:51;;;:6;:51;;;;12595:58;;;;;12442:660;13087:4;13080:11;;12277:831;;;;;;;:::o;1175:320:0:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;23:616:14:-;;154:91;170:74;237:6;170:74;:::i;:::-;154:91;:::i;:::-;145:100;;265:5;293:6;286:5;279:21;319:4;312:5;308:16;301:23;;344:6;375:1;360:273;385:6;382:1;379:13;360:273;;;477:3;464:17;456:6;452:30;507:47;550:3;538:10;507:47;:::i;:::-;502:3;495:60;584:4;579:3;575:14;568:21;;618:4;613:3;609:14;602:21;;420:213;407:1;404;400:9;395:14;;360:273;;;364:14;135:504;;;;;;;:::o;645:343::-;;747:65;763:48;804:6;763:48;:::i;:::-;747:65;:::i;:::-;738:74;;835:6;828:5;821:21;873:4;866:5;862:16;911:3;902:6;897:3;893:16;890:25;887:2;;;928:1;925;918:12;887:2;941:41;975:6;970:3;965;941:41;:::i;:::-;728:260;;;;;;:::o;994:345::-;;1097:66;1113:49;1155:6;1113:49;:::i;:::-;1097:66;:::i;:::-;1088:75;;1186:6;1179:5;1172:21;1224:4;1217:5;1213:16;1262:3;1253:6;1248:3;1244:16;1241:25;1238:2;;;1279:1;1276;1269:12;1238:2;1292:41;1326:6;1321:3;1316;1292:41;:::i;:::-;1078:261;;;;;;:::o;1345:139::-;;1429:6;1416:20;1407:29;;1445:33;1472:5;1445:33;:::i;:::-;1397:87;;;;:::o;1506:323::-;;1636:3;1629:4;1621:6;1617:17;1613:27;1603:2;;1654:1;1651;1644:12;1603:2;1694:6;1681:20;1719:104;1819:3;1811:6;1804:4;1796:6;1792:17;1719:104;:::i;:::-;1710:113;;1593:236;;;;;:::o;1835:133::-;;1916:6;1903:20;1894:29;;1932:30;1956:5;1932:30;:::i;:::-;1884:84;;;;:::o;1974:139::-;;2058:6;2045:20;2036:29;;2074:33;2101:5;2074:33;:::i;:::-;2026:87;;;;:::o;2119:137::-;;2202:6;2189:20;2180:29;;2218:32;2244:5;2218:32;:::i;:::-;2170:86;;;;:::o;2262:141::-;;2349:6;2343:13;2334:22;;2365:32;2391:5;2365:32;:::i;:::-;2324:79;;;;:::o;2422:271::-;;2526:3;2519:4;2511:6;2507:17;2503:27;2493:2;;2544:1;2541;2534:12;2493:2;2584:6;2571:20;2609:78;2683:3;2675:6;2668:4;2660:6;2656:17;2609:78;:::i;:::-;2600:87;;2483:210;;;;;:::o;2713:273::-;;2818:3;2811:4;2803:6;2799:17;2795:27;2785:2;;2836:1;2833;2826:12;2785:2;2876:6;2863:20;2901:79;2976:3;2968:6;2961:4;2953:6;2949:17;2901:79;:::i;:::-;2892:88;;2775:211;;;;;:::o;2992:139::-;;3076:6;3063:20;3054:29;;3092:33;3119:5;3092:33;:::i;:::-;3044:87;;;;:::o;3137:135::-;;3219:6;3206:20;3197:29;;3235:31;3260:5;3235:31;:::i;:::-;3187:85;;;;:::o;3278:262::-;;3386:2;3374:9;3365:7;3361:23;3357:32;3354:2;;;3402:1;3399;3392:12;3354:2;3445:1;3470:53;3515:7;3506:6;3495:9;3491:22;3470:53;:::i;:::-;3460:63;;3416:117;3344:196;;;;:::o;3546:407::-;;;3671:2;3659:9;3650:7;3646:23;3642:32;3639:2;;;3687:1;3684;3677:12;3639:2;3730:1;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3701:117;3857:2;3883:53;3928:7;3919:6;3908:9;3904:22;3883:53;:::i;:::-;3873:63;;3828:118;3629:324;;;;;:::o;3959:552::-;;;;4101:2;4089:9;4080:7;4076:23;4072:32;4069:2;;;4117:1;4114;4107:12;4069:2;4160:1;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4131:117;4287:2;4313:53;4358:7;4349:6;4338:9;4334:22;4313:53;:::i;:::-;4303:63;;4258:118;4415:2;4441:53;4486:7;4477:6;4466:9;4462:22;4441:53;:::i;:::-;4431:63;;4386:118;4059:452;;;;;:::o;4517:809::-;;;;;4685:3;4673:9;4664:7;4660:23;4656:33;4653:2;;;4702:1;4699;4692:12;4653:2;4745:1;4770:53;4815:7;4806:6;4795:9;4791:22;4770:53;:::i;:::-;4760:63;;4716:117;4872:2;4898:53;4943:7;4934:6;4923:9;4919:22;4898:53;:::i;:::-;4888:63;;4843:118;5000:2;5026:53;5071:7;5062:6;5051:9;5047:22;5026:53;:::i;:::-;5016:63;;4971:118;5156:2;5145:9;5141:18;5128:32;5187:18;5179:6;5176:30;5173:2;;;5219:1;5216;5209:12;5173:2;5247:62;5301:7;5292:6;5281:9;5277:22;5247:62;:::i;:::-;5237:72;;5099:220;4643:683;;;;;;;:::o;5332:1149::-;;;;;;;5558:3;5546:9;5537:7;5533:23;5529:33;5526:2;;;5575:1;5572;5565:12;5526:2;5618:1;5643:53;5688:7;5679:6;5668:9;5664:22;5643:53;:::i;:::-;5633:63;;5589:117;5773:2;5762:9;5758:18;5745:32;5804:18;5796:6;5793:30;5790:2;;;5836:1;5833;5826:12;5790:2;5864:88;5944:7;5935:6;5924:9;5920:22;5864:88;:::i;:::-;5854:98;;5716:246;6001:2;6027:53;6072:7;6063:6;6052:9;6048:22;6027:53;:::i;:::-;6017:63;;5972:118;6129:2;6155:51;6198:7;6189:6;6178:9;6174:22;6155:51;:::i;:::-;6145:61;;6100:116;6255:3;6282:53;6327:7;6318:6;6307:9;6303:22;6282:53;:::i;:::-;6272:63;;6226:119;6384:3;6411:53;6456:7;6447:6;6436:9;6432:22;6411:53;:::i;:::-;6401:63;;6355:119;5516:965;;;;;;;;:::o;6487:401::-;;;6609:2;6597:9;6588:7;6584:23;6580:32;6577:2;;;6625:1;6622;6615:12;6577:2;6668:1;6693:53;6738:7;6729:6;6718:9;6714:22;6693:53;:::i;:::-;6683:63;;6639:117;6795:2;6821:50;6863:7;6854:6;6843:9;6839:22;6821:50;:::i;:::-;6811:60;;6766:115;6567:321;;;;;:::o;6894:1099::-;;;;;;;7095:3;7083:9;7074:7;7070:23;7066:33;7063:2;;;7112:1;7109;7102:12;7063:2;7155:1;7180:53;7225:7;7216:6;7205:9;7201:22;7180:53;:::i;:::-;7170:63;;7126:117;7310:2;7299:9;7295:18;7282:32;7341:18;7333:6;7330:30;7327:2;;;7373:1;7370;7363:12;7327:2;7401:63;7456:7;7447:6;7436:9;7432:22;7401:63;:::i;:::-;7391:73;;7253:221;7513:2;7539:53;7584:7;7575:6;7564:9;7560:22;7539:53;:::i;:::-;7529:63;;7484:118;7641:2;7667:51;7710:7;7701:6;7690:9;7686:22;7667:51;:::i;:::-;7657:61;;7612:116;7767:3;7794:53;7839:7;7830:6;7819:9;7815:22;7794:53;:::i;:::-;7784:63;;7738:119;7896:3;7923:53;7968:7;7959:6;7948:9;7944:22;7923:53;:::i;:::-;7913:63;;7867:119;7053:940;;;;;;;;:::o;7999:407::-;;;8124:2;8112:9;8103:7;8099:23;8095:32;8092:2;;;8140:1;8137;8130:12;8092:2;8183:1;8208:53;8253:7;8244:6;8233:9;8229:22;8208:53;:::i;:::-;8198:63;;8154:117;8310:2;8336:53;8381:7;8372:6;8361:9;8357:22;8336:53;:::i;:::-;8326:63;;8281:118;8082:324;;;;;:::o;8412:260::-;;8519:2;8507:9;8498:7;8494:23;8490:32;8487:2;;;8535:1;8532;8525:12;8487:2;8578:1;8603:52;8647:7;8638:6;8627:9;8623:22;8603:52;:::i;:::-;8593:62;;8549:116;8477:195;;;;:::o;8678:282::-;;8796:2;8784:9;8775:7;8771:23;8767:32;8764:2;;;8812:1;8809;8802:12;8764:2;8855:1;8880:63;8935:7;8926:6;8915:9;8911:22;8880:63;:::i;:::-;8870:73;;8826:127;8754:206;;;;:::o;8966:375::-;;9084:2;9072:9;9063:7;9059:23;9055:32;9052:2;;;9100:1;9097;9090:12;9052:2;9171:1;9160:9;9156:17;9143:31;9201:18;9193:6;9190:30;9187:2;;;9233:1;9230;9223:12;9187:2;9261:63;9316:7;9307:6;9296:9;9292:22;9261:63;:::i;:::-;9251:73;;9114:220;9042:299;;;;:::o;9347:262::-;;9455:2;9443:9;9434:7;9430:23;9426:32;9423:2;;;9471:1;9468;9461:12;9423:2;9514:1;9539:53;9584:7;9575:6;9564:9;9560:22;9539:53;:::i;:::-;9529:63;;9485:117;9413:196;;;;:::o;9615:118::-;9702:24;9720:5;9702:24;:::i;:::-;9697:3;9690:37;9680:53;;:::o;9739:109::-;9820:21;9835:5;9820:21;:::i;:::-;9815:3;9808:34;9798:50;;:::o;9854:118::-;9941:24;9959:5;9941:24;:::i;:::-;9936:3;9929:37;9919:53;;:::o;9978:157::-;10083:45;10103:24;10121:5;10103:24;:::i;:::-;10083:45;:::i;:::-;10078:3;10071:58;10061:74;;:::o;10141:360::-;;10255:38;10287:5;10255:38;:::i;:::-;10309:70;10372:6;10367:3;10309:70;:::i;:::-;10302:77;;10388:52;10433:6;10428:3;10421:4;10414:5;10410:16;10388:52;:::i;:::-;10465:29;10487:6;10465:29;:::i;:::-;10460:3;10456:39;10449:46;;10231:270;;;;;:::o;10529:849::-;;10671:5;10665:12;10700:36;10726:9;10700:36;:::i;:::-;10752:88;10833:6;10828:3;10752:88;:::i;:::-;10745:95;;10871:1;10860:9;10856:17;10887:1;10882:137;;;;11033:1;11028:344;;;;10849:523;;10882:137;10966:4;10962:9;10951;10947:25;10942:3;10935:38;11002:6;10997:3;10993:16;10986:23;;10882:137;;11028:344;11095:41;11130:5;11095:41;:::i;:::-;11158:1;11172:154;11186:6;11183:1;11180:13;11172:154;;;11260:7;11254:14;11250:1;11245:3;11241:11;11234:35;11310:1;11301:7;11297:15;11286:26;;11208:4;11205:1;11201:12;11196:17;;11172:154;;;11355:6;11350:3;11346:16;11339:23;;11035:337;;10849:523;;10638:740;;;;;;:::o;11384:364::-;;11500:39;11533:5;11500:39;:::i;:::-;11555:71;11619:6;11614:3;11555:71;:::i;:::-;11548:78;;11635:52;11680:6;11675:3;11668:4;11661:5;11657:16;11635:52;:::i;:::-;11712:29;11734:6;11712:29;:::i;:::-;11707:3;11703:39;11696:46;;11476:272;;;;;:::o;11754:377::-;;11888:39;11921:5;11888:39;:::i;:::-;11943:89;12025:6;12020:3;11943:89;:::i;:::-;11936:96;;12041:52;12086:6;12081:3;12074:4;12067:5;12063:16;12041:52;:::i;:::-;12118:6;12113:3;12109:16;12102:23;;11864:267;;;;;:::o;12137:366::-;;12300:67;12364:2;12359:3;12300:67;:::i;:::-;12293:74;;12376:93;12465:3;12376:93;:::i;:::-;12494:2;12489:3;12485:12;12478:19;;12283:220;;;:::o;12509:365::-;;12672:66;12736:1;12731:3;12672:66;:::i;:::-;12665:73;;12747:93;12836:3;12747:93;:::i;:::-;12865:2;12860:3;12856:12;12849:19;;12655:219;;;:::o;12880:366::-;;13043:67;13107:2;13102:3;13043:67;:::i;:::-;13036:74;;13119:93;13208:3;13119:93;:::i;:::-;13237:2;13232:3;13228:12;13221:19;;13026:220;;;:::o;13252:402::-;;13433:85;13515:2;13510:3;13433:85;:::i;:::-;13426:92;;13527:93;13616:3;13527:93;:::i;:::-;13645:2;13640:3;13636:12;13629:19;;13416:238;;;:::o;13660:366::-;;13823:67;13887:2;13882:3;13823:67;:::i;:::-;13816:74;;13899:93;13988:3;13899:93;:::i;:::-;14017:2;14012:3;14008:12;14001:19;;13806:220;;;:::o;14032:366::-;;14195:67;14259:2;14254:3;14195:67;:::i;:::-;14188:74;;14271:93;14360:3;14271:93;:::i;:::-;14389:2;14384:3;14380:12;14373:19;;14178:220;;;:::o;14404:366::-;;14567:67;14631:2;14626:3;14567:67;:::i;:::-;14560:74;;14643:93;14732:3;14643:93;:::i;:::-;14761:2;14756:3;14752:12;14745:19;;14550:220;;;:::o;14776:366::-;;14939:67;15003:2;14998:3;14939:67;:::i;:::-;14932:74;;15015:93;15104:3;15015:93;:::i;:::-;15133:2;15128:3;15124:12;15117:19;;14922:220;;;:::o;15148:366::-;;15311:67;15375:2;15370:3;15311:67;:::i;:::-;15304:74;;15387:93;15476:3;15387:93;:::i;:::-;15505:2;15500:3;15496:12;15489:19;;15294:220;;;:::o;15520:366::-;;15683:67;15747:2;15742:3;15683:67;:::i;:::-;15676:74;;15759:93;15848:3;15759:93;:::i;:::-;15877:2;15872:3;15868:12;15861:19;;15666:220;;;:::o;15892:366::-;;16055:67;16119:2;16114:3;16055:67;:::i;:::-;16048:74;;16131:93;16220:3;16131:93;:::i;:::-;16249:2;16244:3;16240:12;16233:19;;16038:220;;;:::o;16264:366::-;;16427:67;16491:2;16486:3;16427:67;:::i;:::-;16420:74;;16503:93;16592:3;16503:93;:::i;:::-;16621:2;16616:3;16612:12;16605:19;;16410:220;;;:::o;16636:366::-;;16799:67;16863:2;16858:3;16799:67;:::i;:::-;16792:74;;16875:93;16964:3;16875:93;:::i;:::-;16993:2;16988:3;16984:12;16977:19;;16782:220;;;:::o;17008:366::-;;17171:67;17235:2;17230:3;17171:67;:::i;:::-;17164:74;;17247:93;17336:3;17247:93;:::i;:::-;17365:2;17360:3;17356:12;17349:19;;17154:220;;;:::o;17380:366::-;;17543:67;17607:2;17602:3;17543:67;:::i;:::-;17536:74;;17619:93;17708:3;17619:93;:::i;:::-;17737:2;17732:3;17728:12;17721:19;;17526:220;;;:::o;17752:366::-;;17915:67;17979:2;17974:3;17915:67;:::i;:::-;17908:74;;17991:93;18080:3;17991:93;:::i;:::-;18109:2;18104:3;18100:12;18093:19;;17898:220;;;:::o;18124:366::-;;18287:67;18351:2;18346:3;18287:67;:::i;:::-;18280:74;;18363:93;18452:3;18363:93;:::i;:::-;18481:2;18476:3;18472:12;18465:19;;18270:220;;;:::o;18496:366::-;;18659:67;18723:2;18718:3;18659:67;:::i;:::-;18652:74;;18735:93;18824:3;18735:93;:::i;:::-;18853:2;18848:3;18844:12;18837:19;;18642:220;;;:::o;18868:366::-;;19031:67;19095:2;19090:3;19031:67;:::i;:::-;19024:74;;19107:93;19196:3;19107:93;:::i;:::-;19225:2;19220:3;19216:12;19209:19;;19014:220;;;:::o;19240:366::-;;19403:67;19467:2;19462:3;19403:67;:::i;:::-;19396:74;;19479:93;19568:3;19479:93;:::i;:::-;19597:2;19592:3;19588:12;19581:19;;19386:220;;;:::o;19612:366::-;;19775:67;19839:2;19834:3;19775:67;:::i;:::-;19768:74;;19851:93;19940:3;19851:93;:::i;:::-;19969:2;19964:3;19960:12;19953:19;;19758:220;;;:::o;19984:366::-;;20147:67;20211:2;20206:3;20147:67;:::i;:::-;20140:74;;20223:93;20312:3;20223:93;:::i;:::-;20341:2;20336:3;20332:12;20325:19;;20130:220;;;:::o;20356:366::-;;20519:67;20583:2;20578:3;20519:67;:::i;:::-;20512:74;;20595:93;20684:3;20595:93;:::i;:::-;20713:2;20708:3;20704:12;20697:19;;20502:220;;;:::o;20728:366::-;;20891:67;20955:2;20950:3;20891:67;:::i;:::-;20884:74;;20967:93;21056:3;20967:93;:::i;:::-;21085:2;21080:3;21076:12;21069:19;;20874:220;;;:::o;21100:398::-;;21280:83;21361:1;21356:3;21280:83;:::i;:::-;21273:90;;21372:93;21461:3;21372:93;:::i;:::-;21490:1;21485:3;21481:11;21474:18;;21263:235;;;:::o;21504:366::-;;21667:67;21731:2;21726:3;21667:67;:::i;:::-;21660:74;;21743:93;21832:3;21743:93;:::i;:::-;21861:2;21856:3;21852:12;21845:19;;21650:220;;;:::o;21876:366::-;;22039:67;22103:2;22098:3;22039:67;:::i;:::-;22032:74;;22115:93;22204:3;22115:93;:::i;:::-;22233:2;22228:3;22224:12;22217:19;;22022:220;;;:::o;22248:366::-;;22411:67;22475:2;22470:3;22411:67;:::i;:::-;22404:74;;22487:93;22576:3;22487:93;:::i;:::-;22605:2;22600:3;22596:12;22589:19;;22394:220;;;:::o;22620:118::-;22707:24;22725:5;22707:24;:::i;:::-;22702:3;22695:37;22685:53;;:::o;22744:112::-;22827:22;22843:5;22827:22;:::i;:::-;22822:3;22815:35;22805:51;;:::o;22862:273::-;;23015:94;23105:3;23096:6;23015:94;:::i;:::-;23008:101;;23126:3;23119:10;;22997:138;;;;:::o;23141:435::-;;23343:95;23434:3;23425:6;23343:95;:::i;:::-;23336:102;;23455:95;23546:3;23537:6;23455:95;:::i;:::-;23448:102;;23567:3;23560:10;;23325:251;;;;;:::o;23582:522::-;;23817:148;23961:3;23817:148;:::i;:::-;23810:155;;23975:75;24046:3;24037:6;23975:75;:::i;:::-;24075:2;24070:3;24066:12;24059:19;;24095:3;24088:10;;23799:305;;;;:::o;24110:379::-;;24316:147;24459:3;24316:147;:::i;:::-;24309:154;;24480:3;24473:10;;24298:191;;;:::o;24495:222::-;;24626:2;24615:9;24611:18;24603:26;;24639:71;24707:1;24696:9;24692:17;24683:6;24639:71;:::i;:::-;24593:124;;;;:::o;24723:533::-;;24930:2;24919:9;24915:18;24907:26;;24943:71;25011:1;25000:9;24996:17;24987:6;24943:71;:::i;:::-;25024:72;25092:2;25081:9;25077:18;25068:6;25024:72;:::i;:::-;25143:9;25137:4;25133:20;25128:2;25117:9;25113:18;25106:48;25171:78;25244:4;25235:6;25171:78;:::i;:::-;25163:86;;24897:359;;;;;;:::o;25262:640::-;;25495:3;25484:9;25480:19;25472:27;;25509:71;25577:1;25566:9;25562:17;25553:6;25509:71;:::i;:::-;25590:72;25658:2;25647:9;25643:18;25634:6;25590:72;:::i;:::-;25672;25740:2;25729:9;25725:18;25716:6;25672:72;:::i;:::-;25791:9;25785:4;25781:20;25776:2;25765:9;25761:18;25754:48;25819:76;25890:4;25881:6;25819:76;:::i;:::-;25811:84;;25462:440;;;;;;;:::o;25908:533::-;;26115:2;26104:9;26100:18;26092:26;;26128:71;26196:1;26185:9;26181:17;26172:6;26128:71;:::i;:::-;26246:9;26240:4;26236:20;26231:2;26220:9;26216:18;26209:48;26274:78;26347:4;26338:6;26274:78;:::i;:::-;26266:86;;26362:72;26430:2;26419:9;26415:18;26406:6;26362:72;:::i;:::-;26082:359;;;;;;:::o;26447:332::-;;26606:2;26595:9;26591:18;26583:26;;26619:71;26687:1;26676:9;26672:17;26663:6;26619:71;:::i;:::-;26700:72;26768:2;26757:9;26753:18;26744:6;26700:72;:::i;:::-;26573:206;;;;;:::o;26785:210::-;;26910:2;26899:9;26895:18;26887:26;;26923:65;26985:1;26974:9;26970:17;26961:6;26923:65;:::i;:::-;26877:118;;;;:::o;27001:545::-;;27212:3;27201:9;27197:19;27189:27;;27226:71;27294:1;27283:9;27279:17;27270:6;27226:71;:::i;:::-;27307:68;27371:2;27360:9;27356:18;27347:6;27307:68;:::i;:::-;27385:72;27453:2;27442:9;27438:18;27429:6;27385:72;:::i;:::-;27467;27535:2;27524:9;27520:18;27511:6;27467:72;:::i;:::-;27179:367;;;;;;;:::o;27552:313::-;;27703:2;27692:9;27688:18;27680:26;;27752:9;27746:4;27742:20;27738:1;27727:9;27723:17;27716:47;27780:78;27853:4;27844:6;27780:78;:::i;:::-;27772:86;;27670:195;;;;:::o;27871:419::-;;28075:2;28064:9;28060:18;28052:26;;28124:9;28118:4;28114:20;28110:1;28099:9;28095:17;28088:47;28152:131;28278:4;28152:131;:::i;:::-;28144:139;;28042:248;;;:::o;28296:419::-;;28500:2;28489:9;28485:18;28477:26;;28549:9;28543:4;28539:20;28535:1;28524:9;28520:17;28513:47;28577:131;28703:4;28577:131;:::i;:::-;28569:139;;28467:248;;;:::o;28721:419::-;;28925:2;28914:9;28910:18;28902:26;;28974:9;28968:4;28964:20;28960:1;28949:9;28945:17;28938:47;29002:131;29128:4;29002:131;:::i;:::-;28994:139;;28892:248;;;:::o;29146:419::-;;29350:2;29339:9;29335:18;29327:26;;29399:9;29393:4;29389:20;29385:1;29374:9;29370:17;29363:47;29427:131;29553:4;29427:131;:::i;:::-;29419:139;;29317:248;;;:::o;29571:419::-;;29775:2;29764:9;29760:18;29752:26;;29824:9;29818:4;29814:20;29810:1;29799:9;29795:17;29788:47;29852:131;29978:4;29852:131;:::i;:::-;29844:139;;29742:248;;;:::o;29996:419::-;;30200:2;30189:9;30185:18;30177:26;;30249:9;30243:4;30239:20;30235:1;30224:9;30220:17;30213:47;30277:131;30403:4;30277:131;:::i;:::-;30269:139;;30167:248;;;:::o;30421:419::-;;30625:2;30614:9;30610:18;30602:26;;30674:9;30668:4;30664:20;30660:1;30649:9;30645:17;30638:47;30702:131;30828:4;30702:131;:::i;:::-;30694:139;;30592:248;;;:::o;30846:419::-;;31050:2;31039:9;31035:18;31027:26;;31099:9;31093:4;31089:20;31085:1;31074:9;31070:17;31063:47;31127:131;31253:4;31127:131;:::i;:::-;31119:139;;31017:248;;;:::o;31271:419::-;;31475:2;31464:9;31460:18;31452:26;;31524:9;31518:4;31514:20;31510:1;31499:9;31495:17;31488:47;31552:131;31678:4;31552:131;:::i;:::-;31544:139;;31442:248;;;:::o;31696:419::-;;31900:2;31889:9;31885:18;31877:26;;31949:9;31943:4;31939:20;31935:1;31924:9;31920:17;31913:47;31977:131;32103:4;31977:131;:::i;:::-;31969:139;;31867:248;;;:::o;32121:419::-;;32325:2;32314:9;32310:18;32302:26;;32374:9;32368:4;32364:20;32360:1;32349:9;32345:17;32338:47;32402:131;32528:4;32402:131;:::i;:::-;32394:139;;32292:248;;;:::o;32546:419::-;;32750:2;32739:9;32735:18;32727:26;;32799:9;32793:4;32789:20;32785:1;32774:9;32770:17;32763:47;32827:131;32953:4;32827:131;:::i;:::-;32819:139;;32717:248;;;:::o;32971:419::-;;33175:2;33164:9;33160:18;33152:26;;33224:9;33218:4;33214:20;33210:1;33199:9;33195:17;33188:47;33252:131;33378:4;33252:131;:::i;:::-;33244:139;;33142:248;;;:::o;33396:419::-;;33600:2;33589:9;33585:18;33577:26;;33649:9;33643:4;33639:20;33635:1;33624:9;33620:17;33613:47;33677:131;33803:4;33677:131;:::i;:::-;33669:139;;33567:248;;;:::o;33821:419::-;;34025:2;34014:9;34010:18;34002:26;;34074:9;34068:4;34064:20;34060:1;34049:9;34045:17;34038:47;34102:131;34228:4;34102:131;:::i;:::-;34094:139;;33992:248;;;:::o;34246:419::-;;34450:2;34439:9;34435:18;34427:26;;34499:9;34493:4;34489:20;34485:1;34474:9;34470:17;34463:47;34527:131;34653:4;34527:131;:::i;:::-;34519:139;;34417:248;;;:::o;34671:419::-;;34875:2;34864:9;34860:18;34852:26;;34924:9;34918:4;34914:20;34910:1;34899:9;34895:17;34888:47;34952:131;35078:4;34952:131;:::i;:::-;34944:139;;34842:248;;;:::o;35096:419::-;;35300:2;35289:9;35285:18;35277:26;;35349:9;35343:4;35339:20;35335:1;35324:9;35320:17;35313:47;35377:131;35503:4;35377:131;:::i;:::-;35369:139;;35267:248;;;:::o;35521:419::-;;35725:2;35714:9;35710:18;35702:26;;35774:9;35768:4;35764:20;35760:1;35749:9;35745:17;35738:47;35802:131;35928:4;35802:131;:::i;:::-;35794:139;;35692:248;;;:::o;35946:419::-;;36150:2;36139:9;36135:18;36127:26;;36199:9;36193:4;36189:20;36185:1;36174:9;36170:17;36163:47;36227:131;36353:4;36227:131;:::i;:::-;36219:139;;36117:248;;;:::o;36371:419::-;;36575:2;36564:9;36560:18;36552:26;;36624:9;36618:4;36614:20;36610:1;36599:9;36595:17;36588:47;36652:131;36778:4;36652:131;:::i;:::-;36644:139;;36542:248;;;:::o;36796:419::-;;37000:2;36989:9;36985:18;36977:26;;37049:9;37043:4;37039:20;37035:1;37024:9;37020:17;37013:47;37077:131;37203:4;37077:131;:::i;:::-;37069:139;;36967:248;;;:::o;37221:419::-;;37425:2;37414:9;37410:18;37402:26;;37474:9;37468:4;37464:20;37460:1;37449:9;37445:17;37438:47;37502:131;37628:4;37502:131;:::i;:::-;37494:139;;37392:248;;;:::o;37646:419::-;;37850:2;37839:9;37835:18;37827:26;;37899:9;37893:4;37889:20;37885:1;37874:9;37870:17;37863:47;37927:131;38053:4;37927:131;:::i;:::-;37919:139;;37817:248;;;:::o;38071:419::-;;38275:2;38264:9;38260:18;38252:26;;38324:9;38318:4;38314:20;38310:1;38299:9;38295:17;38288:47;38352:131;38478:4;38352:131;:::i;:::-;38344:139;;38242:248;;;:::o;38496:419::-;;38700:2;38689:9;38685:18;38677:26;;38749:9;38743:4;38739:20;38735:1;38724:9;38720:17;38713:47;38777:131;38903:4;38777:131;:::i;:::-;38769:139;;38667:248;;;:::o;38921:222::-;;39052:2;39041:9;39037:18;39029:26;;39065:71;39133:1;39122:9;39118:17;39109:6;39065:71;:::i;:::-;39019:124;;;;:::o;39149:129::-;;39210:20;;:::i;:::-;39200:30;;39239:33;39267:4;39259:6;39239:33;:::i;:::-;39190:88;;;:::o;39284:75::-;;39350:2;39344:9;39334:19;;39324:35;:::o;39365:321::-;;39542:18;39534:6;39531:30;39528:2;;;39564:18;;:::i;:::-;39528:2;39614:4;39606:6;39602:17;39594:25;;39674:4;39668;39664:15;39656:23;;39457:229;;;:::o;39692:307::-;;39843:18;39835:6;39832:30;39829:2;;;39865:18;;:::i;:::-;39829:2;39903:29;39925:6;39903:29;:::i;:::-;39895:37;;39987:4;39981;39977:15;39969:23;;39758:241;;;:::o;40005:308::-;;40157:18;40149:6;40146:30;40143:2;;;40179:18;;:::i;:::-;40143:2;40217:29;40239:6;40217:29;:::i;:::-;40209:37;;40301:4;40295;40291:15;40283:23;;40072:241;;;:::o;40319:144::-;;40394:3;40386:11;;40417:3;40414:1;40407:14;40451:4;40448:1;40438:18;40430:26;;40376:87;;;:::o;40469:98::-;;40554:5;40548:12;40538:22;;40527:40;;;:::o;40573:99::-;;40659:5;40653:12;40643:22;;40632:40;;;:::o;40678:168::-;;40795:6;40790:3;40783:19;40835:4;40830:3;40826:14;40811:29;;40773:73;;;;:::o;40852:147::-;;40990:3;40975:18;;40965:34;;;;:::o;41005:169::-;;41123:6;41118:3;41111:19;41163:4;41158:3;41154:14;41139:29;;41101:73;;;;:::o;41180:148::-;;41319:3;41304:18;;41294:34;;;;:::o;41334:305::-;;41393:20;41411:1;41393:20;:::i;:::-;41388:25;;41427:20;41445:1;41427:20;:::i;:::-;41422:25;;41581:1;41513:66;41509:74;41506:1;41503:81;41500:2;;;41587:18;;:::i;:::-;41500:2;41631:1;41628;41624:9;41617:16;;41378:261;;;;:::o;41645:185::-;;41702:20;41720:1;41702:20;:::i;:::-;41697:25;;41736:20;41754:1;41736:20;:::i;:::-;41731:25;;41775:1;41765:2;;41780:18;;:::i;:::-;41765:2;41822:1;41819;41815:9;41810:14;;41687:143;;;;:::o;41836:348::-;;41899:20;41917:1;41899:20;:::i;:::-;41894:25;;41933:20;41951:1;41933:20;:::i;:::-;41928:25;;42121:1;42053:66;42049:74;42046:1;42043:81;42038:1;42031:9;42024:17;42020:105;42017:2;;;42128:18;;:::i;:::-;42017:2;42176:1;42173;42169:9;42158:20;;41884:300;;;;:::o;42190:191::-;;42250:20;42268:1;42250:20;:::i;:::-;42245:25;;42284:20;42302:1;42284:20;:::i;:::-;42279:25;;42323:1;42320;42317:8;42314:2;;;42328:18;;:::i;:::-;42314:2;42373:1;42370;42366:9;42358:17;;42235:146;;;;:::o;42387:96::-;;42453:24;42471:5;42453:24;:::i;:::-;42442:35;;42432:51;;;:::o;42489:90::-;;42566:5;42559:13;42552:21;42541:32;;42531:48;;;:::o;42585:77::-;;42651:5;42640:16;;42630:32;;;:::o;42668:149::-;;42744:66;42737:5;42733:78;42722:89;;42712:105;;;:::o;42823:126::-;;42900:42;42893:5;42889:54;42878:65;;42868:81;;;:::o;42955:77::-;;43021:5;43010:16;;43000:32;;;:::o;43038:86::-;;43113:4;43106:5;43102:16;43091:27;;43081:43;;;:::o;43130:154::-;43214:6;43209:3;43204;43191:30;43276:1;43267:6;43262:3;43258:16;43251:27;43181:103;;;:::o;43290:307::-;43358:1;43368:113;43382:6;43379:1;43376:13;43368:113;;;43467:1;43462:3;43458:11;43452:18;43448:1;43443:3;43439:11;43432:39;43404:2;43401:1;43397:10;43392:15;;43368:113;;;43499:6;43496:1;43493:13;43490:2;;;43579:1;43570:6;43565:3;43561:16;43554:27;43490:2;43339:258;;;;:::o;43603:320::-;;43684:1;43678:4;43674:12;43664:22;;43731:1;43725:4;43721:12;43752:18;43742:2;;43808:4;43800:6;43796:17;43786:27;;43742:2;43870;43862:6;43859:14;43839:18;43836:38;43833:2;;;43889:18;;:::i;:::-;43833:2;43654:269;;;;:::o;43929:281::-;44012:27;44034:4;44012:27;:::i;:::-;44004:6;44000:40;44142:6;44130:10;44127:22;44106:18;44094:10;44091:34;44088:62;44085:2;;;44153:18;;:::i;:::-;44085:2;44193:10;44189:2;44182:22;43972:238;;;:::o;44216:167::-;;44276:22;44292:5;44276:22;:::i;:::-;44267:31;;44320:4;44313:5;44310:15;44307:2;;;44328:18;;:::i;:::-;44307:2;44375:1;44368:5;44364:13;44357:20;;44257:126;;;:::o;44389:79::-;;44457:5;44446:16;;44436:32;;;:::o;44474:180::-;44522:77;44519:1;44512:88;44619:4;44616:1;44609:15;44643:4;44640:1;44633:15;44660:180;44708:77;44705:1;44698:88;44805:4;44802:1;44795:15;44829:4;44826:1;44819:15;44846:180;44894:77;44891:1;44884:88;44991:4;44988:1;44981:15;45015:4;45012:1;45005:15;45032:180;45080:77;45077:1;45070:88;45177:4;45174:1;45167:15;45201:4;45198:1;45191:15;45218:102;;45310:2;45306:7;45301:2;45294:5;45290:14;45286:28;45276:38;;45266:54;;;:::o;45326:174::-;45466:26;45462:1;45454:6;45450:14;45443:50;45432:68;:::o;45506:157::-;45646:9;45642:1;45634:6;45630:14;45623:33;45612:51;:::o;45669:181::-;45809:33;45805:1;45797:6;45793:14;45786:57;45775:75;:::o;45856:214::-;45996:66;45992:1;45984:6;45980:14;45973:90;45962:108;:::o;46076:181::-;46216:33;46212:1;46204:6;46200:14;46193:57;46182:75;:::o;46263:237::-;46403:34;46399:1;46391:6;46387:14;46380:58;46472:20;46467:2;46459:6;46455:15;46448:45;46369:131;:::o;46506:225::-;46646:34;46642:1;46634:6;46630:14;46623:58;46715:8;46710:2;46702:6;46698:15;46691:33;46612:119;:::o;46737:224::-;46877:34;46873:1;46865:6;46861:14;46854:58;46946:7;46941:2;46933:6;46929:15;46922:32;46843:118;:::o;46967:178::-;47107:30;47103:1;47095:6;47091:14;47084:54;47073:72;:::o;47151:223::-;47291:34;47287:1;47279:6;47275:14;47268:58;47360:6;47355:2;47347:6;47343:15;47336:31;47257:117;:::o;47380:175::-;47520:27;47516:1;47508:6;47504:14;47497:51;47486:69;:::o;47561:221::-;47701:34;47697:1;47689:6;47685:14;47678:58;47770:4;47765:2;47757:6;47753:15;47746:29;47667:115;:::o;47788:172::-;47928:24;47924:1;47916:6;47912:14;47905:48;47894:66;:::o;47966:228::-;48106:34;48102:1;48094:6;48090:14;48083:58;48175:11;48170:2;48162:6;48158:15;48151:36;48072:122;:::o;48200:221::-;48340:34;48336:1;48328:6;48324:14;48317:58;48409:4;48404:2;48396:6;48392:15;48385:29;48306:115;:::o;48427:249::-;48567:34;48563:1;48555:6;48551:14;48544:58;48636:32;48631:2;48623:6;48619:15;48612:57;48533:143;:::o;48682:182::-;48822:34;48818:1;48810:6;48806:14;48799:58;48788:76;:::o;48870:182::-;49010:34;49006:1;48998:6;48994:14;48987:58;48976:76;:::o;49058:167::-;49198:19;49194:1;49186:6;49182:14;49175:43;49164:61;:::o;49231:178::-;49371:30;49367:1;49359:6;49355:14;49348:54;49337:72;:::o;49415:174::-;49555:26;49551:1;49543:6;49539:14;49532:50;49521:68;:::o;49595:220::-;49735:34;49731:1;49723:6;49719:14;49712:58;49804:3;49799:2;49791:6;49787:15;49780:28;49701:114;:::o;49821:177::-;49961:29;49957:1;49949:6;49945:14;49938:53;49927:71;:::o;50004:161::-;50144:13;50140:1;50132:6;50128:14;50121:37;50110:55;:::o;50171:114::-;50277:8;:::o;50291:166::-;50431:18;50427:1;50419:6;50415:14;50408:42;50397:60;:::o;50463:233::-;50603:34;50599:1;50591:6;50587:14;50580:58;50672:16;50667:2;50659:6;50655:15;50648:41;50569:127;:::o;50702:163::-;50842:15;50838:1;50830:6;50826:14;50819:39;50808:57;:::o;50871:122::-;50944:24;50962:5;50944:24;:::i;:::-;50937:5;50934:35;50924:2;;50983:1;50980;50973:12;50924:2;50914:79;:::o;50999:116::-;51069:21;51084:5;51069:21;:::i;:::-;51062:5;51059:32;51049:2;;51105:1;51102;51095:12;51049:2;51039:76;:::o;51121:122::-;51194:24;51212:5;51194:24;:::i;:::-;51187:5;51184:35;51174:2;;51233:1;51230;51223:12;51174:2;51164:79;:::o;51249:120::-;51321:23;51338:5;51321:23;:::i;:::-;51314:5;51311:34;51301:2;;51359:1;51356;51349:12;51301:2;51291:78;:::o;51375:122::-;51448:24;51466:5;51448:24;:::i;:::-;51441:5;51438:35;51428:2;;51487:1;51484;51477:12;51428:2;51418:79;:::o;51503:118::-;51574:22;51590:5;51574:22;:::i;:::-;51567:5;51564:33;51554:2;;51611:1;51608;51601:12;51554:2;51544:77;:::o

Swarm Source

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