ETH Price: $3,451.82 (-0.80%)
Gas: 4 Gwei

Token

Pixelcolors (PXCL)
 

Overview

Max Total Supply

2,020 PXCL

Holders

675

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 PXCL
0x050996E75Ba1a7b5d6C53Aee152d5A2DA376068D
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Pixelcolors NFT is a membership pass with utilities and access to community voted rewards and future projects by the Degen Art Studios. Each NFT consists of a unique color with identity code attached to it.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Pixelcolors

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 16 of 18: Pixelcolors.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Counters.sol";
import "./ERC721Pausable.sol";

contract Pixelcolors is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdTracker;

    uint256 public MAX_NFT;
    uint256 public MAX_BY_MINT;
	uint256 public PRICE;
	uint256 public GIVEAWAY_NFT;
	uint256 public GIVEAWAY_MINTED;

    string public baseTokenURI;
    event CreatePXCL(uint256 indexed id);
 
	constructor(string memory baseURI, uint256 maxNFT, uint256 maxByMint, uint256 GiveawayNFT, uint256 Price) ERC721("Pixelcolors", "PXCL") {
        MAX_NFT = maxNFT;
		MAX_BY_MINT = maxByMint;
		GIVEAWAY_NFT = GiveawayNFT;
		PRICE = Price;
		setBaseURI(baseURI);
        pause(true);
    }
	
    modifier saleIsOpen {
        require(_totalSupply() <= MAX_NFT, "Sale end");
        if (_msgSender() != owner() && !isWhiteListed[_msgSender()]) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }
	
    function _totalSupply() internal view returns (uint) {
        return _tokenIdTracker.current();
    }
	
    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }
	
	function __mint(address _to, uint256 _count) public onlyOwner{
        uint256 total = GIVEAWAY_MINTED;
        require(total + _count <= GIVEAWAY_NFT, "Max limit");
        for (uint256 i = 0; i < _count; i++) {
		     GIVEAWAY_MINTED++;
            _mintAnElement(_to);
        }
    }

	function mint(address _to, uint256 _count) public payable saleIsOpen{
        uint256 total = _totalSupply();
		uint256 tokenCount = balanceOf(_to);
        require(total + _count <= MAX_NFT, "Max limit");
        require(total <= MAX_NFT, "Sale end");
        require(_count <= MAX_BY_MINT, "Exceeds number");
		require(tokenCount + _count <= MAX_HOLDING_NFT, "Max limit per address");
        require(msg.value >= price(_count), "Value below price");
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
	
    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
        emit CreatePXCL(id);
    }
	
    function price(uint256 _count) public view returns (uint256) {
        return PRICE.mul(_count);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
	
	function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(owner(), address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
	
	function updatePrice(uint256 newPrice) external onlyOwner {
        PRICE = newPrice;
    }
	
	function updateHoldingLimit(uint256 newLimit) public onlyOwner{
	    MAX_HOLDING_NFT = newLimit;
    }
	
	function updateMintLimit(uint256 newLimit) external onlyOwner {
	    require(MAX_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT = newLimit;
    }
	
	function updateMaxSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= _totalSupply(), "Incorrect value");
        MAX_NFT = newSupply;
    }
	
	function updateGiveawayLimit(uint256 newLimit) external onlyOwner {
	    require(GIVEAWAY_MINTED <= newLimit, "Incorrect value");
        GIVEAWAY_NFT = newLimit;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 3 of 18: Counters.sol
// SPDX-License-Identifier: MIT

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 18: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 18: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 public MAX_HOLDING_NFT = 1100;
	
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

}

File 6 of 18: ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 7 of 18: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 18: ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Pausable.sol";
import "./Ownable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
	 
	event AddToWhiteList(address _address);
    event RemovedFromWhiteList(address _address);
	event WhiteListMultipleAddress(address[] accounts);
    event RemoveWhiteListedMultipleAddress(address[] accounts);
	mapping (address => bool) public isWhiteListed;
	
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner() && !isWhiteListed[_msgSender()]) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
	
	function whiteListAddress(address _address) public onlyOwner{
	   isWhiteListed[_address] = true;
	   emit AddToWhiteList(_address);
    }
	
	function removeWhiteListedAddress (address _address) public onlyOwner{
	   isWhiteListed[_address] = false;
	   emit RemovedFromWhiteList(_address);
	}
	
	function whiteListMultipleAddress(address[] calldata accounts) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++){
			isWhiteListed[accounts[i]] = true;
        }
        emit WhiteListMultipleAddress(accounts);
    }
	
	function removeWhiteListedMultipleAddress(address[] calldata accounts) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++){
			isWhiteListed[accounts[i]] = false;
        }
		emit RemoveWhiteListedMultipleAddress(accounts);
    }
}

File 9 of 18: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 18: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 18: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 12 of 18: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 13 of 18: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 17 of 18: SafeMath.sol
// SPDX-License-Identifier: MIT

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 no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"maxNFT","type":"uint256"},{"internalType":"uint256","name":"maxByMint","type":"uint256"},{"internalType":"uint256","name":"GiveawayNFT","type":"uint256"},{"internalType":"uint256","name":"Price","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"AddToWhiteList","type":"event"},{"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":"id","type":"uint256"}],"name":"CreatePXCL","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"RemoveWhiteListedMultipleAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"RemovedFromWhiteList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"WhiteListMultipleAddress","type":"event"},{"inputs":[],"name":"GIVEAWAY_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIVEAWAY_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_HOLDING_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"__mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeWhiteListedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeWhiteListedMultipleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateGiveawayLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateHoldingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"whiteListAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"whiteListMultipleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261044c6000553480156200001757600080fd5b50604051620037a6380380620037a68339810160408190526200003a91620003d3565b604080518082018252600b81526a506978656c636f6c6f727360a81b602080830191825283518085019094526004845263141610d360e21b90840152815191929162000089916001916200032d565b5080516200009f9060029060208401906200032d565b505050620000bc620000b6620000ff60201b60201c565b62000103565b600b805460ff60a01b19169055600e849055600f83905560118290556010819055620000e88562000155565b620000f46001620001bd565b5050505050620005c2565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200015f620000ff565b6001600160a01b0316620001726200022c565b6001600160a01b031614620001a45760405162461bcd60e51b81526004016200019b906200053a565b60405180910390fd5b8051620001b99060139060208401906200032d565b5050565b620001c7620000ff565b6001600160a01b0316620001da6200022c565b6001600160a01b031614620002035760405162461bcd60e51b81526004016200019b906200053a565b600181151514156200021f57620002196200023b565b62000229565b62000229620002bc565b50565b600b546001600160a01b031690565b620002456200031d565b15620002655760405162461bcd60e51b81526004016200019b9062000510565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002a3620000ff565b604051620002b29190620004c5565b60405180910390a1565b620002c66200031d565b620002e55760405162461bcd60e51b81526004016200019b90620004d9565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa620002a3620000ff565b600b54600160a01b900460ff1690565b8280546200033b906200056f565b90600052602060002090601f0160209004810192826200035f5760008555620003aa565b82601f106200037a57805160ff1916838001178555620003aa565b82800160010185558215620003aa579182015b82811115620003aa5782518255916020019190600101906200038d565b50620003b8929150620003bc565b5090565b5b80821115620003b85760008155600101620003bd565b600080600080600060a08688031215620003eb578081fd5b85516001600160401b038082111562000402578283fd5b818801915088601f83011262000416578283fd5b8151818111156200042b576200042b620005ac565b6040516020601f8301601f1916820181018481118382101715620004535762000453620005ac565b60405282825284830181018c10156200046a578586fd5b8593505b828410156200048d57848401810151828501820152928301926200046e565b828411156200049e57858184840101525b8a015160408b015160608c01516080909c0151929d919c509a995090975095505050505050565b6001600160a01b0391909116815260200190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200058457607f821691505b60208210811415620005a657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6131d480620005d26000396000f3fe60806040526004361061027d5760003560e01c80636f9170f61161014f578063b88d4fde116100c1578063d75b757a1161007a578063d75b757a14610727578063e01d55c51461073c578063e29879a81461075c578063e985e9c51461077c578063f103b4331461079c578063f2fde38b146107bc5761027d565b8063b88d4fde14610672578063c433793d14610692578063c87b56dd146106b2578063caceb61b146106d2578063cf52a7b2146106f2578063d547cfb7146107125761027d565b80638ad5de28116101135780638ad5de28146105de5780638d6cc56d146105f35780638d859f3e146106135780638da5cb5b1461062857806395d89b411461063d578063a22cb465146106525761027d565b80636f9170f61461055f5780636fdaddf11461057f57806370a0823114610594578063715018a6146105b4578063853828b6146105c95761027d565b80633dc8ded7116101f35780634d7cea16116101ac5780634d7cea16146104c05780634f6ccce7146104d557806355f804b3146104f557806359a7715a146105155780635c975abb1461052a5780636352211e1461053f5761027d565b80633dc8ded71461040b57806340c10f191461042b57806342842e0e1461043e57806342966c681461045e578063438b63001461047e578063497865b3146104ab5761027d565b8063095ea7b311610245578063095ea7b31461034957806318160ddd1461036957806323b872dd1461038b57806326a49e37146103ab5780632f745c59146103cb5780633cde0c0f146103eb5761027d565b806301ffc9a71461028257806302329a29146102b8578063059de0fc146102da57806306fdde03146102fa578063081812fc1461031c575b600080fd5b34801561028e57600080fd5b506102a261029d366004612718565b6107dc565b6040516102af91906128ed565b60405180910390f35b3480156102c457600080fd5b506102d86102d33660046126fe565b6107ef565b005b3480156102e657600080fd5b506102d86102f536600461268f565b61085a565b34801561030657600080fd5b5061030f610957565b6040516102af91906128f8565b34801561032857600080fd5b5061033c610337366004612796565b6109e9565b6040516102af919061280c565b34801561035557600080fd5b506102d8610364366004612666565b610a2c565b34801561037557600080fd5b5061037e610ac4565b6040516102af9190613045565b34801561039757600080fd5b506102d86103a6366004612589565b610aca565b3480156103b757600080fd5b5061037e6103c6366004612796565b610b02565b3480156103d757600080fd5b5061037e6103e6366004612666565b610b12565b3480156103f757600080fd5b506102d8610406366004612796565b610b64565b34801561041757600080fd5b506102d8610426366004612666565b610ba8565b6102d8610439366004612666565b610c56565b34801561044a57600080fd5b506102d8610459366004612589565b610e08565b34801561046a57600080fd5b506102d8610479366004612796565b610e23565b34801561048a57600080fd5b5061049e61049936600461253d565b610e53565b6040516102af91906128a9565b3480156104b757600080fd5b5061037e610f11565b3480156104cc57600080fd5b5061037e610f17565b3480156104e157600080fd5b5061037e6104f0366004612796565b610f1d565b34801561050157600080fd5b506102d8610510366004612750565b610f78565b34801561052157600080fd5b5061037e610fce565b34801561053657600080fd5b506102a2610fdd565b34801561054b57600080fd5b5061033c61055a366004612796565b610fed565b34801561056b57600080fd5b506102a261057a36600461253d565b611022565b34801561058b57600080fd5b5061037e611037565b3480156105a057600080fd5b5061037e6105af36600461253d565b61103d565b3480156105c057600080fd5b506102d8611081565b3480156105d557600080fd5b506102d86110cc565b3480156105ea57600080fd5b5061037e611127565b3480156105ff57600080fd5b506102d861060e366004612796565b61112d565b34801561061f57600080fd5b5061037e611171565b34801561063457600080fd5b5061033c611177565b34801561064957600080fd5b5061030f611186565b34801561065e57600080fd5b506102d861066d36600461263d565b611195565b34801561067e57600080fd5b506102d861068d3660046125c4565b611263565b34801561069e57600080fd5b506102d86106ad36600461253d565b61129c565b3480156106be57600080fd5b5061030f6106cd366004612796565b611336565b3480156106de57600080fd5b506102d86106ed36600461268f565b6113b9565b3480156106fe57600080fd5b506102d861070d36600461253d565b6114aa565b34801561071e57600080fd5b5061030f61153c565b34801561073357600080fd5b5061037e6115ca565b34801561074857600080fd5b506102d8610757366004612796565b6115d0565b34801561076857600080fd5b506102d8610777366004612796565b611636565b34801561078857600080fd5b506102a2610797366004612557565b61169c565b3480156107a857600080fd5b506102d86107b7366004612796565b6116ca565b3480156107c857600080fd5b506102d86107d736600461253d565b611735565b60006107e7826117a3565b90505b919050565b6107f76117c8565b6001600160a01b0316610808611177565b6001600160a01b0316146108375760405162461bcd60e51b815260040161082e90612d96565b60405180910390fd5b6001811515141561084f5761084a6117cc565b610857565b610857611844565b50565b6108626117c8565b6001600160a01b0316610873611177565b6001600160a01b0316146108995760405162461bcd60e51b815260040161082e90612d96565b60005b81811015610919576000600c60008585858181106108ca57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906108df919061253d565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061091181613117565b91505061089c565b507f28351383e4c13138d98d7ce6bf61f173832a8d8c4dd2a8cd290774a865ffbe32828260405161094b92919061285d565b60405180910390a15050565b606060018054610966906130dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610992906130dc565b80156109df5780601f106109b4576101008083540402835291602001916109df565b820191906000526020600020905b8154815290600101906020018083116109c257829003601f168201915b5050505050905090565b60006109f48261189e565b610a105760405162461bcd60e51b815260040161082e90612d21565b506000908152600560205260409020546001600160a01b031690565b6000610a3782610fed565b9050806001600160a01b0316836001600160a01b03161415610a6b5760405162461bcd60e51b815260040161082e90612eed565b806001600160a01b0316610a7d6117c8565b6001600160a01b03161480610a995750610a99816107976117c8565b610ab55760405162461bcd60e51b815260040161082e90612bda565b610abf83836118bb565b505050565b60095490565b610adb610ad56117c8565b82611929565b610af75760405162461bcd60e51b815260040161082e90612f58565b610abf8383836119ae565b6010546000906107e79083611b04565b6000610b1d8361103d565b8210610b3b5760405162461bcd60e51b815260040161082e906129ac565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610b6c6117c8565b6001600160a01b0316610b7d611177565b6001600160a01b031614610ba35760405162461bcd60e51b815260040161082e90612d96565b600055565b610bb06117c8565b6001600160a01b0316610bc1611177565b6001600160a01b031614610be75760405162461bcd60e51b815260040161082e90612d96565b601254601154610bf7838361304e565b1115610c155760405162461bcd60e51b815260040161082e90612b41565b60005b82811015610c505760128054906000610c3083613117565b9190505550610c3e84611b10565b80610c4881613117565b915050610c18565b50505050565b600e54610c61611b5f565b1115610c7f5760405162461bcd60e51b815260040161082e90612cff565b610c87611177565b6001600160a01b0316610c986117c8565b6001600160a01b031614158015610cd55750600c6000610cb66117c8565b6001600160a01b0316815260208101919091526040016000205460ff16155b15610cff57610ce2610fdd565b15610cff5760405162461bcd60e51b815260040161082e90612bb0565b6000610d09611b5f565b90506000610d168461103d565b600e54909150610d26848461304e565b1115610d445760405162461bcd60e51b815260040161082e90612b41565b600e54821115610d665760405162461bcd60e51b815260040161082e90612cff565b600f54831115610d885760405162461bcd60e51b815260040161082e90612984565b600054610d95848361304e565b1115610db35760405162461bcd60e51b815260040161082e90612ebe565b610dbc83610b02565b341015610ddb5760405162461bcd60e51b815260040161082e90612e93565b60005b83811015610e0157610def85611b10565b80610df981613117565b915050610dde565b5050505050565b610abf83838360405180602001604052806000815250611263565b610e2e610ad56117c8565b610e4a5760405162461bcd60e51b815260040161082e90612ff5565b61085781611b6b565b60606000610e608361103d565b905060008167ffffffffffffffff811115610e8b57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610eb4578160200160208202803683370190505b50905060005b82811015610f0957610ecc8582610b12565b828281518110610eec57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610f0181613117565b915050610eba565b509392505050565b60115481565b60125481565b6000610f27610ac4565b8210610f455760405162461bcd60e51b815260040161082e90612fa9565b60098281548110610f6657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610f806117c8565b6001600160a01b0316610f91611177565b6001600160a01b031614610fb75760405162461bcd60e51b815260040161082e90612d96565b8051610fca90601390602084019061240d565b5050565b6000610fd8611b5f565b905090565b600b54600160a01b900460ff1690565b6000818152600360205260408120546001600160a01b0316806107e75760405162461bcd60e51b815260040161082e90612c81565b600c6020526000908152604090205460ff1681565b600e5481565b60006001600160a01b0382166110655760405162461bcd60e51b815260040161082e90612c37565b506001600160a01b031660009081526004602052604090205490565b6110896117c8565b6001600160a01b031661109a611177565b6001600160a01b0316146110c05760405162461bcd60e51b815260040161082e90612d96565b6110ca6000611c12565b565b6110d46117c8565b6001600160a01b03166110e5611177565b6001600160a01b03161461110b5760405162461bcd60e51b815260040161082e90612d96565b478061111657600080fd5b610857611121611177565b47611c64565b600f5481565b6111356117c8565b6001600160a01b0316611146611177565b6001600160a01b03161461116c5760405162461bcd60e51b815260040161082e90612d96565b601055565b60105481565b600b546001600160a01b031690565b606060028054610966906130dc565b61119d6117c8565b6001600160a01b0316826001600160a01b031614156111ce5760405162461bcd60e51b815260040161082e90612b0a565b80600660006111db6117c8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561121f6117c8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161125791906128ed565b60405180910390a35050565b61127461126e6117c8565b83611929565b6112905760405162461bcd60e51b815260040161082e90612f58565b610c5084848484611ce0565b6112a46117c8565b6001600160a01b03166112b5611177565b6001600160a01b0316146112db5760405162461bcd60e51b815260040161082e90612d96565b6001600160a01b0381166000908152600c602052604090819020805460ff19169055517f9354cd337eebad48c93d70f7321b188732c3061fa5c48fe32b8e6f9480c52fcc9061132b90839061280c565b60405180910390a150565b60606113418261189e565b61135d5760405162461bcd60e51b815260040161082e90612e44565b6000611367611d13565b9050600081511161138757604051806020016040528060008152506113b2565b8061139184611d22565b6040516020016113a29291906127da565b6040516020818303038152906040525b9392505050565b6113c16117c8565b6001600160a01b03166113d2611177565b6001600160a01b0316146113f85760405162461bcd60e51b815260040161082e90612d96565b60005b81811015611478576001600c600085858581811061142957634e487b7160e01b600052603260045260246000fd5b905060200201602081019061143e919061253d565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061147081613117565b9150506113fb565b507ffc031e12a6809f53d08acff9a98051c4774f44ea3885aadcb4be62ecd3544dff828260405161094b92919061285d565b6114b26117c8565b6001600160a01b03166114c3611177565b6001600160a01b0316146114e95760405162461bcd60e51b815260040161082e90612d96565b6001600160a01b0381166000908152600c602052604090819020805460ff19166001179055517f16220188fd357ae3d9cf432f984d1ea5c73787b829a3e72a4b807e8c0ebf5b0c9061132b90839061280c565b60138054611549906130dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611575906130dc565b80156115c25780601f10611597576101008083540402835291602001916115c2565b820191906000526020600020905b8154815290600101906020018083116115a557829003601f168201915b505050505081565b60005481565b6115d86117c8565b6001600160a01b03166115e9611177565b6001600160a01b03161461160f5760405162461bcd60e51b815260040161082e90612d96565b80600e5410156116315760405162461bcd60e51b815260040161082e90612d6d565b600f55565b61163e6117c8565b6001600160a01b031661164f611177565b6001600160a01b0316146116755760405162461bcd60e51b815260040161082e90612d96565b8060125411156116975760405162461bcd60e51b815260040161082e90612d6d565b601155565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6116d26117c8565b6001600160a01b03166116e3611177565b6001600160a01b0316146117095760405162461bcd60e51b815260040161082e90612d96565b611711611b5f565b8110156117305760405162461bcd60e51b815260040161082e90612d6d565b600e55565b61173d6117c8565b6001600160a01b031661174e611177565b6001600160a01b0316146117745760405162461bcd60e51b815260040161082e90612d96565b6001600160a01b03811661179a5760405162461bcd60e51b815260040161082e90612a49565b61085781611c12565b60006001600160e01b0319821663780e9d6360e01b14806107e757506107e782611e3d565b3390565b6117d4610fdd565b156117f15760405162461bcd60e51b815260040161082e90612bb0565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861182d6117c8565b60405161183a919061280c565b60405180910390a1565b61184c610fdd565b6118685760405162461bcd60e51b815260040161082e90612956565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61182d6117c8565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118f082610fed565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119348261189e565b6119505760405162461bcd60e51b815260040161082e90612b64565b600061195b83610fed565b9050806001600160a01b0316846001600160a01b031614806119965750836001600160a01b031661198b846109e9565b6001600160a01b0316145b806119a657506119a6818561169c565b949350505050565b826001600160a01b03166119c182610fed565b6001600160a01b0316146119e75760405162461bcd60e51b815260040161082e90612dfb565b6001600160a01b038216611a0d5760405162461bcd60e51b815260040161082e90612ac6565b600054611a198361103d565b10611a365760405162461bcd60e51b815260040161082e90612dcb565b611a41838383611e7d565b611a4c6000826118bb565b6001600160a01b0383166000908152600460205260408120805460019290611a75908490613099565b90915550506001600160a01b0382166000908152600460205260408120805460019290611aa390849061304e565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006113b2828461307a565b6000611b1a611b5f565b9050611b26600d611e88565b611b308282611e91565b60405181907fc4d15ee296027a09812f03b79ca9e5155cf89cbd5d81e305242e54c592da6f8390600090a25050565b6000610fd8600d611eab565b6000611b7682610fed565b9050611b8481600084611e7d565b611b8f6000836118bb565b6001600160a01b0381166000908152600460205260408120805460019290611bb8908490613099565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b031682604051611c7d90612809565b60006040518083038185875af1925050503d8060008114611cba576040519150601f19603f3d011682016040523d82523d6000602084013e611cbf565b606091505b5050905080610abf5760405162461bcd60e51b815260040161082e90612f2e565b611ceb8484846119ae565b611cf784848484611eaf565b610c505760405162461bcd60e51b815260040161082e906129f7565b606060138054610966906130dc565b606081611d4757506040805180820190915260018152600360fc1b60208201526107ea565b8160005b8115611d715780611d5b81613117565b9150611d6a9050600a83613066565b9150611d4b565b60008167ffffffffffffffff811115611d9a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611dc4576020820181803683370190505b5090505b84156119a657611dd9600183613099565b9150611de6600a86613132565b611df190603061304e565b60f81b818381518110611e1457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e36600a86613066565b9450611dc8565b60006001600160e01b031982166380ac58cd60e01b1480611e6e57506001600160e01b03198216635b5e139f60e01b145b806107e757506107e782611fca565b610abf838383611fe3565b80546001019055565b610fca82826040518060200160405280600081525061206e565b5490565b6000611ec3846001600160a01b03166120a1565b15611fbf57836001600160a01b031663150b7a02611edf6117c8565b8786866040518563ffffffff1660e01b8152600401611f019493929190612820565b602060405180830381600087803b158015611f1b57600080fd5b505af1925050508015611f4b575060408051601f3d908101601f19168201909252611f4891810190612734565b60015b611fa5573d808015611f79576040519150601f19603f3d011682016040523d82523d6000602084013e611f7e565b606091505b508051611f9d5760405162461bcd60e51b815260040161082e906129f7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119a6565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611fee8383836120a7565b611ff6611177565b6001600160a01b03166120076117c8565b6001600160a01b0316141580156120445750600c60006120256117c8565b6001600160a01b0316815260208101919091526040016000205460ff16155b15610abf57612051610fdd565b15610abf5760405162461bcd60e51b815260040161082e9061290b565b6120788383612130565b6120856000848484611eaf565b610abf5760405162461bcd60e51b815260040161082e906129f7565b3b151590565b6120b2838383610abf565b6001600160a01b0383166120ce576120c98161220f565b6120f1565b816001600160a01b0316836001600160a01b0316146120f1576120f18382612253565b6001600160a01b03821661210d57612108816122f0565b610abf565b826001600160a01b0316826001600160a01b031614610abf57610abf82826123c9565b6001600160a01b0382166121565760405162461bcd60e51b815260040161082e90612cca565b61215f8161189e565b1561217c5760405162461bcd60e51b815260040161082e90612a8f565b61218860008383611e7d565b6001600160a01b03821660009081526004602052604081208054600192906121b190849061304e565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b600060016122608461103d565b61226a9190613099565b6000838152600860205260409020549091508082146122bd576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061230290600190613099565b6000838152600a60205260408120546009805493945090928490811061233857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061236757634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806123ad57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006123d48361103d565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054612419906130dc565b90600052602060002090601f01602090048101928261243b5760008555612481565b82601f1061245457805160ff1916838001178555612481565b82800160010185558215612481579182015b82811115612481578251825591602001919060010190612466565b5061248d929150612491565b5090565b5b8082111561248d5760008155600101612492565b600067ffffffffffffffff808411156124c1576124c1613172565b604051601f8501601f1916810160200182811182821017156124e5576124e5613172565b6040528481529150818385018610156124fd57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107ea57600080fd5b803580151581146107ea57600080fd5b60006020828403121561254e578081fd5b6113b282612516565b60008060408385031215612569578081fd5b61257283612516565b915061258060208401612516565b90509250929050565b60008060006060848603121561259d578081fd5b6125a684612516565b92506125b460208501612516565b9150604084013590509250925092565b600080600080608085870312156125d9578081fd5b6125e285612516565b93506125f060208601612516565b925060408501359150606085013567ffffffffffffffff811115612612578182fd5b8501601f81018713612622578182fd5b612631878235602084016124a6565b91505092959194509250565b6000806040838503121561264f578182fd5b61265883612516565b91506125806020840161252d565b60008060408385031215612678578182fd5b61268183612516565b946020939093013593505050565b600080602083850312156126a1578182fd5b823567ffffffffffffffff808211156126b8578384fd5b818501915085601f8301126126cb578384fd5b8135818111156126d9578485fd5b86602080830285010111156126ec578485fd5b60209290920196919550909350505050565b60006020828403121561270f578081fd5b6113b28261252d565b600060208284031215612729578081fd5b81356113b281613188565b600060208284031215612745578081fd5b81516113b281613188565b600060208284031215612761578081fd5b813567ffffffffffffffff811115612777578182fd5b8201601f81018413612787578182fd5b6119a6848235602084016124a6565b6000602082840312156127a7578081fd5b5035919050565b600081518084526127c68160208601602086016130b0565b601f01601f19169290920160200192915050565b600083516127ec8184602088016130b0565b8351908301906128008183602088016130b0565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612853908301846127ae565b9695505050505050565b60208082528181018390526000908460408401835b8681101561289e576001600160a01b0361288b84612516565b1682529183019190830190600101612872565b509695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128e1578351835292840192918401916001016128c5565b50909695505050505050565b901515815260200190565b6000602082526113b260208301846127ae565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252600e908201526d22bc31b2b2b23990373ab6b132b960911b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260169082015275115490cdcc8c4e88131a5b5a5d08195e18d95959195960521b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b6020808252601590820152744d6178206c696d697420706572206164647265737360581b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b6000821982111561306157613061613146565b500190565b6000826130755761307561315c565b500490565b600081600019048311821515161561309457613094613146565b500290565b6000828210156130ab576130ab613146565b500390565b60005b838110156130cb5781810151838201526020016130b3565b83811115610c505750506000910152565b6002810460018216806130f057607f821691505b6020821081141561311157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561312b5761312b613146565b5060010190565b6000826131415761314161315c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461085757600080fdfea26469706673582212201955f0d046854b1ae1cf9527c57313b932fb48c32fcbc1d5463dd3d0ab4d781664736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000042500000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000013fbe85edc90000000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f796f757270726f6a656374746573742e636f6d2f706978656c636f6c6f72732f6170692f0000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636f9170f61161014f578063b88d4fde116100c1578063d75b757a1161007a578063d75b757a14610727578063e01d55c51461073c578063e29879a81461075c578063e985e9c51461077c578063f103b4331461079c578063f2fde38b146107bc5761027d565b8063b88d4fde14610672578063c433793d14610692578063c87b56dd146106b2578063caceb61b146106d2578063cf52a7b2146106f2578063d547cfb7146107125761027d565b80638ad5de28116101135780638ad5de28146105de5780638d6cc56d146105f35780638d859f3e146106135780638da5cb5b1461062857806395d89b411461063d578063a22cb465146106525761027d565b80636f9170f61461055f5780636fdaddf11461057f57806370a0823114610594578063715018a6146105b4578063853828b6146105c95761027d565b80633dc8ded7116101f35780634d7cea16116101ac5780634d7cea16146104c05780634f6ccce7146104d557806355f804b3146104f557806359a7715a146105155780635c975abb1461052a5780636352211e1461053f5761027d565b80633dc8ded71461040b57806340c10f191461042b57806342842e0e1461043e57806342966c681461045e578063438b63001461047e578063497865b3146104ab5761027d565b8063095ea7b311610245578063095ea7b31461034957806318160ddd1461036957806323b872dd1461038b57806326a49e37146103ab5780632f745c59146103cb5780633cde0c0f146103eb5761027d565b806301ffc9a71461028257806302329a29146102b8578063059de0fc146102da57806306fdde03146102fa578063081812fc1461031c575b600080fd5b34801561028e57600080fd5b506102a261029d366004612718565b6107dc565b6040516102af91906128ed565b60405180910390f35b3480156102c457600080fd5b506102d86102d33660046126fe565b6107ef565b005b3480156102e657600080fd5b506102d86102f536600461268f565b61085a565b34801561030657600080fd5b5061030f610957565b6040516102af91906128f8565b34801561032857600080fd5b5061033c610337366004612796565b6109e9565b6040516102af919061280c565b34801561035557600080fd5b506102d8610364366004612666565b610a2c565b34801561037557600080fd5b5061037e610ac4565b6040516102af9190613045565b34801561039757600080fd5b506102d86103a6366004612589565b610aca565b3480156103b757600080fd5b5061037e6103c6366004612796565b610b02565b3480156103d757600080fd5b5061037e6103e6366004612666565b610b12565b3480156103f757600080fd5b506102d8610406366004612796565b610b64565b34801561041757600080fd5b506102d8610426366004612666565b610ba8565b6102d8610439366004612666565b610c56565b34801561044a57600080fd5b506102d8610459366004612589565b610e08565b34801561046a57600080fd5b506102d8610479366004612796565b610e23565b34801561048a57600080fd5b5061049e61049936600461253d565b610e53565b6040516102af91906128a9565b3480156104b757600080fd5b5061037e610f11565b3480156104cc57600080fd5b5061037e610f17565b3480156104e157600080fd5b5061037e6104f0366004612796565b610f1d565b34801561050157600080fd5b506102d8610510366004612750565b610f78565b34801561052157600080fd5b5061037e610fce565b34801561053657600080fd5b506102a2610fdd565b34801561054b57600080fd5b5061033c61055a366004612796565b610fed565b34801561056b57600080fd5b506102a261057a36600461253d565b611022565b34801561058b57600080fd5b5061037e611037565b3480156105a057600080fd5b5061037e6105af36600461253d565b61103d565b3480156105c057600080fd5b506102d8611081565b3480156105d557600080fd5b506102d86110cc565b3480156105ea57600080fd5b5061037e611127565b3480156105ff57600080fd5b506102d861060e366004612796565b61112d565b34801561061f57600080fd5b5061037e611171565b34801561063457600080fd5b5061033c611177565b34801561064957600080fd5b5061030f611186565b34801561065e57600080fd5b506102d861066d36600461263d565b611195565b34801561067e57600080fd5b506102d861068d3660046125c4565b611263565b34801561069e57600080fd5b506102d86106ad36600461253d565b61129c565b3480156106be57600080fd5b5061030f6106cd366004612796565b611336565b3480156106de57600080fd5b506102d86106ed36600461268f565b6113b9565b3480156106fe57600080fd5b506102d861070d36600461253d565b6114aa565b34801561071e57600080fd5b5061030f61153c565b34801561073357600080fd5b5061037e6115ca565b34801561074857600080fd5b506102d8610757366004612796565b6115d0565b34801561076857600080fd5b506102d8610777366004612796565b611636565b34801561078857600080fd5b506102a2610797366004612557565b61169c565b3480156107a857600080fd5b506102d86107b7366004612796565b6116ca565b3480156107c857600080fd5b506102d86107d736600461253d565b611735565b60006107e7826117a3565b90505b919050565b6107f76117c8565b6001600160a01b0316610808611177565b6001600160a01b0316146108375760405162461bcd60e51b815260040161082e90612d96565b60405180910390fd5b6001811515141561084f5761084a6117cc565b610857565b610857611844565b50565b6108626117c8565b6001600160a01b0316610873611177565b6001600160a01b0316146108995760405162461bcd60e51b815260040161082e90612d96565b60005b81811015610919576000600c60008585858181106108ca57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906108df919061253d565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061091181613117565b91505061089c565b507f28351383e4c13138d98d7ce6bf61f173832a8d8c4dd2a8cd290774a865ffbe32828260405161094b92919061285d565b60405180910390a15050565b606060018054610966906130dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610992906130dc565b80156109df5780601f106109b4576101008083540402835291602001916109df565b820191906000526020600020905b8154815290600101906020018083116109c257829003601f168201915b5050505050905090565b60006109f48261189e565b610a105760405162461bcd60e51b815260040161082e90612d21565b506000908152600560205260409020546001600160a01b031690565b6000610a3782610fed565b9050806001600160a01b0316836001600160a01b03161415610a6b5760405162461bcd60e51b815260040161082e90612eed565b806001600160a01b0316610a7d6117c8565b6001600160a01b03161480610a995750610a99816107976117c8565b610ab55760405162461bcd60e51b815260040161082e90612bda565b610abf83836118bb565b505050565b60095490565b610adb610ad56117c8565b82611929565b610af75760405162461bcd60e51b815260040161082e90612f58565b610abf8383836119ae565b6010546000906107e79083611b04565b6000610b1d8361103d565b8210610b3b5760405162461bcd60e51b815260040161082e906129ac565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610b6c6117c8565b6001600160a01b0316610b7d611177565b6001600160a01b031614610ba35760405162461bcd60e51b815260040161082e90612d96565b600055565b610bb06117c8565b6001600160a01b0316610bc1611177565b6001600160a01b031614610be75760405162461bcd60e51b815260040161082e90612d96565b601254601154610bf7838361304e565b1115610c155760405162461bcd60e51b815260040161082e90612b41565b60005b82811015610c505760128054906000610c3083613117565b9190505550610c3e84611b10565b80610c4881613117565b915050610c18565b50505050565b600e54610c61611b5f565b1115610c7f5760405162461bcd60e51b815260040161082e90612cff565b610c87611177565b6001600160a01b0316610c986117c8565b6001600160a01b031614158015610cd55750600c6000610cb66117c8565b6001600160a01b0316815260208101919091526040016000205460ff16155b15610cff57610ce2610fdd565b15610cff5760405162461bcd60e51b815260040161082e90612bb0565b6000610d09611b5f565b90506000610d168461103d565b600e54909150610d26848461304e565b1115610d445760405162461bcd60e51b815260040161082e90612b41565b600e54821115610d665760405162461bcd60e51b815260040161082e90612cff565b600f54831115610d885760405162461bcd60e51b815260040161082e90612984565b600054610d95848361304e565b1115610db35760405162461bcd60e51b815260040161082e90612ebe565b610dbc83610b02565b341015610ddb5760405162461bcd60e51b815260040161082e90612e93565b60005b83811015610e0157610def85611b10565b80610df981613117565b915050610dde565b5050505050565b610abf83838360405180602001604052806000815250611263565b610e2e610ad56117c8565b610e4a5760405162461bcd60e51b815260040161082e90612ff5565b61085781611b6b565b60606000610e608361103d565b905060008167ffffffffffffffff811115610e8b57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610eb4578160200160208202803683370190505b50905060005b82811015610f0957610ecc8582610b12565b828281518110610eec57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610f0181613117565b915050610eba565b509392505050565b60115481565b60125481565b6000610f27610ac4565b8210610f455760405162461bcd60e51b815260040161082e90612fa9565b60098281548110610f6657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610f806117c8565b6001600160a01b0316610f91611177565b6001600160a01b031614610fb75760405162461bcd60e51b815260040161082e90612d96565b8051610fca90601390602084019061240d565b5050565b6000610fd8611b5f565b905090565b600b54600160a01b900460ff1690565b6000818152600360205260408120546001600160a01b0316806107e75760405162461bcd60e51b815260040161082e90612c81565b600c6020526000908152604090205460ff1681565b600e5481565b60006001600160a01b0382166110655760405162461bcd60e51b815260040161082e90612c37565b506001600160a01b031660009081526004602052604090205490565b6110896117c8565b6001600160a01b031661109a611177565b6001600160a01b0316146110c05760405162461bcd60e51b815260040161082e90612d96565b6110ca6000611c12565b565b6110d46117c8565b6001600160a01b03166110e5611177565b6001600160a01b03161461110b5760405162461bcd60e51b815260040161082e90612d96565b478061111657600080fd5b610857611121611177565b47611c64565b600f5481565b6111356117c8565b6001600160a01b0316611146611177565b6001600160a01b03161461116c5760405162461bcd60e51b815260040161082e90612d96565b601055565b60105481565b600b546001600160a01b031690565b606060028054610966906130dc565b61119d6117c8565b6001600160a01b0316826001600160a01b031614156111ce5760405162461bcd60e51b815260040161082e90612b0a565b80600660006111db6117c8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561121f6117c8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161125791906128ed565b60405180910390a35050565b61127461126e6117c8565b83611929565b6112905760405162461bcd60e51b815260040161082e90612f58565b610c5084848484611ce0565b6112a46117c8565b6001600160a01b03166112b5611177565b6001600160a01b0316146112db5760405162461bcd60e51b815260040161082e90612d96565b6001600160a01b0381166000908152600c602052604090819020805460ff19169055517f9354cd337eebad48c93d70f7321b188732c3061fa5c48fe32b8e6f9480c52fcc9061132b90839061280c565b60405180910390a150565b60606113418261189e565b61135d5760405162461bcd60e51b815260040161082e90612e44565b6000611367611d13565b9050600081511161138757604051806020016040528060008152506113b2565b8061139184611d22565b6040516020016113a29291906127da565b6040516020818303038152906040525b9392505050565b6113c16117c8565b6001600160a01b03166113d2611177565b6001600160a01b0316146113f85760405162461bcd60e51b815260040161082e90612d96565b60005b81811015611478576001600c600085858581811061142957634e487b7160e01b600052603260045260246000fd5b905060200201602081019061143e919061253d565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061147081613117565b9150506113fb565b507ffc031e12a6809f53d08acff9a98051c4774f44ea3885aadcb4be62ecd3544dff828260405161094b92919061285d565b6114b26117c8565b6001600160a01b03166114c3611177565b6001600160a01b0316146114e95760405162461bcd60e51b815260040161082e90612d96565b6001600160a01b0381166000908152600c602052604090819020805460ff19166001179055517f16220188fd357ae3d9cf432f984d1ea5c73787b829a3e72a4b807e8c0ebf5b0c9061132b90839061280c565b60138054611549906130dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611575906130dc565b80156115c25780601f10611597576101008083540402835291602001916115c2565b820191906000526020600020905b8154815290600101906020018083116115a557829003601f168201915b505050505081565b60005481565b6115d86117c8565b6001600160a01b03166115e9611177565b6001600160a01b03161461160f5760405162461bcd60e51b815260040161082e90612d96565b80600e5410156116315760405162461bcd60e51b815260040161082e90612d6d565b600f55565b61163e6117c8565b6001600160a01b031661164f611177565b6001600160a01b0316146116755760405162461bcd60e51b815260040161082e90612d96565b8060125411156116975760405162461bcd60e51b815260040161082e90612d6d565b601155565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6116d26117c8565b6001600160a01b03166116e3611177565b6001600160a01b0316146117095760405162461bcd60e51b815260040161082e90612d96565b611711611b5f565b8110156117305760405162461bcd60e51b815260040161082e90612d6d565b600e55565b61173d6117c8565b6001600160a01b031661174e611177565b6001600160a01b0316146117745760405162461bcd60e51b815260040161082e90612d96565b6001600160a01b03811661179a5760405162461bcd60e51b815260040161082e90612a49565b61085781611c12565b60006001600160e01b0319821663780e9d6360e01b14806107e757506107e782611e3d565b3390565b6117d4610fdd565b156117f15760405162461bcd60e51b815260040161082e90612bb0565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861182d6117c8565b60405161183a919061280c565b60405180910390a1565b61184c610fdd565b6118685760405162461bcd60e51b815260040161082e90612956565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61182d6117c8565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118f082610fed565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119348261189e565b6119505760405162461bcd60e51b815260040161082e90612b64565b600061195b83610fed565b9050806001600160a01b0316846001600160a01b031614806119965750836001600160a01b031661198b846109e9565b6001600160a01b0316145b806119a657506119a6818561169c565b949350505050565b826001600160a01b03166119c182610fed565b6001600160a01b0316146119e75760405162461bcd60e51b815260040161082e90612dfb565b6001600160a01b038216611a0d5760405162461bcd60e51b815260040161082e90612ac6565b600054611a198361103d565b10611a365760405162461bcd60e51b815260040161082e90612dcb565b611a41838383611e7d565b611a4c6000826118bb565b6001600160a01b0383166000908152600460205260408120805460019290611a75908490613099565b90915550506001600160a01b0382166000908152600460205260408120805460019290611aa390849061304e565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006113b2828461307a565b6000611b1a611b5f565b9050611b26600d611e88565b611b308282611e91565b60405181907fc4d15ee296027a09812f03b79ca9e5155cf89cbd5d81e305242e54c592da6f8390600090a25050565b6000610fd8600d611eab565b6000611b7682610fed565b9050611b8481600084611e7d565b611b8f6000836118bb565b6001600160a01b0381166000908152600460205260408120805460019290611bb8908490613099565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b031682604051611c7d90612809565b60006040518083038185875af1925050503d8060008114611cba576040519150601f19603f3d011682016040523d82523d6000602084013e611cbf565b606091505b5050905080610abf5760405162461bcd60e51b815260040161082e90612f2e565b611ceb8484846119ae565b611cf784848484611eaf565b610c505760405162461bcd60e51b815260040161082e906129f7565b606060138054610966906130dc565b606081611d4757506040805180820190915260018152600360fc1b60208201526107ea565b8160005b8115611d715780611d5b81613117565b9150611d6a9050600a83613066565b9150611d4b565b60008167ffffffffffffffff811115611d9a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611dc4576020820181803683370190505b5090505b84156119a657611dd9600183613099565b9150611de6600a86613132565b611df190603061304e565b60f81b818381518110611e1457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e36600a86613066565b9450611dc8565b60006001600160e01b031982166380ac58cd60e01b1480611e6e57506001600160e01b03198216635b5e139f60e01b145b806107e757506107e782611fca565b610abf838383611fe3565b80546001019055565b610fca82826040518060200160405280600081525061206e565b5490565b6000611ec3846001600160a01b03166120a1565b15611fbf57836001600160a01b031663150b7a02611edf6117c8565b8786866040518563ffffffff1660e01b8152600401611f019493929190612820565b602060405180830381600087803b158015611f1b57600080fd5b505af1925050508015611f4b575060408051601f3d908101601f19168201909252611f4891810190612734565b60015b611fa5573d808015611f79576040519150601f19603f3d011682016040523d82523d6000602084013e611f7e565b606091505b508051611f9d5760405162461bcd60e51b815260040161082e906129f7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119a6565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611fee8383836120a7565b611ff6611177565b6001600160a01b03166120076117c8565b6001600160a01b0316141580156120445750600c60006120256117c8565b6001600160a01b0316815260208101919091526040016000205460ff16155b15610abf57612051610fdd565b15610abf5760405162461bcd60e51b815260040161082e9061290b565b6120788383612130565b6120856000848484611eaf565b610abf5760405162461bcd60e51b815260040161082e906129f7565b3b151590565b6120b2838383610abf565b6001600160a01b0383166120ce576120c98161220f565b6120f1565b816001600160a01b0316836001600160a01b0316146120f1576120f18382612253565b6001600160a01b03821661210d57612108816122f0565b610abf565b826001600160a01b0316826001600160a01b031614610abf57610abf82826123c9565b6001600160a01b0382166121565760405162461bcd60e51b815260040161082e90612cca565b61215f8161189e565b1561217c5760405162461bcd60e51b815260040161082e90612a8f565b61218860008383611e7d565b6001600160a01b03821660009081526004602052604081208054600192906121b190849061304e565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b600060016122608461103d565b61226a9190613099565b6000838152600860205260409020549091508082146122bd576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061230290600190613099565b6000838152600a60205260408120546009805493945090928490811061233857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061236757634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806123ad57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006123d48361103d565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054612419906130dc565b90600052602060002090601f01602090048101928261243b5760008555612481565b82601f1061245457805160ff1916838001178555612481565b82800160010185558215612481579182015b82811115612481578251825591602001919060010190612466565b5061248d929150612491565b5090565b5b8082111561248d5760008155600101612492565b600067ffffffffffffffff808411156124c1576124c1613172565b604051601f8501601f1916810160200182811182821017156124e5576124e5613172565b6040528481529150818385018610156124fd57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107ea57600080fd5b803580151581146107ea57600080fd5b60006020828403121561254e578081fd5b6113b282612516565b60008060408385031215612569578081fd5b61257283612516565b915061258060208401612516565b90509250929050565b60008060006060848603121561259d578081fd5b6125a684612516565b92506125b460208501612516565b9150604084013590509250925092565b600080600080608085870312156125d9578081fd5b6125e285612516565b93506125f060208601612516565b925060408501359150606085013567ffffffffffffffff811115612612578182fd5b8501601f81018713612622578182fd5b612631878235602084016124a6565b91505092959194509250565b6000806040838503121561264f578182fd5b61265883612516565b91506125806020840161252d565b60008060408385031215612678578182fd5b61268183612516565b946020939093013593505050565b600080602083850312156126a1578182fd5b823567ffffffffffffffff808211156126b8578384fd5b818501915085601f8301126126cb578384fd5b8135818111156126d9578485fd5b86602080830285010111156126ec578485fd5b60209290920196919550909350505050565b60006020828403121561270f578081fd5b6113b28261252d565b600060208284031215612729578081fd5b81356113b281613188565b600060208284031215612745578081fd5b81516113b281613188565b600060208284031215612761578081fd5b813567ffffffffffffffff811115612777578182fd5b8201601f81018413612787578182fd5b6119a6848235602084016124a6565b6000602082840312156127a7578081fd5b5035919050565b600081518084526127c68160208601602086016130b0565b601f01601f19169290920160200192915050565b600083516127ec8184602088016130b0565b8351908301906128008183602088016130b0565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612853908301846127ae565b9695505050505050565b60208082528181018390526000908460408401835b8681101561289e576001600160a01b0361288b84612516565b1682529183019190830190600101612872565b509695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128e1578351835292840192918401916001016128c5565b50909695505050505050565b901515815260200190565b6000602082526113b260208301846127ae565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252600e908201526d22bc31b2b2b23990373ab6b132b960911b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260169082015275115490cdcc8c4e88131a5b5a5d08195e18d95959195960521b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b6020808252601590820152744d6178206c696d697420706572206164647265737360581b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b6000821982111561306157613061613146565b500190565b6000826130755761307561315c565b500490565b600081600019048311821515161561309457613094613146565b500290565b6000828210156130ab576130ab613146565b500390565b60005b838110156130cb5781810151838201526020016130b3565b83811115610c505750506000910152565b6002810460018216806130f057607f821691505b6020821081141561311157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561312b5761312b613146565b5060010190565b6000826131415761314161315c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461085757600080fdfea26469706673582212201955f0d046854b1ae1cf9527c57313b932fb48c32fcbc1d5463dd3d0ab4d781664736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000042500000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000013fbe85edc90000000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f796f757270726f6a656374746573742e636f6d2f706978656c636f6c6f72732f6170692f0000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://yourprojecttest.com/pixelcolors/api/
Arg [1] : maxNFT (uint256): 1061
Arg [2] : maxByMint (uint256): 2
Arg [3] : GiveawayNFT (uint256): 50
Arg [4] : Price (uint256): 90000000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000425
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [4] : 000000000000000000000000000000000000000000000000013fbe85edc90000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000002c
Arg [6] : 68747470733a2f2f796f757270726f6a656374746573742e636f6d2f70697865
Arg [7] : 6c636f6c6f72732f6170692f0000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

261:4645:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4004:179;;;;;;;;;;-1:-1:-1;4004:179:15;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3216:154;;;;;;;;;;-1:-1:-1;3216:154:15;;;;;:::i;:::-;;:::i;:::-;;1824:254:7;;;;;;;;;;-1:-1:-1;1824:254:7;;;;;:::i;:::-;;:::i;2473:100:4:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4032:219::-;;;;;;;;;;-1:-1:-1;4032:219:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3555:411::-;;;;;;;;;;-1:-1:-1;3555:411:4;;;;;:::i;:::-;;:::i;1577:113:6:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4918:339:4:-;;;;;;;;;;-1:-1:-1;4918:339:4;;;;;:::i;:::-;;:::i;2519:104:15:-;;;;;;;;;;-1:-1:-1;2519:104:15;;;;;:::i;:::-;;:::i;1245:256:6:-;;;;;;;;;;-1:-1:-1;1245:256:6;;;;;:::i;:::-;;:::i;4288:104:15:-;;;;;;;;;;-1:-1:-1;4288:104:15;;;;;:::i;:::-;;:::i;1458:294::-;;;;;;;;;;-1:-1:-1;1458:294:15;;;;;:::i;:::-;;:::i;1757:559::-;;;;;;:::i;:::-;;:::i;5328:185:4:-;;;;;;;;;;-1:-1:-1;5328:185:4;;;;;:::i;:::-;;:::i;456:245:5:-;;;;;;;;;;-1:-1:-1;456:245:5;;;;;:::i;:::-;;:::i;2859:349:15:-;;;;;;;;;;-1:-1:-1;2859:349:15;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;557:27::-;;;;;;;;;;;;;:::i;588:30::-;;;;;;;;;;;;;:::i;1767:233:6:-;;;;;;;;;;-1:-1:-1;1767:233:6;;;;;:::i;:::-;;:::i;2750:101:15:-;;;;;;;;;;-1:-1:-1;2750:101:15;;;;;:::i;:::-;;:::i;1361:91::-;;;;;;;;;;;;;:::i;1072:86:14:-;;;;;;;;;;;;;:::i;2167:239:4:-;;;;;;;;;;-1:-1:-1;2167:239:4;;;;;:::i;:::-;;:::i;846:46:7:-;;;;;;;;;;-1:-1:-1;846:46:7;;;;;:::i;:::-;;:::i;474:22:15:-;;;;;;;;;;;;;:::i;1897:208:4:-;;;;;;;;;;-1:-1:-1;1897:208:4;;;;;:::i;:::-;;:::i;1650:94:13:-;;;;;;;;;;;;;:::i;3378:182:15:-;;;;;;;;;;;;;:::i;503:26::-;;;;;;;;;;;;;:::i;4189:93::-;;;;;;;;;;-1:-1:-1;4189:93:15;;;;;:::i;:::-;;:::i;533:20::-;;;;;;;;;;;;;:::i;999:87:13:-;;;;;;;;;;;;;:::i;2642:104:4:-;;;;;;;;;;;;;:::i;4323:293::-;;;;;;;;;;-1:-1:-1;4323:293:4;;;;;:::i;:::-;;:::i;5584:328::-;;;;;;;;;;-1:-1:-1;5584:328:4;;;;;:::i;:::-;;:::i;1415:154:7:-;;;;;;;;;;-1:-1:-1;1415:154:7;;;;;:::i;:::-;;:::i;2817:334:4:-;;;;;;;;;;-1:-1:-1;2817:334:4;;;;;:::i;:::-;;:::i;1575:243:7:-;;;;;;;;;;-1:-1:-1;1575:243:7;;;;;:::i;:::-;;:::i;1268:141::-;;;;;;;;;;-1:-1:-1;1268:141:7;;;;;:::i;:::-;;:::i;627:26:15:-;;;;;;;;;;;;;:::i;640:37:4:-;;;;;;;;;;;;;:::i;4398:158:15:-;;;;;;;;;;-1:-1:-1;4398:158:15;;;;;:::i;:::-;;:::i;4732:171::-;;;;;;;;;;-1:-1:-1;4732:171:15;;;;;:::i;:::-;;:::i;4687:164:4:-;;;;;;;;;;-1:-1:-1;4687:164:4;;;;;:::i;:::-;;:::i;4562::15:-;;;;;;;;;;-1:-1:-1;4562:164:15;;;;;:::i;:::-;;:::i;1899:192:13:-;;;;;;;;;;-1:-1:-1;1899:192:13;;;;;:::i;:::-;;:::i;4004:179:15:-;4115:4;4139:36;4163:11;4139:23;:36::i;:::-;4132:43;;4004:179;;;;:::o;3216:154::-;1230:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;;;;;;;;;3280:4:15::1;3273:11:::0;::::1;;;3269:73;;;3301:8;:6;:8::i;:::-;3324:7;;3269:73;3352:10;:8;:10::i;:::-;3216:154:::0;:::o;1824:254:7:-;1230:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;1927:9:7::1;1923:96;1942:19:::0;;::::1;1923:96;;;2002:5;1973:13;:26;1987:8;;1996:1;1987:11;;;;;-1:-1:-1::0;;;1987:11:7::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1973:26:7::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;1973:26:7;:34;;-1:-1:-1;;1973:34:7::1;::::0;::::1;;::::0;;;::::1;::::0;;1963:3;::::1;::::0;::::1;:::i;:::-;;;;1923:96;;;;2028:42;2061:8;;2028:42;;;;;;;:::i;:::-;;;;;;;;1824:254:::0;;:::o;2473:100:4:-;2527:13;2560:5;2553:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473:100;:::o;4032:219::-;4108:7;4136:16;4144:7;4136;:16::i;:::-;4128:73;;;;-1:-1:-1;;;4128:73:4;;;;;;;:::i;:::-;-1:-1:-1;4219:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4219:24:4;;4032:219::o;3555:411::-;3636:13;3652:23;3667:7;3652:14;:23::i;:::-;3636:39;;3700:5;-1:-1:-1;;;;;3694:11:4;:2;-1:-1:-1;;;;;3694:11:4;;;3686:57;;;;-1:-1:-1;;;3686:57:4;;;;;;;:::i;:::-;3794:5;-1:-1:-1;;;;;3778:21:4;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3778:21:4;;:62;;;;3803:37;3820:5;3827:12;:10;:12::i;3803:37::-;3756:168;;;;-1:-1:-1;;;3756:168:4;;;;;;;:::i;:::-;3937:21;3946:2;3950:7;3937:8;:21::i;:::-;3555:411;;;:::o;1577:113:6:-;1665:10;:17;1577:113;:::o;4918:339:4:-;5113:41;5132:12;:10;:12::i;:::-;5146:7;5113:18;:41::i;:::-;5105:103;;;;-1:-1:-1;;;5105:103:4;;;;;;;:::i;:::-;5221:28;5231:4;5237:2;5241:7;5221:9;:28::i;2519:104:15:-;2598:5;;2571:7;;2598:17;;2608:6;2598:9;:17::i;1245:256:6:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1467:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;4288:104:15:-;1230:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4358:15:15::1;:26:::0;4288:104::o;1458:294::-;1230:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;1546:15:15::1;::::0;1598:12:::1;::::0;1580:14:::1;1588:6:::0;1546:15;1580:14:::1;:::i;:::-;:30;;1572:52;;;;-1:-1:-1::0;;;1572:52:15::1;;;;;;;:::i;:::-;1640:9;1635:110;1659:6;1655:1;:10;1635:110;;;1682:15;:17:::0;;;:15:::1;:17;::::0;::::1;:::i;:::-;;;;;;1714:19;1729:3;1714:14;:19::i;:::-;1667:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1635:110;;;;1290:1:13;1458:294:15::0;;:::o;1757:559::-;1063:7;;1045:14;:12;:14::i;:::-;:25;;1037:46;;;;-1:-1:-1;;;1037:46:15;;;;;;;:::i;:::-;1114:7;:5;:7::i;:::-;-1:-1:-1;;;;;1098:23:15;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1098:23:15;;;:55;;;;;1126:13;:27;1140:12;:10;:12::i;:::-;-1:-1:-1;;;;;1126:27:15;;;;;;;;;;;;-1:-1:-1;1126:27:15;;;;1125:28;1098:55;1094:126;;;1179:8;:6;:8::i;:::-;1178:9;1170:38;;;;-1:-1:-1;;;1170:38:15;;;;;;;:::i;:::-;1836:13:::1;1852:14;:12;:14::i;:::-;1836:30;;1871:18;1892:14;1902:3;1892:9;:14::i;:::-;1943:7;::::0;1871:35;;-1:-1:-1;1925:14:15::1;1933:6:::0;1925:5;:14:::1;:::i;:::-;:25;;1917:47;;;;-1:-1:-1::0;;;1917:47:15::1;;;;;;;:::i;:::-;1992:7;;1983:5;:16;;1975:37;;;;-1:-1:-1::0;;;1975:37:15::1;;;;;;;:::i;:::-;2041:11;;2031:6;:21;;2023:48;;;;-1:-1:-1::0;;;2023:48:15::1;;;;;;;:::i;:::-;2107:15;::::0;2084:19:::1;2097:6:::0;2084:10;:19:::1;:::i;:::-;:38;;2076:72;;;;-1:-1:-1::0;;;2076:72:15::1;;;;;;;:::i;:::-;2180:13;2186:6;2180:5;:13::i;:::-;2167:9;:26;;2159:56;;;;-1:-1:-1::0;;;2159:56:15::1;;;;;;;:::i;:::-;2231:9;2226:83;2250:6;2246:1;:10;2226:83;;;2278:19;2293:3;2278:14;:19::i;:::-;2258:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2226:83;;;;1230:1;;1757:559:::0;;:::o;5328:185:4:-;5466:39;5483:4;5489:2;5493:7;5466:39;;;;;;;;;;;;:16;:39::i;456:245:5:-;574:41;593:12;:10;:12::i;574:41::-;566:102;;;;-1:-1:-1;;;566:102:5;;;;;;;:::i;:::-;679:14;685:7;679:5;:14::i;2859:349:15:-;2921:16;2950:18;2971:17;2981:6;2971:9;:17::i;:::-;2950:38;;2999:25;3041:10;3027:25;;;;;;-1:-1:-1;;;3027:25:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3027:25:15;;2999:53;;3068:9;3063:112;3087:10;3083:1;:14;3063:112;;;3133:30;3153:6;3161:1;3133:19;:30::i;:::-;3119:8;3128:1;3119:11;;;;;;-1:-1:-1;;;3119:11:15;;;;;;;;;;;;;;;;;;:44;3099:3;;;;:::i;:::-;;;;3063:112;;;-1:-1:-1;3192:8:15;2859:349;-1:-1:-1;;;2859:349:15:o;557:27::-;;;;:::o;588:30::-;;;;:::o;1767:233:6:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:6;;;;;;;:::i;:::-;1975:10;1986:5;1975:17;;;;;;-1:-1:-1;;;1975:17:6;;;;;;;;;;;;;;;;;1968:24;;1767:233;;;:::o;2750:101:15:-;1230:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;2821:22:15;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2750:101:::0;:::o;1361:91::-;1403:7;1430:14;:12;:14::i;:::-;1423:21;;1361:91;:::o;1072:86:14:-;1143:7;;-1:-1:-1;;;1143:7:14;;;;;1072:86::o;2167:239:4:-;2239:7;2275:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2275:16:4;2310:19;2302:73;;;;-1:-1:-1;;;2302:73:4;;;;;;;:::i;846:46:7:-;;;;;;;;;;;;;;;:::o;474:22:15:-;;;;:::o;1897:208:4:-;1969:7;-1:-1:-1;;;;;1997:19:4;;1989:74;;;;-1:-1:-1;;;1989:74:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2081:16:4;;;;;:9;:16;;;;;;;1897:208::o;1650:94:13:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;3378:182:15:-;1230:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;3447:21:15::1;3487:11:::0;3479:20:::1;;;::::0;::::1;;3510:42;3521:7;:5;:7::i;:::-;3530:21;3510:10;:42::i;503:26::-:0;;;;:::o;4189:93::-;1230:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4258:5:15::1;:16:::0;4189:93::o;533:20::-;;;;:::o;999:87:13:-;1072:6;;-1:-1:-1;;;;;1072:6:13;999:87;:::o;2642:104:4:-;2698:13;2731:7;2724:14;;;;;:::i;4323:293::-;4438:12;:10;:12::i;:::-;-1:-1:-1;;;;;4426:24:4;:8;-1:-1:-1;;;;;4426:24:4;;;4418:62;;;;-1:-1:-1;;;4418:62:4;;;;;;;:::i;:::-;4536:8;4491:18;:32;4510:12;:10;:12::i;:::-;-1:-1:-1;;;;;4491:32:4;;;;;;;;;;;;;;;;;-1:-1:-1;4491:32:4;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4491:53:4;;;;;;;;;;;4575:12;:10;:12::i;:::-;-1:-1:-1;;;;;4560:48:4;;4599:8;4560:48;;;;;;:::i;:::-;;;;;;;;4323:293;;:::o;5584:328::-;5759:41;5778:12;:10;:12::i;:::-;5792:7;5759:18;:41::i;:::-;5751:103;;;;-1:-1:-1;;;5751:103:4;;;;;;;:::i;:::-;5865:39;5879:4;5885:2;5889:7;5898:5;5865:13;:39::i;1415:154:7:-;1230:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;1491:23:7;::::1;1517:5;1491:23:::0;;;:13:::1;:23;::::0;;;;;;:31;;-1:-1:-1;;1491:31:7::1;::::0;;1534:30;::::1;::::0;::::1;::::0;1505:8;;1534:30:::1;:::i;:::-;;;;;;;;1415:154:::0;:::o;2817:334:4:-;2890:13;2924:16;2932:7;2924;:16::i;:::-;2916:76;;;;-1:-1:-1;;;2916:76:4;;;;;;;:::i;:::-;3005:21;3029:10;:8;:10::i;:::-;3005:34;;3081:1;3063:7;3057:21;:25;:86;;;;;;;;;;;;;;;;;3109:7;3118:18;:7;:16;:18::i;:::-;3092:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3057:86;3050:93;2817:334;-1:-1:-1;;;2817:334:4:o;1575:243:7:-;1230:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;1670:9:7::1;1666:95;1685:19:::0;;::::1;1666:95;;;1745:4;1716:13;:26;1730:8;;1739:1;1730:11;;;;;-1:-1:-1::0;;;1730:11:7::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1716:26:7::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;1716:26:7;:33;;-1:-1:-1;;1716:33:7::1;::::0;::::1;;::::0;;;::::1;::::0;;1706:3;::::1;::::0;::::1;:::i;:::-;;;;1666:95;;;;1776:34;1801:8;;1776:34;;;;;;;:::i;1268:141::-:0;1230:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;1335:23:7;::::1;;::::0;;;:13:::1;:23;::::0;;;;;;:30;;-1:-1:-1;;1335:30:7::1;1361:4;1335:30;::::0;;1377:24;::::1;::::0;::::1;::::0;1349:8;;1377:24:::1;:::i;627:26:15:-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;640:37:4:-;;;;:::o;4398:158:15:-;1230:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4487:8:15::1;4476:7;;:19;;4468:47;;;;-1:-1:-1::0;;;4468:47:15::1;;;;;;;:::i;:::-;4526:11;:22:::0;4398:158::o;4732:171::-;1230:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4833:8:15::1;4814:15;;:27;;4806:55;;;;-1:-1:-1::0;;;4806:55:15::1;;;;;;;:::i;:::-;4872:12;:23:::0;4732:171::o;4687:164:4:-;-1:-1:-1;;;;;4808:25:4;;;4784:4;4808:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4687:164::o;4562::15:-;1230:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4654:14:15::1;:12;:14::i;:::-;4641:9;:27;;4633:55;;;;-1:-1:-1::0;;;4633:55:15::1;;;;;;;:::i;:::-;4699:7;:19:::0;4562:164::o;1899:192:13:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:13;;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:13;::::1;1980:73;;;;-1:-1:-1::0;;;1980:73:13::1;;;;;;;:::i;:::-;2064:19;2074:8;2064:9;:19::i;937:224:6:-:0;1039:4;-1:-1:-1;;;;;;1063:50:6;;-1:-1:-1;;;1063:50:6;;:90;;;1117:36;1141:11;1117:23;:36::i;601:98:1:-;681:10;601:98;:::o;1872:118:14:-;1398:8;:6;:8::i;:::-;1397:9;1389:38;;;;-1:-1:-1;;;1389:38:14;;;;;;;:::i;:::-;1932:7:::1;:14:::0;;-1:-1:-1;;;;1932:14:14::1;-1:-1:-1::0;;;1932:14:14::1;::::0;;1962:20:::1;1969:12;:10;:12::i;:::-;1962:20;;;;;;:::i;:::-;;;;;;;;1872:118::o:0;2131:120::-;1675:8;:6;:8::i;:::-;1667:41;;;;-1:-1:-1;;;1667:41:14;;;;;;;:::i;:::-;2190:7:::1;:15:::0;;-1:-1:-1;;;;2190:15:14::1;::::0;;2221:22:::1;2230:12;:10;:12::i;7422:127:4:-:0;7487:4;7511:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7511:16:4;:30;;;7422:127::o;11484:174::-;11559:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11559:29:4;-1:-1:-1;;;;;11559:29:4;;;;;;;;:24;;11613:23;11559:24;11613:14;:23::i;:::-;-1:-1:-1;;;;;11604:46:4;;;;;;;;;;;11484:174;;:::o;7716:348::-;7809:4;7834:16;7842:7;7834;:16::i;:::-;7826:73;;;;-1:-1:-1;;;7826:73:4;;;;;;;:::i;:::-;7910:13;7926:23;7941:7;7926:14;:23::i;:::-;7910:39;;7979:5;-1:-1:-1;;;;;7968:16:4;:7;-1:-1:-1;;;;;7968:16:4;;:51;;;;8012:7;-1:-1:-1;;;;;7988:31:4;:20;8000:7;7988:11;:20::i;:::-;-1:-1:-1;;;;;7988:31:4;;7968:51;:87;;;;8023:32;8040:5;8047:7;8023:16;:32::i;:::-;7960:96;7716:348;-1:-1:-1;;;;7716:348:4:o;10708:658::-;10867:4;-1:-1:-1;;;;;10840:31:4;:23;10855:7;10840:14;:23::i;:::-;-1:-1:-1;;;;;10840:31:4;;10832:85;;;;-1:-1:-1;;;10832:85:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;10936:16:4;;10928:65;;;;-1:-1:-1;;;10928:65:4;;;;;;;:::i;:::-;11029:15;;11006:20;11023:2;11006:16;:20::i;:::-;:38;10998:73;;;;-1:-1:-1;;;10998:73:4;;;;;;;:::i;:::-;11086:39;11107:4;11113:2;11117:7;11086:20;:39::i;:::-;11190:29;11207:1;11211:7;11190:8;:29::i;:::-;-1:-1:-1;;;;;11232:15:4;;;;;;:9;:15;;;;;:20;;11251:1;;11232:15;:20;;11251:1;;11232:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11263:13:4;;;;;;:9;:13;;;;;:18;;11280:1;;11263:13;:18;;11280:1;;11263:18;:::i;:::-;;;;-1:-1:-1;;11292:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11292:21:4;-1:-1:-1;;;;;11292:21:4;;;;;;;;;11331:27;;11292:16;;11331:27;;;;;;;10708:658;;;:::o;3501:98:16:-;3559:7;3586:5;3590:1;3586;:5;:::i;2325:185:15:-;2381:7;2391:14;:12;:14::i;:::-;2381:24;;2416:27;:15;:25;:27::i;:::-;2454:18;2464:3;2469:2;2454:9;:18::i;:::-;2488:14;;2499:2;;2488:14;;;;;2325:185;;:::o;1248:104::-;1295:4;1319:25;:15;:23;:25::i;10011:360:4:-;10071:13;10087:23;10102:7;10087:14;:23::i;:::-;10071:39;;10123:48;10144:5;10159:1;10163:7;10123:20;:48::i;:::-;10212:29;10229:1;10233:7;10212:8;:29::i;:::-;-1:-1:-1;;;;;10254:16:4;;;;;;:9;:16;;;;;:21;;10274:1;;10254:16;:21;;10274:1;;10254:21;:::i;:::-;;;;-1:-1:-1;;10293:16:4;;;;:7;:16;;;;;;10286:23;;-1:-1:-1;;;;;;10286:23:4;;;10327:36;10301:7;;10293:16;-1:-1:-1;;;;;10327:36:4;;;;;10293:16;;10327:36;10011:360;;:::o;2099:173:13:-;2174:6;;;-1:-1:-1;;;;;2191:17:13;;;-1:-1:-1;;;;;;2191:17:13;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2099:173;;:::o;3568:181:15:-;3643:12;3661:8;-1:-1:-1;;;;;3661:13:15;3682:7;3661:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3642:52;;;3713:7;3705:36;;;;-1:-1:-1;;;3705:36:15;;;;;;;:::i;6794:315:4:-;6951:28;6961:4;6967:2;6971:7;6951:9;:28::i;:::-;6998:48;7021:4;7027:2;7031:7;7040:5;6998:22;:48::i;:::-;6990:111;;;;-1:-1:-1;;;6990:111:4;;;;;;;:::i;2631:113:15:-;2691:13;2724:12;2717:19;;;;;:::i;288:723:17:-;344:13;565:10;561:53;;-1:-1:-1;592:10:17;;;;;;;;;;;;-1:-1:-1;;;592:10:17;;;;;;561:53;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:17;;-1:-1:-1;744:2:17;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;-1:-1:-1;;;790:17:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:17;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:17;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;-1:-1:-1;;;878:14:17;;;;;;;;;;;;:56;-1:-1:-1;;;;;878:56:17;;;;;;;;-1:-1:-1;949:11:17;958:2;949:11;;:::i;:::-;;;818:154;;1528:305:4;1630:4;-1:-1:-1;;;;;;1667:40:4;;-1:-1:-1;;;1667:40:4;;:105;;-1:-1:-1;;;;;;;1724:48:4;;-1:-1:-1;;;1724:48:4;1667:105;:158;;;;1789:36;1813:11;1789:23;:36::i;3757:239:15:-;3943:45;3970:4;3976:2;3980:7;3943:26;:45::i;915:127:2:-;1004:19;;1022:1;1004:19;;;915:127::o;8406:110:4:-;8482:26;8492:2;8496:7;8482:26;;;;;;;;;;;;:9;:26::i;793:114:2:-;885:14;;793:114::o;12223:803:4:-;12378:4;12399:15;:2;-1:-1:-1;;;;;12399:13:4;;:15::i;:::-;12395:624;;;12451:2;-1:-1:-1;;;;;12435:36:4;;12472:12;:10;:12::i;:::-;12486:4;12492:7;12501:5;12435:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12435:72:4;;;;;;;;-1:-1:-1;;12435:72:4;;;;;;;;;;;;:::i;:::-;;;12431:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12681:13:4;;12677:272;;12724:60;;-1:-1:-1;;;12724:60:4;;;;;;;:::i;12677:272::-;12899:6;12893:13;12884:6;12880:2;12876:15;12869:38;12431:533;-1:-1:-1;;;;;;12558:55:4;-1:-1:-1;;;12558:55:4;;-1:-1:-1;12551:62:4;;12395:624;-1:-1:-1;13003:4:4;12223:803;;;;;;:::o;787:157:3:-;-1:-1:-1;;;;;;896:40:3;;-1:-1:-1;;;896:40:3;787:157;;;:::o;902:360:7:-;1046:45;1073:4;1079:2;1083:7;1046:26;:45::i;:::-;1122:7;:5;:7::i;:::-;-1:-1:-1;;;;;1106:23:7;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1106:23:7;;;:55;;;;;1134:13;:27;1148:12;:10;:12::i;:::-;-1:-1:-1;;;;;1134:27:7;;;;;;;;;;;;-1:-1:-1;1134:27:7;;;;1133:28;1106:55;1102:153;;;1187:8;:6;:8::i;:::-;1186:9;1178:65;;;;-1:-1:-1;;;1178:65:7;;;;;;;:::i;8743:321:4:-;8873:18;8879:2;8883:7;8873:5;:18::i;:::-;8924:54;8955:1;8959:2;8963:7;8972:5;8924:22;:54::i;:::-;8902:154;;;;-1:-1:-1;;;8902:154:4;;;;;;;:::i;743:387:0:-;1066:20;1114:8;;;743:387::o;2613:589:6:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;-1:-1:-1;;;;;2819:18:6;;2815:187;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:6;:4;-1:-1:-1;;;;;2916:10:6;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:6;;3012:183;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;-1:-1:-1;;;;;3116:10:6;:2;-1:-1:-1;;;;;3116:10:6;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;9400:382:4:-;-1:-1:-1;;;;;9480:16:4;;9472:61;;;;-1:-1:-1;;;9472:61:4;;;;;;;:::i;:::-;9553:16;9561:7;9553;:16::i;:::-;9552:17;9544:58;;;;-1:-1:-1;;;9544:58:4;;;;;;;:::i;:::-;9615:45;9644:1;9648:2;9652:7;9615:20;:45::i;:::-;-1:-1:-1;;;;;9673:13:4;;;;;;:9;:13;;;;;:18;;9690:1;;9673:13;:18;;9690:1;;9673:18;:::i;:::-;;;;-1:-1:-1;;9702:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9702:21:4;-1:-1:-1;;;;;9702:21:4;;;;;;;;9741:33;;9702:16;;;9741:33;;9702:16;;9741:33;9400:382;;:::o;3925:164:6:-;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:6;;;5194:328;;-1:-1:-1;;;;;5265:18:6;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:6;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:6;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:6;;6252:46;;6703:26;;;;-1:-1:-1;;;6703:26:6;;;;;;;;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;-1:-1:-1;;;6742:22:6;;;;;;;;;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;-1:-1:-1;;;7054:16:6;;;;;;;;;;;;;;;;;;;;;;;;;;5999:1079;;;;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:6:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:18;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:18;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:18;473:16;;;470:25;-1:-1:-1;467:2:18;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:18;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:18;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:18:o;3053:666::-;;;3200:2;3188:9;3179:7;3175:23;3171:32;3168:2;;;3221:6;3213;3206:22;3168:2;3266:9;3253:23;3295:18;3336:2;3328:6;3325:14;3322:2;;;3357:6;3349;3342:22;3322:2;3400:6;3389:9;3385:22;3375:32;;3445:7;3438:4;3434:2;3430:13;3426:27;3416:2;;3472:6;3464;3457:22;3416:2;3517;3504:16;3543:2;3535:6;3532:14;3529:2;;;3564:6;3556;3549:22;3529:2;3623:7;3618:2;3612;3604:6;3600:15;3596:2;3592:24;3588:33;3585:46;3582:2;;;3649:6;3641;3634:22;3582:2;3685;3677:11;;;;;3707:6;;-1:-1:-1;3158:561:18;;-1:-1:-1;;;;3158:561:18:o;3724:192::-;;3833:2;3821:9;3812:7;3808:23;3804:32;3801:2;;;3854:6;3846;3839:22;3801:2;3882:28;3900:9;3882:28;:::i;3921:257::-;;4032:2;4020:9;4011:7;4007:23;4003:32;4000:2;;;4053:6;4045;4038:22;4000:2;4097:9;4084:23;4116:32;4142:5;4116:32;:::i;4183:261::-;;4305:2;4293:9;4284:7;4280:23;4276:32;4273:2;;;4326:6;4318;4311:22;4273:2;4363:9;4357:16;4382:32;4408:5;4382:32;:::i;4449:482::-;;4571:2;4559:9;4550:7;4546:23;4542:32;4539:2;;;4592:6;4584;4577:22;4539:2;4637:9;4624:23;4670:18;4662:6;4659:30;4656:2;;;4707:6;4699;4692:22;4656:2;4735:22;;4788:4;4780:13;;4776:27;-1:-1:-1;4766:2:18;;4822:6;4814;4807:22;4766:2;4850:75;4917:7;4912:2;4899:16;4894:2;4890;4886:11;4850:75;:::i;4936:190::-;;5048:2;5036:9;5027:7;5023:23;5019:32;5016:2;;;5069:6;5061;5054:22;5016:2;-1:-1:-1;5097:23:18;;5006:120;-1:-1:-1;5006:120:18:o;5131:259::-;;5212:5;5206:12;5239:6;5234:3;5227:19;5255:63;5311:6;5304:4;5299:3;5295:14;5288:4;5281:5;5277:16;5255:63;:::i;:::-;5372:2;5351:15;-1:-1:-1;;5347:29:18;5338:39;;;;5379:4;5334:50;;5182:208;-1:-1:-1;;5182:208:18:o;5395:470::-;;5612:6;5606:13;5628:53;5674:6;5669:3;5662:4;5654:6;5650:17;5628:53;:::i;:::-;5744:13;;5703:16;;;;5766:57;5744:13;5703:16;5800:4;5788:17;;5766:57;:::i;:::-;5839:20;;5582:283;-1:-1:-1;;;;5582:283:18:o;5870:205::-;6070:3;6061:14::o;6080:203::-;-1:-1:-1;;;;;6244:32:18;;;;6226:51;;6214:2;6199:18;;6181:102::o;6288:490::-;-1:-1:-1;;;;;6557:15:18;;;6539:34;;6609:15;;6604:2;6589:18;;6582:43;6656:2;6641:18;;6634:34;;;6704:3;6699:2;6684:18;;6677:31;;;6288:490;;6725:47;;6752:19;;6744:6;6725:47;:::i;:::-;6717:55;6491:287;-1:-1:-1;;;;;;6491:287:18:o;6783:641::-;6964:2;7016:21;;;6989:18;;;7072:22;;;6783:641;;7151:6;7125:2;7110:18;;6783:641;7188:210;7202:6;7199:1;7196:13;7188:210;;;-1:-1:-1;;;;;7267:28:18;7288:6;7267:28;:::i;:::-;7263:54;7251:67;;7373:15;;;;7338:12;;;;7224:1;7217:9;7188:210;;;-1:-1:-1;7415:3:18;6944:480;-1:-1:-1;;;;;;6944:480:18:o;7429:635::-;7600:2;7652:21;;;7722:13;;7625:18;;;7744:22;;;7429:635;;7600:2;7823:15;;;;7797:2;7782:18;;;7429:635;7869:169;7883:6;7880:1;7877:13;7869:169;;;7944:13;;7932:26;;8013:15;;;;7978:12;;;;7905:1;7898:9;7869:169;;;-1:-1:-1;8055:3:18;;7580:484;-1:-1:-1;;;;;;7580:484:18:o;8069:187::-;8234:14;;8227:22;8209:41;;8197:2;8182:18;;8164:92::o;8261:221::-;;8410:2;8399:9;8392:21;8430:46;8472:2;8461:9;8457:18;8449:6;8430:46;:::i;8487:407::-;8689:2;8671:21;;;8728:2;8708:18;;;8701:30;8767:34;8762:2;8747:18;;8740:62;-1:-1:-1;;;8833:2:18;8818:18;;8811:41;8884:3;8869:19;;8661:233::o;8899:344::-;9101:2;9083:21;;;9140:2;9120:18;;;9113:30;-1:-1:-1;;;9174:2:18;9159:18;;9152:50;9234:2;9219:18;;9073:170::o;9248:338::-;9450:2;9432:21;;;9489:2;9469:18;;;9462:30;-1:-1:-1;;;9523:2:18;9508:18;;9501:44;9577:2;9562:18;;9422:164::o;9591:407::-;9793:2;9775:21;;;9832:2;9812:18;;;9805:30;9871:34;9866:2;9851:18;;9844:62;-1:-1:-1;;;9937:2:18;9922:18;;9915:41;9988:3;9973:19;;9765:233::o;10003:414::-;10205:2;10187:21;;;10244:2;10224:18;;;10217:30;10283:34;10278:2;10263:18;;10256:62;-1:-1:-1;;;10349:2:18;10334:18;;10327:48;10407:3;10392:19;;10177:240::o;10422:402::-;10624:2;10606:21;;;10663:2;10643:18;;;10636:30;10702:34;10697:2;10682:18;;10675:62;-1:-1:-1;;;10768:2:18;10753:18;;10746:36;10814:3;10799:19;;10596:228::o;10829:352::-;11031:2;11013:21;;;11070:2;11050:18;;;11043:30;11109;11104:2;11089:18;;11082:58;11172:2;11157:18;;11003:178::o;11186:400::-;11388:2;11370:21;;;11427:2;11407:18;;;11400:30;11466:34;11461:2;11446:18;;11439:62;-1:-1:-1;;;11532:2:18;11517:18;;11510:34;11576:3;11561:19;;11360:226::o;11591:349::-;11793:2;11775:21;;;11832:2;11812:18;;;11805:30;11871:27;11866:2;11851:18;;11844:55;11931:2;11916:18;;11765:175::o;11945:332::-;12147:2;12129:21;;;12186:1;12166:18;;;12159:29;-1:-1:-1;;;12219:2:18;12204:18;;12197:39;12268:2;12253:18;;12119:158::o;12282:408::-;12484:2;12466:21;;;12523:2;12503:18;;;12496:30;12562:34;12557:2;12542:18;;12535:62;-1:-1:-1;;;12628:2:18;12613:18;;12606:42;12680:3;12665:19;;12456:234::o;12695:340::-;12897:2;12879:21;;;12936:2;12916:18;;;12909:30;-1:-1:-1;;;12970:2:18;12955:18;;12948:46;13026:2;13011:18;;12869:166::o;13040:420::-;13242:2;13224:21;;;13281:2;13261:18;;;13254:30;13320:34;13315:2;13300:18;;13293:62;13391:26;13386:2;13371:18;;13364:54;13450:3;13435:19;;13214:246::o;13465:406::-;13667:2;13649:21;;;13706:2;13686:18;;;13679:30;13745:34;13740:2;13725:18;;13718:62;-1:-1:-1;;;13811:2:18;13796:18;;13789:40;13861:3;13846:19;;13639:232::o;13876:405::-;14078:2;14060:21;;;14117:2;14097:18;;;14090:30;14156:34;14151:2;14136:18;;14129:62;-1:-1:-1;;;14222:2:18;14207:18;;14200:39;14271:3;14256:19;;14050:231::o;14286:356::-;14488:2;14470:21;;;14507:18;;;14500:30;14566:34;14561:2;14546:18;;14539:62;14633:2;14618:18;;14460:182::o;14647:331::-;14849:2;14831:21;;;14888:1;14868:18;;;14861:29;-1:-1:-1;;;14921:2:18;14906:18;;14899:38;14969:2;14954:18;;14821:157::o;14983:408::-;15185:2;15167:21;;;15224:2;15204:18;;;15197:30;15263:34;15258:2;15243:18;;15236:62;-1:-1:-1;;;15329:2:18;15314:18;;15307:42;15381:3;15366:19;;15157:234::o;15396:339::-;15598:2;15580:21;;;15637:2;15617:18;;;15610:30;-1:-1:-1;;;15671:2:18;15656:18;;15649:45;15726:2;15711:18;;15570:165::o;15740:356::-;15942:2;15924:21;;;15961:18;;;15954:30;16020:34;16015:2;16000:18;;15993:62;16087:2;16072:18;;15914:182::o;16101:346::-;16303:2;16285:21;;;16342:2;16322:18;;;16315:30;-1:-1:-1;;;16376:2:18;16361:18;;16354:52;16438:2;16423:18;;16275:172::o;16452:405::-;16654:2;16636:21;;;16693:2;16673:18;;;16666:30;16732:34;16727:2;16712:18;;16705:62;-1:-1:-1;;;16798:2:18;16783:18;;16776:39;16847:3;16832:19;;16626:231::o;16862:411::-;17064:2;17046:21;;;17103:2;17083:18;;;17076:30;17142:34;17137:2;17122:18;;17115:62;-1:-1:-1;;;17208:2:18;17193:18;;17186:45;17263:3;17248:19;;17036:237::o;17278:341::-;17480:2;17462:21;;;17519:2;17499:18;;;17492:30;-1:-1:-1;;;17553:2:18;17538:18;;17531:47;17610:2;17595:18;;17452:167::o;17624:345::-;17826:2;17808:21;;;17865:2;17845:18;;;17838:30;-1:-1:-1;;;17899:2:18;17884:18;;17877:51;17960:2;17945:18;;17798:171::o;17974:397::-;18176:2;18158:21;;;18215:2;18195:18;;;18188:30;18254:34;18249:2;18234:18;;18227:62;-1:-1:-1;;;18320:2:18;18305:18;;18298:31;18361:3;18346:19;;18148:223::o;18376:340::-;18578:2;18560:21;;;18617:2;18597:18;;;18590:30;-1:-1:-1;;;18651:2:18;18636:18;;18629:46;18707:2;18692:18;;18550:166::o;18721:413::-;18923:2;18905:21;;;18962:2;18942:18;;;18935:30;19001:34;18996:2;18981:18;;18974:62;-1:-1:-1;;;19067:2:18;19052:18;;19045:47;19124:3;19109:19;;18895:239::o;19139:408::-;19341:2;19323:21;;;19380:2;19360:18;;;19353:30;19419:34;19414:2;19399:18;;19392:62;-1:-1:-1;;;19485:2:18;19470:18;;19463:42;19537:3;19522:19;;19313:234::o;19552:412::-;19754:2;19736:21;;;19793:2;19773:18;;;19766:30;19832:34;19827:2;19812:18;;19805:62;-1:-1:-1;;;19898:2:18;19883:18;;19876:46;19954:3;19939:19;;19726:238::o;19969:177::-;20115:25;;;20103:2;20088:18;;20070:76::o;20151:128::-;;20222:1;20218:6;20215:1;20212:13;20209:2;;;20228:18;;:::i;:::-;-1:-1:-1;20264:9:18;;20199:80::o;20284:120::-;;20350:1;20340:2;;20355:18;;:::i;:::-;-1:-1:-1;20389:9:18;;20330:74::o;20409:168::-;;20515:1;20511;20507:6;20503:14;20500:1;20497:21;20492:1;20485:9;20478:17;20474:45;20471:2;;;20522:18;;:::i;:::-;-1:-1:-1;20562:9:18;;20461:116::o;20582:125::-;;20650:1;20647;20644:8;20641:2;;;20655:18;;:::i;:::-;-1:-1:-1;20692:9:18;;20631:76::o;20712:258::-;20784:1;20794:113;20808:6;20805:1;20802:13;20794:113;;;20884:11;;;20878:18;20865:11;;;20858:39;20830:2;20823:10;20794:113;;;20925:6;20922:1;20919:13;20916:2;;;-1:-1:-1;;20960:1:18;20942:16;;20935:27;20765:205::o;20975:380::-;21060:1;21050:12;;21107:1;21097:12;;;21118:2;;21172:4;21164:6;21160:17;21150:27;;21118:2;21225;21217:6;21214:14;21194:18;21191:38;21188:2;;;21271:10;21266:3;21262:20;21259:1;21252:31;21306:4;21303:1;21296:15;21334:4;21331:1;21324:15;21188:2;;21030:325;;;:::o;21360:135::-;;-1:-1:-1;;21420:17:18;;21417:2;;;21440:18;;:::i;:::-;-1:-1:-1;21487:1:18;21476:13;;21407:88::o;21500:112::-;;21558:1;21548:2;;21563:18;;:::i;:::-;-1:-1:-1;21597:9:18;;21538:74::o;21617:127::-;21678:10;21673:3;21669:20;21666:1;21659:31;21709:4;21706:1;21699:15;21733:4;21730:1;21723:15;21749:127;21810:10;21805:3;21801:20;21798:1;21791:31;21841:4;21838:1;21831:15;21865:4;21862:1;21855:15;21881:127;21942:10;21937:3;21933:20;21930:1;21923:31;21973:4;21970:1;21963:15;21997:4;21994:1;21987:15;22013:133;-1:-1:-1;;;;;;22089:32:18;;22079:43;;22069:2;;22136:1;22133;22126:12

Swarm Source

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