ETH Price: $3,385.61 (-1.51%)
Gas: 1 Gwei

Token

Crazy Babies (CB)
 

Overview

Max Total Supply

3,902 CB

Holders

2,213

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 CB
0x83a4bd60eb630c99e0031b3abd1907f7aa3ed4df
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
CrazyBabies

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 4 of 17: CrazyBabies.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./Counters.sol";
import "./PaymentSplitter.sol";
import "./Pausable.sol";

contract CrazyBabies is ERC721Enumerable, Pausable, PaymentSplitter {
    using Counters for Counters.Counter;

    uint256 public maxTotalSupply = 8277;
    uint256 public maxGiftSupply = 500;
    uint256 public maxCount = 2;
    uint256 public giftCount;
    uint256 public presaleCount;
    uint256 public totalNFT;
    bool public isBurnEnabled;
    bool public PublicSaleStarted;
    bool public PreSaleStarted = false;
    uint256 public MintPrice = 140000000000000000;
    string public baseURI;
    Counters.Counter private _tokenIds;
    uint256[] private _teamShares = [100];
    address[] private _team = [0x2420D04348251b711106E786B1B5F7044842aA9f];
    mapping(address => bool) private _presaleList;
    mapping(address => uint256) public _presaleClaimed;
    mapping(address => uint256) public _giftClaimed;
    mapping(address => uint256) public _saleClaimed;
    mapping(address => uint256) public _totalClaimed;

    enum WorkflowStatus {
        CheckOnPresale,
        Presale,
        Sale,
        SoldOut
    }
    WorkflowStatus public workflow;
    event ChangeIsBurnEnabled(bool _isBurnEnabled);
    event ChangePublicSaleStarted(bool _PublicSaleStarted);
    event ChangePreSaleStarted(bool _PreSaleStarted);
    event ChangeBaseURI(string _baseURI);
    event ChangeMintPrice(uint256 _MintPrice);
    event GiftMint(address indexed _recipient, uint256 _amount);
    event PresaleMint(address indexed _minter, uint256 _amount, uint256 _price);
    event SaleMint(address indexed _minter, uint256 _amount, uint256 _price);
    event WorkflowStatusChange(
        WorkflowStatus previousStatus,
        WorkflowStatus newStatus
    );

    constructor()
        ERC721("Crazy Babies", "CB")
        PaymentSplitter(_team, _teamShares)
    {}

    function setBaseURI(string calldata _tokenBaseURI) external onlyOwner {
        baseURI = _tokenBaseURI;
        emit ChangeBaseURI(_tokenBaseURI);
    }

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

    function addToPresaleList(address[] calldata _addresses)
        external
        onlyOwner
    {
        for (uint256 ind = 0; ind < _addresses.length; ind++) {
            require(
                _addresses[ind] != address(0),
                "Message: Can't add a zero address"
            );
            if (_presaleList[_addresses[ind]] == false) {
                _presaleList[_addresses[ind]] = true;
            }
        }
    }

    function isOnPresaleList(address _address) external view returns (bool) {
        return _presaleList[_address];
    }

    function removeFromPresaleList(address[] calldata _addresses)
        external
        onlyOwner
    {
        for (uint256 ind = 0; ind < _addresses.length; ind++) {
            require(
                _addresses[ind] != address(0),
                "Message: Can't remove a zero address"
            );
            if (_presaleList[_addresses[ind]] == true) {
                _presaleList[_addresses[ind]] = false;
            }
        }
    }

    function setUpSale(bool _PublicSaleStarted) external onlyOwner {
               PublicSaleStarted = _PublicSaleStarted;
        emit ChangePublicSaleStarted(_PublicSaleStarted);
        PublicSaleStarted = true;
        emit ChangePublicSaleStarted(true);
        maxCount = 10;
        workflow = WorkflowStatus.Sale;
        emit WorkflowStatusChange(WorkflowStatus.Presale, WorkflowStatus.Sale);
    }

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

function setPreSaleStarted(bool _PreSaleStarted) external onlyOwner {
        PreSaleStarted = _PreSaleStarted;
        emit ChangePreSaleStarted(_PreSaleStarted);
    }

function setPublicSaleStarted(bool _PublicSaleStarted) external onlyOwner {
        PublicSaleStarted = _PublicSaleStarted;
        emit ChangePublicSaleStarted(_PublicSaleStarted);
    }

    function setIsBurnEnabled(bool _isBurnEnabled) external onlyOwner {
        isBurnEnabled = _isBurnEnabled;
        emit ChangeIsBurnEnabled(_isBurnEnabled);
    }

      function setPrice(uint256 _amount) external onlyOwner {
        MintPrice = _amount * 10000000000000000;
        emit ChangeMintPrice(_amount * 10000000000000000);
    }

    function giftMint(address[] calldata _addresses)
        external
        onlyOwner
        whenNotPaused
    {
        require(
            totalNFT + _addresses.length <= maxTotalSupply,
            "Message: max total supply exceeded"
        );

        require(
            giftCount + _addresses.length <= maxGiftSupply,
            "Message: max gift supply exceeded"
        );

        uint256 _newItemId;
        for (uint256 ind = 0; ind < _addresses.length; ind++) {
            require(
                _addresses[ind] != address(0),
                "Message: recepient is the null address"
            );
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(_addresses[ind], _newItemId);
            _giftClaimed[_addresses[ind]] = _giftClaimed[_addresses[ind]] + 1;
            _totalClaimed[_addresses[ind]] = _totalClaimed[_addresses[ind]] + 1;
            totalNFT = totalNFT + 1;
            giftCount = giftCount + 1;
        }
    }

    function presaleMint(uint256 _amount) internal {
        require(
           PreSaleStarted == true,
            "You are not on the presale list."
        );
        require(
            _presaleList[msg.sender] == true,
            "You are not on the presale list"
        );
        require(
            _presaleClaimed[msg.sender] + _amount <= maxCount,
            "Message: Can only mint 2 tokens"
        );
        require(
            totalNFT + _amount <= maxTotalSupply,
            "Message: max supply exceeded"
        );
        uint256 _price = getPrice();
        require(
            _price * _amount <= msg.value,
            "Message: Ether value sent is not correct"
        );
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            _presaleClaimed[msg.sender] = _presaleClaimed[msg.sender] + _amount;
            _totalClaimed[msg.sender] = _totalClaimed[msg.sender] + _amount;
            totalNFT = totalNFT + 1;
            presaleCount = presaleCount + 1;
        }
        emit PresaleMint(msg.sender, _amount, _price);
    }

    function saleMint(uint256 _amount) internal {
        require(
           PublicSaleStarted == true,
            "Sale isn't started."
        );
        require(_amount > 0, "Message: zero amount");
        require(
            _amount <= maxCount,
            "Message:  Can only mint 10 tokens at a time"
        );
        require(
            totalNFT + _amount <= maxTotalSupply,
            "Message: max supply exceeded"
        );
        uint256 _price = getPrice();
        require(
            _price * _amount <= msg.value,
            "Message: Ether value sent is not correct"
        );
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            _saleClaimed[msg.sender] = _saleClaimed[msg.sender] + _amount;
            _totalClaimed[msg.sender] = _totalClaimed[msg.sender] + _amount;
            totalNFT = totalNFT + 1;
        }
        emit SaleMint(msg.sender, _amount, _price);
    }

    function mainMint(uint256 _amount) external payable whenNotPaused {
        if (PublicSaleStarted == false) {
            presaleMint(_amount);
        } else {
            saleMint(_amount);
        }
        if (totalNFT + _amount == maxTotalSupply) {
            workflow = WorkflowStatus.SoldOut;
            emit WorkflowStatusChange(
                WorkflowStatus.Sale,
                WorkflowStatus.SoldOut
            );
        }
    }

    function burn(uint256 tokenId) external {
        require(isBurnEnabled, "Message: burning disabled");
        require(
            _isApprovedOrOwner(msg.sender, tokenId),
            "Message: burn caller is not owner"
        );
        _burn(tokenId);
        totalNFT = totalNFT - 1;
    }

    function getWorkflowStatus() public view returns (uint256) {
        uint256 _status;
        if (workflow == WorkflowStatus.CheckOnPresale) {
            _status = 1;
        }
        if (workflow == WorkflowStatus.Presale) {
            _status = 2;
        }
        if (workflow == WorkflowStatus.Sale) {
            _status = 3;
        }
        if (workflow == WorkflowStatus.SoldOut) {
            _status = 4;
        }
        return _status;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 7 of 17: 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 17: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 13 of 17: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

import "./Ownable.sol";

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
    event Pause();
    event Unpause();

    bool public paused = false;

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!paused, "Transaction is not available");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(paused, "Transaction is available");
        _;
    }

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() public onlyOwner whenNotPaused {
        paused = true;
        emit Pause();
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() public onlyOwner whenPaused {
        paused = false;
        emit Unpause();
    }
}

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

pragma solidity ^0.8.0;

import "./Address.sol";
import "./Context.sol";
import "./SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 16 of 17: 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 17 of 17: 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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"ChangeBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"ChangeIsBurnEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_MintPrice","type":"uint256"}],"name":"ChangeMintPrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_PreSaleStarted","type":"bool"}],"name":"ChangePreSaleStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_PublicSaleStarted","type":"bool"}],"name":"ChangePublicSaleStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"GiftMint","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":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"SaleMint","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":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum CrazyBabies.WorkflowStatus","name":"previousStatus","type":"uint8"},{"indexed":false,"internalType":"enum CrazyBabies.WorkflowStatus","name":"newStatus","type":"uint8"}],"name":"WorkflowStatusChange","type":"event"},{"inputs":[],"name":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_giftClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_presaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_saleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToPresaleList","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":"baseURI","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":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWorkflowStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"giftMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isOnPresaleList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mainMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGiftSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromPresaleList","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":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"setIsBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_PreSaleStarted","type":"bool"}],"name":"setPreSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_PublicSaleStarted","type":"bool"}],"name":"setPublicSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_PublicSaleStarted","type":"bool"}],"name":"setUpSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"totalNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"workflow","outputs":[{"internalType":"enum CrazyBabies.WorkflowStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600a805460ff60a01b191690556120556010556101f460115560026012556016805462ff0000191690556701f161421c8e000060175560a0604052606460809081526200005190601a90600162000544565b506040805160208101909152732420d04348251b711106e786b1b5f7044842aa9f81526200008490601b90600162000599565b503480156200009257600080fd5b50601b805480602002602001604051908101604052809291908181526020018280548015620000eb57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620000cc575b5050505050601a8054806020026020016040519081016040528092919081815260200182805480156200013e57602002820191906000526020600020905b81548152602001906001019080831162000129575b5050604080518082018252600c81526b4372617a792042616269657360a01b60208083019182528351808501909452600284526121a160f11b90840152815191955091935062000193925060009190620005f1565b508051620001a9906001906020840190620005f1565b505050620001c6620001c06200030060201b60201c565b62000304565b8051825114620002385760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200028b5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200022f565b60005b8251811015620002f757620002e2838281518110620002b157620002b162000685565b6020026020010151838381518110620002ce57620002ce62000685565b60200260200101516200035660201b60201c565b80620002ee81620006b1565b9150506200028e565b50505062000727565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003c35760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200022f565b60008111620004155760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200022f565b6001600160a01b0382166000908152600d602052604090205415620004915760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200022f565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b54620004fb908290620006cf565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b82805482825590600052602060002090810192821562000587579160200282015b8281111562000587578251829060ff1690559160200191906001019062000565565b50620005959291506200066e565b5090565b82805482825590600052602060002090810192821562000587579160200282015b828111156200058757825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005ba565b828054620005ff90620006ea565b90600052602060002090601f01602090048101928262000623576000855562000587565b82601f106200063e57805160ff191683800117855562000587565b8280016001018555821562000587579182015b828111156200058757825182559160200191906001019062000651565b5b808211156200059557600081556001016200066f565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415620006c857620006c86200069b565b5060010190565b60008219821115620006e557620006e56200069b565b500190565b600181811c90821680620006ff57607f821691505b602082108114156200072157634e487b7160e01b600052602260045260246000fd5b50919050565b613b2d80620007376000396000f3fe6080604052600436106103845760003560e01c80637f61feaf116101d1578063a5fd7bec11610102578063e33b7de3116100a0578063f2fde38b1161006f578063f2fde38b14610ad2578063f578d9df14610af2578063f75d64a614610b05578063fdbf9ef214610b1a57600080fd5b8063e33b7de314610a3e578063e59ee01414610a53578063e985e9c514610a73578063ed70037414610abc57600080fd5b8063c87b56dd116100dc578063c87b56dd14610999578063cde27a35146109b9578063ce7c2ac2146109cf578063de00a68b14610a0557600080fd5b8063a5fd7bec14610939578063b179e06014610959578063b88d4fde1461097957600080fd5b806391b7f5ed1161016f57806398d5fdca1161014957806398d5fdca146108c75780639ef2d87a146108dc578063a22cb465146108f2578063a33441251461091257600080fd5b806391b7f5ed1461085c57806395d89b411461087c5780639852595c1461089157600080fd5b80638b83209b116101ab5780638b83209b146107d15780638cc4de19146107f15780638da5cb5b1461081e5780638dff4c1d1461083c57600080fd5b80637f61feaf146107715780637f674f48146107905780638456cb59146107bc57600080fd5b80633f4ba83a116102b65780635c975abb116102545780636e0e5b19116102235780636e0e5b19146106fc57806370a082311461071c578063715018a61461073c5780637204a3c91461075157600080fd5b80635c975abb146106905780635edbc28c146106b15780636352211e146106c75780636c0360eb146106e757600080fd5b80634f6ccce7116102905780634f6ccce71461060357806352d728d91461062357806355f804b3146106505780635af46b4b1461067057600080fd5b80633f4ba83a146105ae57806342842e0e146105c357806342966c68146105e357600080fd5b806318160ddd116103235780632412f8d7116102fd5780632412f8d7146105435780632ab4d052146105635780632f745c59146105795780633a98ef391461059957600080fd5b806318160ddd146104ee578063191655871461050357806323b872dd1461052357600080fd5b806307ebec271161035f57806307ebec271461044d578063081812fc14610467578063095ea7b31461049f57806309c3fbb7146104c157600080fd5b8062456379146103d257806301ffc9a7146103fb57806306fdde031461042b57600080fd5b366103cd577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103de57600080fd5b506103e860155481565b6040519081526020015b60405180910390f35b34801561040757600080fd5b5061041b6104163660046133bf565b610b30565b60405190151581526020016103f2565b34801561043757600080fd5b50610440610b5b565b6040516103f29190613434565b34801561045957600080fd5b5060165461041b9060ff1681565b34801561047357600080fd5b50610487610482366004613447565b610bed565b6040516001600160a01b0390911681526020016103f2565b3480156104ab57600080fd5b506104bf6104ba366004613475565b610c87565b005b3480156104cd57600080fd5b506103e86104dc3660046134a1565b601f6020526000908152604090205481565b3480156104fa57600080fd5b506008546103e8565b34801561050f57600080fd5b506104bf61051e3660046134a1565b610d9d565b34801561052f57600080fd5b506104bf61053e3660046134be565b610f6e565b34801561054f57600080fd5b506104bf61055e36600461350f565b610f9f565b34801561056f57600080fd5b506103e860105481565b34801561058557600080fd5b506103e8610594366004613475565b6110af565b3480156105a557600080fd5b50600b546103e8565b3480156105ba57600080fd5b506104bf611145565b3480156105cf57600080fd5b506104bf6105de3660046134be565b611200565b3480156105ef57600080fd5b506104bf6105fe366004613447565b61121b565b34801561060f57600080fd5b506103e861061e366004613447565b6112eb565b34801561062f57600080fd5b506103e861063e3660046134a1565b601e6020526000908152604090205481565b34801561065c57600080fd5b506104bf61066b36600461352a565b61137e565b34801561067c57600080fd5b506104bf61068b36600461350f565b6113f2565b34801561069c57600080fd5b50600a5461041b90600160a01b900460ff1681565b3480156106bd57600080fd5b506103e860115481565b3480156106d357600080fd5b506104876106e2366004613447565b611465565b3480156106f357600080fd5b506104406114dc565b34801561070857600080fd5b506104bf61071736600461350f565b61156a565b34801561072857600080fd5b506103e86107373660046134a1565b6115d5565b34801561074857600080fd5b506104bf61165c565b34801561075d57600080fd5b506104bf61076c36600461359c565b611692565b34801561077d57600080fd5b5060165461041b90610100900460ff1681565b34801561079c57600080fd5b506103e86107ab3660046134a1565b602080526000908152604090205481565b3480156107c857600080fd5b506104bf611805565b3480156107dd57600080fd5b506104876107ec366004613447565b611897565b3480156107fd57600080fd5b506103e861080c3660046134a1565b601d6020526000908152604090205481565b34801561082a57600080fd5b50600a546001600160a01b0316610487565b34801561084857600080fd5b5060165461041b9062010000900460ff1681565b34801561086857600080fd5b506104bf610877366004613447565b6118c7565b34801561088857600080fd5b50610440611945565b34801561089d57600080fd5b506103e86108ac3660046134a1565b6001600160a01b03166000908152600e602052604090205490565b3480156108d357600080fd5b506017546103e8565b3480156108e857600080fd5b506103e860125481565b3480156108fe57600080fd5b506104bf61090d3660046135ff565b611954565b34801561091e57600080fd5b5060215461092c9060ff1681565b6040516103f2919061366c565b34801561094557600080fd5b506104bf61095436600461359c565b611a19565b34801561096557600080fd5b506104bf61097436600461359c565b611d8c565b34801561098557600080fd5b506104bf610994366004613690565b611f07565b3480156109a557600080fd5b506104406109b4366004613447565b611f39565b3480156109c557600080fd5b506103e860145481565b3480156109db57600080fd5b506103e86109ea3660046134a1565b6001600160a01b03166000908152600d602052604090205490565b348015610a1157600080fd5b5061041b610a203660046134a1565b6001600160a01b03166000908152601c602052604090205460ff1690565b348015610a4a57600080fd5b50600c546103e8565b348015610a5f57600080fd5b506104bf610a6e36600461350f565b612014565b348015610a7f57600080fd5b5061041b610a8e366004613770565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ac857600080fd5b506103e860135481565b348015610ade57600080fd5b506104bf610aed3660046134a1565b612089565b6104bf610b00366004613447565b612124565b348015610b1157600080fd5b506103e86121cd565b348015610b2657600080fd5b506103e860175481565b60006001600160e01b0319821663780e9d6360e01b1480610b555750610b5582612260565b92915050565b606060008054610b6a906137a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b96906137a9565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9282611465565b9050806001600160a01b0316836001600160a01b03161415610d005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c62565b336001600160a01b0382161480610d1c5750610d1c8133610a8e565b610d8e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c62565b610d9883836122b0565b505050565b6001600160a01b0381166000908152600d6020526040902054610e115760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610c62565b6000600c5447610e2191906137fa565b6001600160a01b0383166000908152600e6020908152604080832054600b54600d909352908320549394509192610e589085613812565b610e629190613847565b610e6c919061385b565b905080610ecf5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610c62565b6001600160a01b0383166000908152600e6020526040902054610ef39082906137fa565b6001600160a01b0384166000908152600e6020526040902055600c54610f1a9082906137fa565b600c55610f27838261231e565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610f783382612437565b610f945760405162461bcd60e51b8152600401610c6290613872565b610d9883838361252e565b600a546001600160a01b03163314610fc95760405162461bcd60e51b8152600401610c62906138c3565b601680548215156101000261ff00199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d9061101290831515815260200190565b60405180910390a16016805461ff001916610100179055604051600181527f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d9060200160405180910390a1600a6012556021805460ff191660029081179091556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916110a491600191906138f8565b60405180910390a150565b60006110ba836115d5565b821061111c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c62565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461116f5760405162461bcd60e51b8152600401610c62906138c3565b600a54600160a01b900460ff166111c85760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20697320617661696c61626c6500000000000000006044820152606401610c62565b600a805460ff60a01b191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b610d9883838360405180602001604052806000815250611f07565b60165460ff1661126d5760405162461bcd60e51b815260206004820152601960248201527f4d6573736167653a206275726e696e672064697361626c6564000000000000006044820152606401610c62565b6112773382612437565b6112cd5760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206275726e2063616c6c6572206973206e6f74206f776e656044820152603960f91b6064820152608401610c62565b6112d6816126d9565b60016015546112e5919061385b565b60155550565b60006112f660085490565b82106113595760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c62565b6008828154811061136c5761136c613913565b90600052602060002001549050919050565b600a546001600160a01b031633146113a85760405162461bcd60e51b8152600401610c62906138c3565b6113b460188383613310565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db009376782826040516113e6929190613929565b60405180910390a15050565b600a546001600160a01b0316331461141c5760405162461bcd60e51b8152600401610c62906138c3565b601680548215156101000261ff00199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d906110a490831515815260200190565b6000818152600260205260408120546001600160a01b031680610b555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c62565b601880546114e9906137a9565b80601f0160208091040260200160405190810160405280929190818152602001828054611515906137a9565b80156115625780601f1061153757610100808354040283529160200191611562565b820191906000526020600020905b81548152906001019060200180831161154557829003601f168201915b505050505081565b600a546001600160a01b031633146115945760405162461bcd60e51b8152600401610c62906138c3565b6016805460ff19168215159081179091556040519081527f0343da01ca2a51743bc3a245ccf8007e27e6b919fb27b0f83cb5d60c2e8634f3906020016110a4565b60006001600160a01b0382166116405760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c62565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116865760405162461bcd60e51b8152600401610c62906138c3565b6116906000612780565b565b600a546001600160a01b031633146116bc5760405162461bcd60e51b8152600401610c62906138c3565b60005b81811015610d985760008383838181106116db576116db613913565b90506020020160208101906116f091906134a1565b6001600160a01b031614156117515760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a2043616e2774206164642061207a65726f206164647265736044820152607360f81b6064820152608401610c62565b601c600084848481811061176757611767613913565b905060200201602081019061177c91906134a1565b6001600160a01b0316815260208101919091526040016000205460ff166117f3576001601c60008585858181106117b5576117b5613913565b90506020020160208101906117ca91906134a1565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b806117fd81613958565b9150506116bf565b600a546001600160a01b0316331461182f5760405162461bcd60e51b8152600401610c62906138c3565b600a54600160a01b900460ff16156118595760405162461bcd60e51b8152600401610c6290613973565b600a805460ff60a01b1916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6000600f82815481106118ac576118ac613913565b6000918252602090912001546001600160a01b031692915050565b600a546001600160a01b031633146118f15760405162461bcd60e51b8152600401610c62906138c3565b61190281662386f26fc10000613812565b6017557fd6800b65b866c2769be54531e82b793515adb30a5c12080699dcd3c07784caa661193782662386f26fc10000613812565b6040519081526020016110a4565b606060018054610b6a906137a9565b6001600160a01b0382163314156119ad5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c62565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a435760405162461bcd60e51b8152600401610c62906138c3565b600a54600160a01b900460ff1615611a6d5760405162461bcd60e51b8152600401610c6290613973565b601054601554611a7e9083906137fa565b1115611ad75760405162461bcd60e51b815260206004820152602260248201527f4d6573736167653a206d617820746f74616c20737570706c7920657863656564604482015261195960f21b6064820152608401610c62565b601154601354611ae89083906137fa565b1115611b405760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206d6178206769667420737570706c7920657863656564656044820152601960fa1b6064820152608401610c62565b6000805b82811015611d86576000848483818110611b6057611b60613913565b9050602002016020810190611b7591906134a1565b6001600160a01b03161415611bdb5760405162461bcd60e51b815260206004820152602660248201527f4d6573736167653a20726563657069656e7420697320746865206e756c6c206160448201526564647265737360d01b6064820152608401610c62565b611be9601980546001019055565b6019549150611c1e848483818110611c0357611c03613913565b9050602002016020810190611c1891906134a1565b836127d2565b601e6000858584818110611c3457611c34613913565b9050602002016020810190611c4991906134a1565b6001600160a01b03168152602081019190915260400160002054611c6e9060016137fa565b601e6000868685818110611c8457611c84613913565b9050602002016020810190611c9991906134a1565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060206000858584818110611cd357611cd3613913565b9050602002016020810190611ce891906134a1565b6001600160a01b03168152602081019190915260400160002054611d0d9060016137fa565b60206000868685818110611d2357611d23613913565b9050602002016020810190611d3891906134a1565b6001600160a01b03168152602081019190915260400160002055601554611d609060016137fa565b601555601354611d719060016137fa565b60135580611d7e81613958565b915050611b44565b50505050565b600a546001600160a01b03163314611db65760405162461bcd60e51b8152600401610c62906138c3565b60005b81811015610d98576000838383818110611dd557611dd5613913565b9050602002016020810190611dea91906134a1565b6001600160a01b03161415611e4d5760405162461bcd60e51b8152602060048201526024808201527f4d6573736167653a2043616e27742072656d6f76652061207a65726f206164646044820152637265737360e01b6064820152608401610c62565b601c6000848484818110611e6357611e63613913565b9050602002016020810190611e7891906134a1565b6001600160a01b0316815260208101919091526040016000205460ff16151560011415611ef5576000601c6000858585818110611eb757611eb7613913565b9050602002016020810190611ecc91906134a1565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80611eff81613958565b915050611db9565b611f113383612437565b611f2d5760405162461bcd60e51b8152600401610c6290613872565b611d86848484846127f0565b6000818152600260205260409020546060906001600160a01b0316611fb85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c62565b6000611fc2612823565b90506000815111611fe2576040518060200160405280600081525061200d565b80611fec84612832565b604051602001611ffd9291906139aa565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461203e5760405162461bcd60e51b8152600401610c62906138c3565b60168054821515620100000262ff0000199091161790556040517ff9639a949592ffb0c1afab06e7e6805171c8f5a77f018dea799ac9b452b62b5e906110a490831515815260200190565b600a546001600160a01b031633146120b35760405162461bcd60e51b8152600401610c62906138c3565b6001600160a01b0381166121185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c62565b61212181612780565b50565b600a54600160a01b900460ff161561214e5760405162461bcd60e51b8152600401610c6290613973565b601654610100900460ff1661216b5761216681612930565b612174565b61217481612be0565b6010548160155461218591906137fa565b1415612121576021805460ff191660039081179091556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916110a491600291906138f8565b6000808060215460ff1660038111156121e8576121e8613634565b14156121f2575060015b600160215460ff16600381111561220b5761220b613634565b1415612215575060025b600260215460ff16600381111561222e5761222e613634565b1415612238575060035b600360215460ff16600381111561225157612251613634565b141561225b575060045b919050565b60006001600160e01b031982166380ac58cd60e01b148061229157506001600160e01b03198216635b5e139f60e01b145b80610b5557506301ffc9a760e01b6001600160e01b0319831614610b55565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122e582611465565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8047101561236e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c62565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123bb576040519150601f19603f3d011682016040523d82523d6000602084013e6123c0565b606091505b5050905080610d985760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c62565b6000818152600260205260408120546001600160a01b03166124b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c62565b60006124bb83611465565b9050806001600160a01b0316846001600160a01b031614806124f65750836001600160a01b03166124eb84610bed565b6001600160a01b0316145b8061252657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661254182611465565b6001600160a01b0316146125a95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c62565b6001600160a01b03821661260b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c62565b612616838383612e49565b6126216000826122b0565b6001600160a01b038316600090815260036020526040812080546001929061264a90849061385b565b90915550506001600160a01b03821660009081526003602052604081208054600192906126789084906137fa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006126e482611465565b90506126f281600084612e49565b6126fd6000836122b0565b6001600160a01b038116600090815260036020526040812080546001929061272690849061385b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127ec828260405180602001604052806000815250612f01565b5050565b6127fb84848461252e565b61280784848484612f34565b611d865760405162461bcd60e51b8152600401610c62906139d9565b606060188054610b6a906137a9565b6060816128565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612880578061286a81613958565b91506128799050600a83613847565b915061285a565b60008167ffffffffffffffff81111561289b5761289b61367a565b6040519080825280601f01601f1916602001820160405280156128c5576020820181803683370190505b5090505b8415612526576128da60018361385b565b91506128e7600a86613a2b565b6128f29060306137fa565b60f81b81838151811061290757612907613913565b60200101906001600160f81b031916908160001a905350612929600a86613847565b94506128c9565b60165462010000900460ff16151560011461298d5760405162461bcd60e51b815260206004820181905260248201527f596f7520617265206e6f74206f6e207468652070726573616c65206c6973742e6044820152606401610c62565b336000908152601c602052604090205460ff1615156001146129f15760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206f6e207468652070726573616c65206c697374006044820152606401610c62565b601254336000908152601d6020526040902054612a0f9083906137fa565b1115612a5d5760405162461bcd60e51b815260206004820152601f60248201527f4d6573736167653a2043616e206f6e6c79206d696e74203220746f6b656e73006044820152606401610c62565b60105481601554612a6e91906137fa565b1115612abc5760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610c62565b6000612ac760175490565b905034612ad48383613812565b1115612af25760405162461bcd60e51b8152600401610c6290613a3f565b6000805b83811015612b9e57612b0c601980546001019055565b6019549150612b1b33836127d2565b336000908152601d6020526040902054612b369085906137fa565b336000908152601d602090815260408083209390935580522054612b5b9085906137fa565b336000908152602080526040902055601554612b789060016137fa565b601555601454612b899060016137fa565b60145580612b9681613958565b915050612af6565b50604080518481526020810184905233917f40038d437ff4cece80b344923544b3c8527d7f6aa2f9202a9734d5d9c7ffa0e091015b60405180910390a2505050565b60165460ff610100909104161515600114612c335760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9b713ba1039ba30b93a32b21760691b6044820152606401610c62565b60008111612c7a5760405162461bcd60e51b815260206004820152601460248201527313595cdcd859d94e881e995c9bc8185b5bdd5b9d60621b6044820152606401610c62565b601254811115612ce05760405162461bcd60e51b815260206004820152602b60248201527f4d6573736167653a202043616e206f6e6c79206d696e7420313020746f6b656e60448201526a7320617420612074696d6560a81b6064820152608401610c62565b60105481601554612cf191906137fa565b1115612d3f5760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610c62565b6000612d4a60175490565b905034612d578383613812565b1115612d755760405162461bcd60e51b8152600401610c6290613a3f565b6000805b83811015612e1057612d8f601980546001019055565b6019549150612d9e33836127d2565b336000908152601f6020526040902054612db99085906137fa565b336000908152601f602090815260408083209390935580522054612dde9085906137fa565b336000908152602080526040902055601554612dfb9060016137fa565b60155580612e0881613958565b915050612d79565b50604080518481526020810184905233917f0d905a2e95960c2ad9e627d829fae00e7f3b9794c3b62a5c376cf5deee8f2a209101612bd3565b6001600160a01b038316612ea457612e9f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ec7565b816001600160a01b0316836001600160a01b031614612ec757612ec78382613032565b6001600160a01b038216612ede57610d98816130cf565b826001600160a01b0316826001600160a01b031614610d9857610d98828261317e565b612f0b83836131c2565b612f186000848484612f34565b610d985760405162461bcd60e51b8152600401610c62906139d9565b60006001600160a01b0384163b1561302757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612f78903390899088908890600401613a87565b6020604051808303816000875af1925050508015612fb3575060408051601f3d908101601f19168201909252612fb091810190613ac4565b60015b61300d573d808015612fe1576040519150601f19603f3d011682016040523d82523d6000602084013e612fe6565b606091505b5080516130055760405162461bcd60e51b8152600401610c62906139d9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612526565b506001949350505050565b6000600161303f846115d5565b613049919061385b565b60008381526007602052604090205490915080821461309c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906130e19060019061385b565b6000838152600960205260408120546008805493945090928490811061310957613109613913565b90600052602060002001549050806008838154811061312a5761312a613913565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061316257613162613ae1565b6001900381819060005260206000200160009055905550505050565b6000613189836115d5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166132185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c62565b6000818152600260205260409020546001600160a01b03161561327d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c62565b61328960008383612e49565b6001600160a01b03821660009081526003602052604081208054600192906132b29084906137fa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461331c906137a9565b90600052602060002090601f01602090048101928261333e5760008555613384565b82601f106133575782800160ff19823516178555613384565b82800160010185558215613384579182015b82811115613384578235825591602001919060010190613369565b50613390929150613394565b5090565b5b808211156133905760008155600101613395565b6001600160e01b03198116811461212157600080fd5b6000602082840312156133d157600080fd5b813561200d816133a9565b60005b838110156133f75781810151838201526020016133df565b83811115611d865750506000910152565b600081518084526134208160208601602086016133dc565b601f01601f19169290920160200192915050565b60208152600061200d6020830184613408565b60006020828403121561345957600080fd5b5035919050565b6001600160a01b038116811461212157600080fd5b6000806040838503121561348857600080fd5b823561349381613460565b946020939093013593505050565b6000602082840312156134b357600080fd5b813561200d81613460565b6000806000606084860312156134d357600080fd5b83356134de81613460565b925060208401356134ee81613460565b929592945050506040919091013590565b8035801515811461225b57600080fd5b60006020828403121561352157600080fd5b61200d826134ff565b6000806020838503121561353d57600080fd5b823567ffffffffffffffff8082111561355557600080fd5b818501915085601f83011261356957600080fd5b81358181111561357857600080fd5b86602082850101111561358a57600080fd5b60209290920196919550909350505050565b600080602083850312156135af57600080fd5b823567ffffffffffffffff808211156135c757600080fd5b818501915085601f8301126135db57600080fd5b8135818111156135ea57600080fd5b8660208260051b850101111561358a57600080fd5b6000806040838503121561361257600080fd5b823561361d81613460565b915061362b602084016134ff565b90509250929050565b634e487b7160e01b600052602160045260246000fd5b6004811061366857634e487b7160e01b600052602160045260246000fd5b9052565b60208101610b55828461364a565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156136a657600080fd5b84356136b181613460565b935060208501356136c181613460565b925060408501359150606085013567ffffffffffffffff808211156136e557600080fd5b818701915087601f8301126136f957600080fd5b81358181111561370b5761370b61367a565b604051601f8201601f19908116603f011681019083821181831017156137335761373361367a565b816040528281528a602084870101111561374c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561378357600080fd5b823561378e81613460565b9150602083013561379e81613460565b809150509250929050565b600181811c908216806137bd57607f821691505b602082108114156137de57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561380d5761380d6137e4565b500190565b600081600019048311821515161561382c5761382c6137e4565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261385657613856613831565b500490565b60008282101561386d5761386d6137e4565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60408101613906828561364a565b61200d602083018461364a565b634e487b7160e01b600052603260045260246000fd5b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b600060001982141561396c5761396c6137e4565b5060010190565b6020808252601c908201527f5472616e73616374696f6e206973206e6f7420617661696c61626c6500000000604082015260600190565b600083516139bc8184602088016133dc565b8351908301906139d08183602088016133dc565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082613a3a57613a3a613831565b500690565b60208082526028908201527f4d6573736167653a2045746865722076616c75652073656e74206973206e6f746040820152670818dbdc9c9958dd60c21b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613aba90830184613408565b9695505050505050565b600060208284031215613ad657600080fd5b815161200d816133a9565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f53a26d61370a6daab36771b0f1f4fea54a9541282f79aae8f769e107e0ad37164736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103845760003560e01c80637f61feaf116101d1578063a5fd7bec11610102578063e33b7de3116100a0578063f2fde38b1161006f578063f2fde38b14610ad2578063f578d9df14610af2578063f75d64a614610b05578063fdbf9ef214610b1a57600080fd5b8063e33b7de314610a3e578063e59ee01414610a53578063e985e9c514610a73578063ed70037414610abc57600080fd5b8063c87b56dd116100dc578063c87b56dd14610999578063cde27a35146109b9578063ce7c2ac2146109cf578063de00a68b14610a0557600080fd5b8063a5fd7bec14610939578063b179e06014610959578063b88d4fde1461097957600080fd5b806391b7f5ed1161016f57806398d5fdca1161014957806398d5fdca146108c75780639ef2d87a146108dc578063a22cb465146108f2578063a33441251461091257600080fd5b806391b7f5ed1461085c57806395d89b411461087c5780639852595c1461089157600080fd5b80638b83209b116101ab5780638b83209b146107d15780638cc4de19146107f15780638da5cb5b1461081e5780638dff4c1d1461083c57600080fd5b80637f61feaf146107715780637f674f48146107905780638456cb59146107bc57600080fd5b80633f4ba83a116102b65780635c975abb116102545780636e0e5b19116102235780636e0e5b19146106fc57806370a082311461071c578063715018a61461073c5780637204a3c91461075157600080fd5b80635c975abb146106905780635edbc28c146106b15780636352211e146106c75780636c0360eb146106e757600080fd5b80634f6ccce7116102905780634f6ccce71461060357806352d728d91461062357806355f804b3146106505780635af46b4b1461067057600080fd5b80633f4ba83a146105ae57806342842e0e146105c357806342966c68146105e357600080fd5b806318160ddd116103235780632412f8d7116102fd5780632412f8d7146105435780632ab4d052146105635780632f745c59146105795780633a98ef391461059957600080fd5b806318160ddd146104ee578063191655871461050357806323b872dd1461052357600080fd5b806307ebec271161035f57806307ebec271461044d578063081812fc14610467578063095ea7b31461049f57806309c3fbb7146104c157600080fd5b8062456379146103d257806301ffc9a7146103fb57806306fdde031461042b57600080fd5b366103cd577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103de57600080fd5b506103e860155481565b6040519081526020015b60405180910390f35b34801561040757600080fd5b5061041b6104163660046133bf565b610b30565b60405190151581526020016103f2565b34801561043757600080fd5b50610440610b5b565b6040516103f29190613434565b34801561045957600080fd5b5060165461041b9060ff1681565b34801561047357600080fd5b50610487610482366004613447565b610bed565b6040516001600160a01b0390911681526020016103f2565b3480156104ab57600080fd5b506104bf6104ba366004613475565b610c87565b005b3480156104cd57600080fd5b506103e86104dc3660046134a1565b601f6020526000908152604090205481565b3480156104fa57600080fd5b506008546103e8565b34801561050f57600080fd5b506104bf61051e3660046134a1565b610d9d565b34801561052f57600080fd5b506104bf61053e3660046134be565b610f6e565b34801561054f57600080fd5b506104bf61055e36600461350f565b610f9f565b34801561056f57600080fd5b506103e860105481565b34801561058557600080fd5b506103e8610594366004613475565b6110af565b3480156105a557600080fd5b50600b546103e8565b3480156105ba57600080fd5b506104bf611145565b3480156105cf57600080fd5b506104bf6105de3660046134be565b611200565b3480156105ef57600080fd5b506104bf6105fe366004613447565b61121b565b34801561060f57600080fd5b506103e861061e366004613447565b6112eb565b34801561062f57600080fd5b506103e861063e3660046134a1565b601e6020526000908152604090205481565b34801561065c57600080fd5b506104bf61066b36600461352a565b61137e565b34801561067c57600080fd5b506104bf61068b36600461350f565b6113f2565b34801561069c57600080fd5b50600a5461041b90600160a01b900460ff1681565b3480156106bd57600080fd5b506103e860115481565b3480156106d357600080fd5b506104876106e2366004613447565b611465565b3480156106f357600080fd5b506104406114dc565b34801561070857600080fd5b506104bf61071736600461350f565b61156a565b34801561072857600080fd5b506103e86107373660046134a1565b6115d5565b34801561074857600080fd5b506104bf61165c565b34801561075d57600080fd5b506104bf61076c36600461359c565b611692565b34801561077d57600080fd5b5060165461041b90610100900460ff1681565b34801561079c57600080fd5b506103e86107ab3660046134a1565b602080526000908152604090205481565b3480156107c857600080fd5b506104bf611805565b3480156107dd57600080fd5b506104876107ec366004613447565b611897565b3480156107fd57600080fd5b506103e861080c3660046134a1565b601d6020526000908152604090205481565b34801561082a57600080fd5b50600a546001600160a01b0316610487565b34801561084857600080fd5b5060165461041b9062010000900460ff1681565b34801561086857600080fd5b506104bf610877366004613447565b6118c7565b34801561088857600080fd5b50610440611945565b34801561089d57600080fd5b506103e86108ac3660046134a1565b6001600160a01b03166000908152600e602052604090205490565b3480156108d357600080fd5b506017546103e8565b3480156108e857600080fd5b506103e860125481565b3480156108fe57600080fd5b506104bf61090d3660046135ff565b611954565b34801561091e57600080fd5b5060215461092c9060ff1681565b6040516103f2919061366c565b34801561094557600080fd5b506104bf61095436600461359c565b611a19565b34801561096557600080fd5b506104bf61097436600461359c565b611d8c565b34801561098557600080fd5b506104bf610994366004613690565b611f07565b3480156109a557600080fd5b506104406109b4366004613447565b611f39565b3480156109c557600080fd5b506103e860145481565b3480156109db57600080fd5b506103e86109ea3660046134a1565b6001600160a01b03166000908152600d602052604090205490565b348015610a1157600080fd5b5061041b610a203660046134a1565b6001600160a01b03166000908152601c602052604090205460ff1690565b348015610a4a57600080fd5b50600c546103e8565b348015610a5f57600080fd5b506104bf610a6e36600461350f565b612014565b348015610a7f57600080fd5b5061041b610a8e366004613770565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ac857600080fd5b506103e860135481565b348015610ade57600080fd5b506104bf610aed3660046134a1565b612089565b6104bf610b00366004613447565b612124565b348015610b1157600080fd5b506103e86121cd565b348015610b2657600080fd5b506103e860175481565b60006001600160e01b0319821663780e9d6360e01b1480610b555750610b5582612260565b92915050565b606060008054610b6a906137a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b96906137a9565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9282611465565b9050806001600160a01b0316836001600160a01b03161415610d005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c62565b336001600160a01b0382161480610d1c5750610d1c8133610a8e565b610d8e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c62565b610d9883836122b0565b505050565b6001600160a01b0381166000908152600d6020526040902054610e115760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610c62565b6000600c5447610e2191906137fa565b6001600160a01b0383166000908152600e6020908152604080832054600b54600d909352908320549394509192610e589085613812565b610e629190613847565b610e6c919061385b565b905080610ecf5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610c62565b6001600160a01b0383166000908152600e6020526040902054610ef39082906137fa565b6001600160a01b0384166000908152600e6020526040902055600c54610f1a9082906137fa565b600c55610f27838261231e565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610f783382612437565b610f945760405162461bcd60e51b8152600401610c6290613872565b610d9883838361252e565b600a546001600160a01b03163314610fc95760405162461bcd60e51b8152600401610c62906138c3565b601680548215156101000261ff00199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d9061101290831515815260200190565b60405180910390a16016805461ff001916610100179055604051600181527f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d9060200160405180910390a1600a6012556021805460ff191660029081179091556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916110a491600191906138f8565b60405180910390a150565b60006110ba836115d5565b821061111c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c62565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461116f5760405162461bcd60e51b8152600401610c62906138c3565b600a54600160a01b900460ff166111c85760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20697320617661696c61626c6500000000000000006044820152606401610c62565b600a805460ff60a01b191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b610d9883838360405180602001604052806000815250611f07565b60165460ff1661126d5760405162461bcd60e51b815260206004820152601960248201527f4d6573736167653a206275726e696e672064697361626c6564000000000000006044820152606401610c62565b6112773382612437565b6112cd5760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206275726e2063616c6c6572206973206e6f74206f776e656044820152603960f91b6064820152608401610c62565b6112d6816126d9565b60016015546112e5919061385b565b60155550565b60006112f660085490565b82106113595760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c62565b6008828154811061136c5761136c613913565b90600052602060002001549050919050565b600a546001600160a01b031633146113a85760405162461bcd60e51b8152600401610c62906138c3565b6113b460188383613310565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db009376782826040516113e6929190613929565b60405180910390a15050565b600a546001600160a01b0316331461141c5760405162461bcd60e51b8152600401610c62906138c3565b601680548215156101000261ff00199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d906110a490831515815260200190565b6000818152600260205260408120546001600160a01b031680610b555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c62565b601880546114e9906137a9565b80601f0160208091040260200160405190810160405280929190818152602001828054611515906137a9565b80156115625780601f1061153757610100808354040283529160200191611562565b820191906000526020600020905b81548152906001019060200180831161154557829003601f168201915b505050505081565b600a546001600160a01b031633146115945760405162461bcd60e51b8152600401610c62906138c3565b6016805460ff19168215159081179091556040519081527f0343da01ca2a51743bc3a245ccf8007e27e6b919fb27b0f83cb5d60c2e8634f3906020016110a4565b60006001600160a01b0382166116405760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c62565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116865760405162461bcd60e51b8152600401610c62906138c3565b6116906000612780565b565b600a546001600160a01b031633146116bc5760405162461bcd60e51b8152600401610c62906138c3565b60005b81811015610d985760008383838181106116db576116db613913565b90506020020160208101906116f091906134a1565b6001600160a01b031614156117515760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a2043616e2774206164642061207a65726f206164647265736044820152607360f81b6064820152608401610c62565b601c600084848481811061176757611767613913565b905060200201602081019061177c91906134a1565b6001600160a01b0316815260208101919091526040016000205460ff166117f3576001601c60008585858181106117b5576117b5613913565b90506020020160208101906117ca91906134a1565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b806117fd81613958565b9150506116bf565b600a546001600160a01b0316331461182f5760405162461bcd60e51b8152600401610c62906138c3565b600a54600160a01b900460ff16156118595760405162461bcd60e51b8152600401610c6290613973565b600a805460ff60a01b1916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6000600f82815481106118ac576118ac613913565b6000918252602090912001546001600160a01b031692915050565b600a546001600160a01b031633146118f15760405162461bcd60e51b8152600401610c62906138c3565b61190281662386f26fc10000613812565b6017557fd6800b65b866c2769be54531e82b793515adb30a5c12080699dcd3c07784caa661193782662386f26fc10000613812565b6040519081526020016110a4565b606060018054610b6a906137a9565b6001600160a01b0382163314156119ad5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c62565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a435760405162461bcd60e51b8152600401610c62906138c3565b600a54600160a01b900460ff1615611a6d5760405162461bcd60e51b8152600401610c6290613973565b601054601554611a7e9083906137fa565b1115611ad75760405162461bcd60e51b815260206004820152602260248201527f4d6573736167653a206d617820746f74616c20737570706c7920657863656564604482015261195960f21b6064820152608401610c62565b601154601354611ae89083906137fa565b1115611b405760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206d6178206769667420737570706c7920657863656564656044820152601960fa1b6064820152608401610c62565b6000805b82811015611d86576000848483818110611b6057611b60613913565b9050602002016020810190611b7591906134a1565b6001600160a01b03161415611bdb5760405162461bcd60e51b815260206004820152602660248201527f4d6573736167653a20726563657069656e7420697320746865206e756c6c206160448201526564647265737360d01b6064820152608401610c62565b611be9601980546001019055565b6019549150611c1e848483818110611c0357611c03613913565b9050602002016020810190611c1891906134a1565b836127d2565b601e6000858584818110611c3457611c34613913565b9050602002016020810190611c4991906134a1565b6001600160a01b03168152602081019190915260400160002054611c6e9060016137fa565b601e6000868685818110611c8457611c84613913565b9050602002016020810190611c9991906134a1565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060206000858584818110611cd357611cd3613913565b9050602002016020810190611ce891906134a1565b6001600160a01b03168152602081019190915260400160002054611d0d9060016137fa565b60206000868685818110611d2357611d23613913565b9050602002016020810190611d3891906134a1565b6001600160a01b03168152602081019190915260400160002055601554611d609060016137fa565b601555601354611d719060016137fa565b60135580611d7e81613958565b915050611b44565b50505050565b600a546001600160a01b03163314611db65760405162461bcd60e51b8152600401610c62906138c3565b60005b81811015610d98576000838383818110611dd557611dd5613913565b9050602002016020810190611dea91906134a1565b6001600160a01b03161415611e4d5760405162461bcd60e51b8152602060048201526024808201527f4d6573736167653a2043616e27742072656d6f76652061207a65726f206164646044820152637265737360e01b6064820152608401610c62565b601c6000848484818110611e6357611e63613913565b9050602002016020810190611e7891906134a1565b6001600160a01b0316815260208101919091526040016000205460ff16151560011415611ef5576000601c6000858585818110611eb757611eb7613913565b9050602002016020810190611ecc91906134a1565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80611eff81613958565b915050611db9565b611f113383612437565b611f2d5760405162461bcd60e51b8152600401610c6290613872565b611d86848484846127f0565b6000818152600260205260409020546060906001600160a01b0316611fb85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c62565b6000611fc2612823565b90506000815111611fe2576040518060200160405280600081525061200d565b80611fec84612832565b604051602001611ffd9291906139aa565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461203e5760405162461bcd60e51b8152600401610c62906138c3565b60168054821515620100000262ff0000199091161790556040517ff9639a949592ffb0c1afab06e7e6805171c8f5a77f018dea799ac9b452b62b5e906110a490831515815260200190565b600a546001600160a01b031633146120b35760405162461bcd60e51b8152600401610c62906138c3565b6001600160a01b0381166121185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c62565b61212181612780565b50565b600a54600160a01b900460ff161561214e5760405162461bcd60e51b8152600401610c6290613973565b601654610100900460ff1661216b5761216681612930565b612174565b61217481612be0565b6010548160155461218591906137fa565b1415612121576021805460ff191660039081179091556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916110a491600291906138f8565b6000808060215460ff1660038111156121e8576121e8613634565b14156121f2575060015b600160215460ff16600381111561220b5761220b613634565b1415612215575060025b600260215460ff16600381111561222e5761222e613634565b1415612238575060035b600360215460ff16600381111561225157612251613634565b141561225b575060045b919050565b60006001600160e01b031982166380ac58cd60e01b148061229157506001600160e01b03198216635b5e139f60e01b145b80610b5557506301ffc9a760e01b6001600160e01b0319831614610b55565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122e582611465565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8047101561236e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c62565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123bb576040519150601f19603f3d011682016040523d82523d6000602084013e6123c0565b606091505b5050905080610d985760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c62565b6000818152600260205260408120546001600160a01b03166124b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c62565b60006124bb83611465565b9050806001600160a01b0316846001600160a01b031614806124f65750836001600160a01b03166124eb84610bed565b6001600160a01b0316145b8061252657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661254182611465565b6001600160a01b0316146125a95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c62565b6001600160a01b03821661260b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c62565b612616838383612e49565b6126216000826122b0565b6001600160a01b038316600090815260036020526040812080546001929061264a90849061385b565b90915550506001600160a01b03821660009081526003602052604081208054600192906126789084906137fa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006126e482611465565b90506126f281600084612e49565b6126fd6000836122b0565b6001600160a01b038116600090815260036020526040812080546001929061272690849061385b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127ec828260405180602001604052806000815250612f01565b5050565b6127fb84848461252e565b61280784848484612f34565b611d865760405162461bcd60e51b8152600401610c62906139d9565b606060188054610b6a906137a9565b6060816128565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612880578061286a81613958565b91506128799050600a83613847565b915061285a565b60008167ffffffffffffffff81111561289b5761289b61367a565b6040519080825280601f01601f1916602001820160405280156128c5576020820181803683370190505b5090505b8415612526576128da60018361385b565b91506128e7600a86613a2b565b6128f29060306137fa565b60f81b81838151811061290757612907613913565b60200101906001600160f81b031916908160001a905350612929600a86613847565b94506128c9565b60165462010000900460ff16151560011461298d5760405162461bcd60e51b815260206004820181905260248201527f596f7520617265206e6f74206f6e207468652070726573616c65206c6973742e6044820152606401610c62565b336000908152601c602052604090205460ff1615156001146129f15760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206f6e207468652070726573616c65206c697374006044820152606401610c62565b601254336000908152601d6020526040902054612a0f9083906137fa565b1115612a5d5760405162461bcd60e51b815260206004820152601f60248201527f4d6573736167653a2043616e206f6e6c79206d696e74203220746f6b656e73006044820152606401610c62565b60105481601554612a6e91906137fa565b1115612abc5760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610c62565b6000612ac760175490565b905034612ad48383613812565b1115612af25760405162461bcd60e51b8152600401610c6290613a3f565b6000805b83811015612b9e57612b0c601980546001019055565b6019549150612b1b33836127d2565b336000908152601d6020526040902054612b369085906137fa565b336000908152601d602090815260408083209390935580522054612b5b9085906137fa565b336000908152602080526040902055601554612b789060016137fa565b601555601454612b899060016137fa565b60145580612b9681613958565b915050612af6565b50604080518481526020810184905233917f40038d437ff4cece80b344923544b3c8527d7f6aa2f9202a9734d5d9c7ffa0e091015b60405180910390a2505050565b60165460ff610100909104161515600114612c335760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9b713ba1039ba30b93a32b21760691b6044820152606401610c62565b60008111612c7a5760405162461bcd60e51b815260206004820152601460248201527313595cdcd859d94e881e995c9bc8185b5bdd5b9d60621b6044820152606401610c62565b601254811115612ce05760405162461bcd60e51b815260206004820152602b60248201527f4d6573736167653a202043616e206f6e6c79206d696e7420313020746f6b656e60448201526a7320617420612074696d6560a81b6064820152608401610c62565b60105481601554612cf191906137fa565b1115612d3f5760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610c62565b6000612d4a60175490565b905034612d578383613812565b1115612d755760405162461bcd60e51b8152600401610c6290613a3f565b6000805b83811015612e1057612d8f601980546001019055565b6019549150612d9e33836127d2565b336000908152601f6020526040902054612db99085906137fa565b336000908152601f602090815260408083209390935580522054612dde9085906137fa565b336000908152602080526040902055601554612dfb9060016137fa565b60155580612e0881613958565b915050612d79565b50604080518481526020810184905233917f0d905a2e95960c2ad9e627d829fae00e7f3b9794c3b62a5c376cf5deee8f2a209101612bd3565b6001600160a01b038316612ea457612e9f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ec7565b816001600160a01b0316836001600160a01b031614612ec757612ec78382613032565b6001600160a01b038216612ede57610d98816130cf565b826001600160a01b0316826001600160a01b031614610d9857610d98828261317e565b612f0b83836131c2565b612f186000848484612f34565b610d985760405162461bcd60e51b8152600401610c62906139d9565b60006001600160a01b0384163b1561302757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612f78903390899088908890600401613a87565b6020604051808303816000875af1925050508015612fb3575060408051601f3d908101601f19168201909252612fb091810190613ac4565b60015b61300d573d808015612fe1576040519150601f19603f3d011682016040523d82523d6000602084013e612fe6565b606091505b5080516130055760405162461bcd60e51b8152600401610c62906139d9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612526565b506001949350505050565b6000600161303f846115d5565b613049919061385b565b60008381526007602052604090205490915080821461309c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906130e19060019061385b565b6000838152600960205260408120546008805493945090928490811061310957613109613913565b90600052602060002001549050806008838154811061312a5761312a613913565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061316257613162613ae1565b6001900381819060005260206000200160009055905550505050565b6000613189836115d5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166132185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c62565b6000818152600260205260409020546001600160a01b03161561327d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c62565b61328960008383612e49565b6001600160a01b03821660009081526003602052604081208054600192906132b29084906137fa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461331c906137a9565b90600052602060002090601f01602090048101928261333e5760008555613384565b82601f106133575782800160ff19823516178555613384565b82800160010185558215613384579182015b82811115613384578235825591602001919060010190613369565b50613390929150613394565b5090565b5b808211156133905760008155600101613395565b6001600160e01b03198116811461212157600080fd5b6000602082840312156133d157600080fd5b813561200d816133a9565b60005b838110156133f75781810151838201526020016133df565b83811115611d865750506000910152565b600081518084526134208160208601602086016133dc565b601f01601f19169290920160200192915050565b60208152600061200d6020830184613408565b60006020828403121561345957600080fd5b5035919050565b6001600160a01b038116811461212157600080fd5b6000806040838503121561348857600080fd5b823561349381613460565b946020939093013593505050565b6000602082840312156134b357600080fd5b813561200d81613460565b6000806000606084860312156134d357600080fd5b83356134de81613460565b925060208401356134ee81613460565b929592945050506040919091013590565b8035801515811461225b57600080fd5b60006020828403121561352157600080fd5b61200d826134ff565b6000806020838503121561353d57600080fd5b823567ffffffffffffffff8082111561355557600080fd5b818501915085601f83011261356957600080fd5b81358181111561357857600080fd5b86602082850101111561358a57600080fd5b60209290920196919550909350505050565b600080602083850312156135af57600080fd5b823567ffffffffffffffff808211156135c757600080fd5b818501915085601f8301126135db57600080fd5b8135818111156135ea57600080fd5b8660208260051b850101111561358a57600080fd5b6000806040838503121561361257600080fd5b823561361d81613460565b915061362b602084016134ff565b90509250929050565b634e487b7160e01b600052602160045260246000fd5b6004811061366857634e487b7160e01b600052602160045260246000fd5b9052565b60208101610b55828461364a565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156136a657600080fd5b84356136b181613460565b935060208501356136c181613460565b925060408501359150606085013567ffffffffffffffff808211156136e557600080fd5b818701915087601f8301126136f957600080fd5b81358181111561370b5761370b61367a565b604051601f8201601f19908116603f011681019083821181831017156137335761373361367a565b816040528281528a602084870101111561374c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561378357600080fd5b823561378e81613460565b9150602083013561379e81613460565b809150509250929050565b600181811c908216806137bd57607f821691505b602082108114156137de57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561380d5761380d6137e4565b500190565b600081600019048311821515161561382c5761382c6137e4565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261385657613856613831565b500490565b60008282101561386d5761386d6137e4565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60408101613906828561364a565b61200d602083018461364a565b634e487b7160e01b600052603260045260246000fd5b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b600060001982141561396c5761396c6137e4565b5060010190565b6020808252601c908201527f5472616e73616374696f6e206973206e6f7420617661696c61626c6500000000604082015260600190565b600083516139bc8184602088016133dc565b8351908301906139d08183602088016133dc565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082613a3a57613a3a613831565b500690565b60208082526028908201527f4d6573736167653a2045746865722076616c75652073656e74206973206e6f746040820152670818dbdc9c9958dd60c21b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613aba90830184613408565b9695505050505050565b600060208284031215613ad657600080fd5b815161200d816133a9565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f53a26d61370a6daab36771b0f1f4fea54a9541282f79aae8f769e107e0ad37164736f6c634300080a0033

Deployed Bytecode Sourcemap

204:9046:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2694:40:14;682:10:1;2694:40:14;;;-1:-1:-1;;;;;206:32:17;;;188:51;;2724:9:14;270:2:17;255:18;;248:34;161:18;2694:40:14;;;;;;;204:9046:3;;;;;506:23;;;;;;;;;;;;;;;;;;;439:25:17;;;427:2;412:18;506:23:3;;;;;;;;937:224:6;;;;;;;;;;-1:-1:-1;937:224:6;;;;;:::i;:::-;;:::i;:::-;;;1026:14:17;;1019:22;1001:41;;989:2;974:18;937:224:6;861:187:17;2426:100:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;536:25:3:-;;;;;;;;;;-1:-1:-1;536:25:3;;;;;;;;3985:221:5;;;;;;;;;;-1:-1:-1;3985:221:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2153:32:17;;;2135:51;;2123:2;2108:18;3985:221:5;1989:203:17;3508:411:5;;;;;;;;;;-1:-1:-1;3508:411:5;;;;;:::i;:::-;;:::i;:::-;;1050:47:3;;;;;;;;;;-1:-1:-1;1050:47:3;;;;;:::i;:::-;;;;;;;;;;;;;;1577:113:6;;;;;;;;;;-1:-1:-1;1665:10:6;:17;1577:113;;3900:613:14;;;;;;;;;;-1:-1:-1;3900:613:14;;;;;:::i;:::-;;:::i;4875:339:5:-;;;;;;;;;;-1:-1:-1;4875:339:5;;;;;:::i;:::-;;:::i;3349:412:3:-;;;;;;;;;;-1:-1:-1;3349:412:3;;;;;:::i;:::-;;:::i;323:36::-;;;;;;;;;;;;;;;;1245:256:6;;;;;;;;;;-1:-1:-1;1245:256:6;;;;;:::i;:::-;;:::i;2825:91:14:-;;;;;;;;;;-1:-1:-1;2896:12:14;;2825:91;;1025:105:13;;;;;;;;;;;;;:::i;5285:185:5:-;;;;;;;;;;-1:-1:-1;5285:185:5;;;;;:::i;:::-;;:::i;8463:302:3:-;;;;;;;;;;-1:-1:-1;8463:302:3;;;;;:::i;:::-;;:::i;1767:233:6:-;;;;;;;;;;-1:-1:-1;1767:233:6;;;;;:::i;:::-;;:::i;996:47:3:-;;;;;;;;;;-1:-1:-1;996:47:3;;;;;:::i;:::-;;;;;;;;;;;;;;2023:156;;;;;;;;;;-1:-1:-1;2023:156:3;;;;;:::i;:::-;;:::i;4035:190::-;;;;;;;;;;-1:-1:-1;4035:190:3;;;;;:::i;:::-;;:::i;284:26:13:-;;;;;;;;;;-1:-1:-1;284:26:13;;;;-1:-1:-1;;;284:26:13;;;;;;366:34:3;;;;;;;;;;;;;;;;2120:239:5;;;;;;;;;;-1:-1:-1;2120:239:5;;;;;:::i;:::-;;:::i;697:21:3:-;;;;;;;;;;;;;:::i;4233:166::-;;;;;;;;;;-1:-1:-1;4233:166:3;;;;;:::i;:::-;;:::i;1850:208:5:-;;;;;;;;;;-1:-1:-1;1850:208:5;;;;;:::i;:::-;;:::i;1650:94:12:-;;;;;;;;;;;;;:::i;2295:451:3:-;;;;;;;;;;-1:-1:-1;2295:451:3;;;;;:::i;:::-;;:::i;568:29::-;;;;;;;;;;-1:-1:-1;568:29:3;;;;;;;;;;;1104:48;;;;;;;;;;-1:-1:-1;1104:48:3;;;;;:::i;:::-;;;;;;;;;;;;;;827:103:13;;;;;;;;;;;;;:::i;3600:100:14:-;;;;;;;;;;-1:-1:-1;3600:100:14;;;;;:::i;:::-;;:::i;939:50:3:-;;;;;;;;;;-1:-1:-1;939:50:3;;;;;:::i;:::-;;;;;;;;;;;;;;999:87:12;;;;;;;;;;-1:-1:-1;1072:6:12;;-1:-1:-1;;;;;1072:6:12;999:87;;604:34:3;;;;;;;;;;-1:-1:-1;604:34:3;;;;;;;;;;;4409:172;;;;;;;;;;-1:-1:-1;4409:172:3;;;;;:::i;:::-;;:::i;2595:104:5:-;;;;;;;;;;;;;:::i;3400:109:14:-;;;;;;;;;;-1:-1:-1;3400:109:14;;;;;:::i;:::-;-1:-1:-1;;;;;3483:18:14;3456:7;3483:18;;;:9;:18;;;;;;;3400:109;3769:85:3;;;;;;;;;;-1:-1:-1;3837:9:3;;3769:85;;407:27;;;;;;;;;;;;;;;;4278:295:5;;;;;;;;;;-1:-1:-1;4278:295:5;;;;;:::i;:::-;;:::i;1270:30:3:-;;;;;;;;;;-1:-1:-1;1270:30:3;;;;;;;;;;;;;;;:::i;4589:1032::-;;;;;;;;;;-1:-1:-1;4589:1032:3;;;;;:::i;:::-;;:::i;2882:459::-;;;;;;;;;;-1:-1:-1;2882:459:3;;;;;:::i;:::-;;:::i;5541:328:5:-;;;;;;;;;;-1:-1:-1;5541:328:5;;;;;:::i;:::-;;:::i;2770:334::-;;;;;;;;;;-1:-1:-1;2770:334:5;;;;;:::i;:::-;;:::i;472:27:3:-;;;;;;;;;;;;;;;;3196:105:14;;;;;;;;;;-1:-1:-1;3196:105:14;;;;;:::i;:::-;-1:-1:-1;;;;;3277:16:14;3250:7;3277:16;;;:7;:16;;;;;;;3196:105;2754:120:3;;;;;;;;;;-1:-1:-1;2754:120:3;;;;;:::i;:::-;-1:-1:-1;;;;;2844:22:3;2820:4;2844:22;;;:12;:22;;;;;;;;;2754:120;3010:95:14;;;;;;;;;;-1:-1:-1;3083:14:14;;3010:95;;3859:172:3;;;;;;;;;;-1:-1:-1;3859:172:3;;;;;:::i;:::-;;:::i;4644:164:5:-;;;;;;;;;;-1:-1:-1;4644:164:5;;;;;:::i;:::-;-1:-1:-1;;;;;4765:25:5;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164;441:24:3;;;;;;;;;;;;;;;;1899:192:12;;;;;;;;;;-1:-1:-1;1899:192:12;;;;;:::i;:::-;;:::i;7996:459:3:-;;;;;;:::i;:::-;;:::i;8773:474::-;;;;;;;;;;;;;:::i;645:45::-;;;;;;;;;;;;;;;;937:224:6;1039:4;-1:-1:-1;;;;;;1063:50:6;;-1:-1:-1;;;1063:50:6;;:90;;;1117:36;1141:11;1117:23;:36::i;:::-;1056:97;937:224;-1:-1:-1;;937:224:6:o;2426:100:5:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:5;4081:73;;;;-1:-1:-1;;;4081:73:5;;8497:2:17;4081:73:5;;;8479:21:17;8536:2;8516:18;;;8509:30;8575:34;8555:18;;;8548:62;-1:-1:-1;;;8626:18:17;;;8619:42;8678:19;;4081:73:5;;;;;;;;;-1:-1:-1;4174:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:5;;3985:221::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:5;:2;-1:-1:-1;;;;;3647:11:5;;;3639:57;;;;-1:-1:-1;;;3639:57:5;;8910:2:17;3639:57:5;;;8892:21:17;8949:2;8929:18;;;8922:30;8988:34;8968:18;;;8961:62;-1:-1:-1;;;9039:18:17;;;9032:31;9080:19;;3639:57:5;8708:397:17;3639:57:5;682:10:1;-1:-1:-1;;;;;3731:21:5;;;;:62;;-1:-1:-1;3756:37:5;3773:5;682:10:1;4644:164:5;:::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:5;;9312:2:17;3709:168:5;;;9294:21:17;9351:2;9331:18;;;9324:30;9390:34;9370:18;;;9363:62;9461:26;9441:18;;;9434:54;9505:19;;3709:168:5;9110:420:17;3709:168:5;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;3900:613:14:-;-1:-1:-1;;;;;3976:16:14;;3995:1;3976:16;;;:7;:16;;;;;;3968:71;;;;-1:-1:-1;;;3968:71:14;;9737:2:17;3968:71:14;;;9719:21:17;9776:2;9756:18;;;9749:30;9815:34;9795:18;;;9788:62;-1:-1:-1;;;9866:18:17;;;9859:36;9912:19;;3968:71:14;9535:402:17;3968:71:14;4052:21;4100:14;;4076:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;4195:18:14;;4125:15;4195:18;;;:9;:18;;;;;;;;;4180:12;;4160:7;:16;;;;;;;4052:62;;-1:-1:-1;4125:15:14;;4144:32;;4052:62;4144:32;:::i;:::-;4143:49;;;;:::i;:::-;:70;;;;:::i;:::-;4125:88;-1:-1:-1;4234:12:14;4226:68;;;;-1:-1:-1;;;4226:68:14;;10969:2:17;4226:68:14;;;10951:21:17;11008:2;10988:18;;;10981:30;11047:34;11027:18;;;11020:62;-1:-1:-1;;;11098:18:17;;;11091:41;11149:19;;4226:68:14;10767:407:17;4226:68:14;-1:-1:-1;;;;;4328:18:14;;;;;;:9;:18;;;;;;:28;;4349:7;;4328:28;:::i;:::-;-1:-1:-1;;;;;4307:18:14;;;;;;:9;:18;;;;;:49;4384:14;;:24;;4401:7;;4384:24;:::i;:::-;4367:14;:41;4421:35;4439:7;4448;4421:17;:35::i;:::-;4472:33;;;-1:-1:-1;;;;;206:32:17;;188:51;;270:2;255:18;;248:34;;;4472:33:14;;161:18:17;4472:33:14;;;;;;;3957:556;;3900:613;:::o;4875:339:5:-;5070:41;682:10:1;5103:7:5;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:5;;;;;;;:::i;:::-;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;3349:412:3:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;3430:17:3::1;:38:::0;;;::::1;;;;-1:-1:-1::0;;3430:38:3;;::::1;;::::0;;3484:43:::1;::::0;::::1;::::0;::::1;::::0;3450:18;1026:14:17;1019:22;1001:41;;989:2;974:18;;861:187;3484:43:3::1;;;;;;;;3538:17;:24:::0;;-1:-1:-1;;3538:24:3::1;;;::::0;;3578:29:::1;::::0;-1:-1:-1;1001:41:17;;3578:29:3::1;::::0;989:2:17;974:18;3578:29:3::1;;;;;;;3629:2;3618:8;:13:::0;3642:8:::1;:30:::0;;-1:-1:-1;;3642:30:3::1;3653:19;3642:30:::0;;::::1;::::0;;;3688:65:::1;::::0;::::1;::::0;::::1;::::0;3642:30;;3653:19;3688:65:::1;:::i;:::-;;;;;;;;3349:412:::0;:::o;1245:256:6:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:6;;12780:2:17;1362:87:6;;;12762:21:17;12819:2;12799:18;;;12792:30;12858:34;12838:18;;;12831:62;-1:-1:-1;;;12909:18:17;;;12902:41;12960:19;;1362:87:6;12578:407:17;1362:87:6;-1:-1:-1;;;;;;1467:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;1025:105:13:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;680:6:13::1;::::0;-1:-1:-1;;;680:6:13;::::1;;;672:43;;;::::0;-1:-1:-1;;;672:43:13;;13192:2:17;672:43:13::1;::::0;::::1;13174:21:17::0;13231:2;13211:18;;;13204:30;13270:26;13250:18;;;13243:54;13314:18;;672:43:13::1;12990:348:17::0;672:43:13::1;1083:6:::2;:14:::0;;-1:-1:-1;;;;1083:14:13::2;::::0;;1113:9:::2;::::0;::::2;::::0;1092:5:::2;::::0;1113:9:::2;1025:105::o:0;5285:185:5:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;8463:302:3:-;8522:13;;;;8514:51;;;;-1:-1:-1;;;8514:51:3;;13545:2:17;8514:51:3;;;13527:21:17;13584:2;13564:18;;;13557:30;13623:27;13603:18;;;13596:55;13668:18;;8514:51:3;13343:349:17;8514:51:3;8598:39;8617:10;8629:7;8598:18;:39::i;:::-;8576:122;;;;-1:-1:-1;;;8576:122:3;;13899:2:17;8576:122:3;;;13881:21:17;13938:2;13918:18;;;13911:30;13977:34;13957:18;;;13950:62;-1:-1:-1;;;14028:18:17;;;14021:31;14069:19;;8576:122:3;13697:397:17;8576:122:3;8709:14;8715:7;8709:5;:14::i;:::-;8756:1;8745:8;;:12;;;;:::i;:::-;8734:8;:23;-1:-1:-1;8463:302:3:o;1767:233:6:-;1842:7;1878:30;1665:10;:17;;1577:113;1878:30;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:6;;14301:2:17;1862:95:6;;;14283:21:17;14340:2;14320:18;;;14313:30;14379:34;14359:18;;;14352:62;-1:-1:-1;;;14430:18:17;;;14423:42;14482:19;;1862:95:6;14099:408:17;1862:95:6;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;1968:24;;1767:233;;;:::o;2023:156:3:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;2104:23:3::1;:7;2114:13:::0;;2104:23:::1;:::i;:::-;;2143:28;2157:13;;2143:28;;;;;;;:::i;:::-;;;;;;;;2023:156:::0;;:::o;4035:190::-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;4120:17:3::1;:38:::0;;;::::1;;;;-1:-1:-1::0;;4120:38:3;;::::1;;::::0;;4174:43:::1;::::0;::::1;::::0;::::1;::::0;4140:18;1026:14:17;1019:22;1001:41;;989:2;974:18;;861:187;2120:239:5;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:5;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:5;;15241:2:17;2255:73:5;;;15223:21:17;15280:2;15260:18;;;15253:30;15319:34;15299:18;;;15292:62;-1:-1:-1;;;15370:18:17;;;15363:39;15419:19;;2255:73:5;15039:405:17;697:21:3;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4233:166::-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;4310:13:3::1;:30:::0;;-1:-1:-1;;4310:30:3::1;::::0;::::1;;::::0;;::::1;::::0;;;4356:35:::1;::::0;1001:41:17;;;4356:35:3::1;::::0;989:2:17;974:18;4356:35:3::1;861:187:17::0;1850:208:5;1922:7;-1:-1:-1;;;;;1950:19:5;;1942:74;;;;-1:-1:-1;;;1942:74:5;;15651:2:17;1942:74:5;;;15633:21:17;15690:2;15670:18;;;15663:30;15729:34;15709:18;;;15702:62;-1:-1:-1;;;15780:18:17;;;15773:40;15830:19;;1942:74:5;15449:406:17;1942:74:5;-1:-1:-1;;;;;;2034:16:5;;;;;:9;:16;;;;;;;1850:208::o;1650:94:12:-;1072:6;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;2295:451:3:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;2410:11:3::1;2405:334;2427:23:::0;;::::1;2405:334;;;2527:1;2500:10:::0;;2511:3;2500:15;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2500:29:3::1;;;2474:124;;;::::0;-1:-1:-1;;;2474:124:3;;16062:2:17;2474:124:3::1;::::0;::::1;16044:21:17::0;16101:2;16081:18;;;16074:30;16140:34;16120:18;;;16113:62;-1:-1:-1;;;16191:18:17;;;16184:31;16232:19;;2474:124:3::1;15860:397:17::0;2474:124:3::1;2617:12;:29;2630:10;;2641:3;2630:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2617:29:3::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2617:29:3;;::::1;;2613:115;;2708:4;2676:12;:29;2689:10;;2700:3;2689:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2676:29:3::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2676:29:3;:36;;-1:-1:-1;;2676:36:3::1;::::0;::::1;;::::0;;;::::1;::::0;;2613:115:::1;2452:5:::0;::::1;::::0;::::1;:::i;:::-;;;;2405:334;;827:103:13::0;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;470:6:13::1;::::0;-1:-1:-1;;;470:6:13;::::1;;;469:7;461:48;;;;-1:-1:-1::0;;;461:48:13::1;;;;;;;:::i;:::-;886:6:::2;:13:::0;;-1:-1:-1;;;;886:13:13::2;-1:-1:-1::0;;;886:13:13::2;::::0;;915:7:::2;::::0;::::2;::::0;886:13;;915:7:::2;827:103::o:0;3600:100:14:-;3651:7;3678;3686:5;3678:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;3678:14:14;;3600:100;-1:-1:-1;;3600:100:14:o;4409:172:3:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;4486:27:3::1;:7:::0;4496:17:::1;4486:27;:::i;:::-;4474:9;:39:::0;4529:44:::1;4545:27;:7:::0;4555:17:::1;4545:27;:::i;:::-;4529:44;::::0;439:25:17;;;427:2;412:18;4529:44:3::1;293:177:17::0;2595:104:5;2651:13;2684:7;2677:14;;;;;:::i;4278:295::-;-1:-1:-1;;;;;4381:24:5;;682:10:1;4381:24:5;;4373:62;;;;-1:-1:-1;;;4373:62:5;;16961:2:17;4373:62:5;;;16943:21:17;17000:2;16980:18;;;16973:30;17039:27;17019:18;;;17012:55;17084:18;;4373:62:5;16759:349:17;4373:62:5;682:10:1;4448:32:5;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4448:42:5;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:5;;;;;;;;;;4517:48;;1001:41:17;;;4448:42:5;;682:10:1;4517:48:5;;974:18:17;4517:48:5;;;;;;;4278:295;;:::o;4589:1032:3:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;470:6:13::1;::::0;-1:-1:-1;;;470:6:13;::::1;;;469:7;461:48;;;;-1:-1:-1::0;;;461:48:13::1;;;;;;;:::i;:::-;4768:14:3::2;::::0;4736:8:::2;::::0;:28:::2;::::0;4747:10;;4736:28:::2;:::i;:::-;:46;;4714:130;;;::::0;-1:-1:-1;;;4714:130:3;;17315:2:17;4714:130:3::2;::::0;::::2;17297:21:17::0;17354:2;17334:18;;;17327:30;17393:34;17373:18;;;17366:62;-1:-1:-1;;;17444:18:17;;;17437:32;17486:19;;4714:130:3::2;17113:398:17::0;4714:130:3::2;4912:13;::::0;4879:9:::2;::::0;:29:::2;::::0;4891:10;;4879:29:::2;:::i;:::-;:46;;4857:129;;;::::0;-1:-1:-1;;;4857:129:3;;17718:2:17;4857:129:3::2;::::0;::::2;17700:21:17::0;17757:2;17737:18;;;17730:30;17796:34;17776:18;;;17769:62;-1:-1:-1;;;17847:18:17;;;17840:31;17888:19;;4857:129:3::2;17516:397:17::0;4857:129:3::2;4999:18;::::0;5028:586:::2;5050:23:::0;;::::2;5028:586;;;5150:1;5123:10:::0;;5134:3;5123:15;;::::2;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5123:29:3::2;;;5097:129;;;::::0;-1:-1:-1;;;5097:129:3;;18120:2:17;5097:129:3::2;::::0;::::2;18102:21:17::0;18159:2;18139:18;;;18132:30;18198:34;18178:18;;;18171:62;-1:-1:-1;;;18249:18:17;;;18242:36;18295:19;;5097:129:3::2;17918:402:17::0;5097:129:3::2;5241:21;:9;1004:19:2::0;;1022:1;1004:19;;;915:127;5241:21:3::2;5290:9;885:14:2::0;5277:32:3::2;;5324:38;5334:10;;5345:3;5334:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;5351:10;5324:9;:38::i;:::-;5409:12;:29;5422:10;;5433:3;5422:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5409:29:3::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;5409:29:3;;:33:::2;::::0;5441:1:::2;5409:33;:::i;:::-;5377:12;:29;5390:10;;5401:3;5390:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5377:29:3::2;-1:-1:-1::0;;;;;5377:29:3::2;;;;;;;;;;;;:65;;;;5490:13;:30;5504:10;;5515:3;5504:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5490:30:3::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;5490:30:3;;:34:::2;::::0;5523:1:::2;5490:34;:::i;:::-;5457:13;:30;5471:10;;5482:3;5471:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5457:30:3::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;5457:30:3;:67;5550:8:::2;::::0;:12:::2;::::0;5561:1:::2;5550:12;:::i;:::-;5539:8;:23:::0;5589:9:::2;::::0;:13:::2;::::0;5601:1:::2;5589:13;:::i;:::-;5577:9;:25:::0;5075:5;::::2;::::0;::::2;:::i;:::-;;;;5028:586;;;;4703:918;4589:1032:::0;;:::o;2882:459::-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;3002:11:3::1;2997:337;3019:23:::0;;::::1;2997:337;;;3119:1;3092:10:::0;;3103:3;3092:15;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3092:29:3::1;;;3066:127;;;::::0;-1:-1:-1;;;3066:127:3;;18527:2:17;3066:127:3::1;::::0;::::1;18509:21:17::0;18566:2;18546:18;;;18539:30;18605:34;18585:18;;;18578:62;-1:-1:-1;;;18656:18:17;;;18649:34;18700:19;;3066:127:3::1;18325:400:17::0;3066:127:3::1;3212:12;:29;3225:10;;3236:3;3225:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3212:29:3::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3212:29:3;;::::1;;:37;;:29:::0;:37:::1;3208:115;;;3302:5;3270:12;:29;3283:10;;3294:3;3283:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3270:29:3::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3270:29:3;:37;;-1:-1:-1;;3270:37:3::1;::::0;::::1;;::::0;;;::::1;::::0;;3208:115:::1;3044:5:::0;::::1;::::0;::::1;:::i;:::-;;;;2997:337;;5541:328:5::0;5716:41;682:10:1;5749:7:5;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:5;;;;;;;:::i;:::-;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;2770:334::-;7444:4;7468:16;;;:7;:16;;;;;;2843:13;;-1:-1:-1;;;;;7468:16:5;2869:76;;;;-1:-1:-1;;;2869:76:5;;18932:2:17;2869:76:5;;;18914:21:17;18971:2;18951:18;;;18944:30;19010:34;18990:18;;;18983:62;-1:-1:-1;;;19061:18:17;;;19054:45;19116:19;;2869:76:5;18730:411:17;2869:76:5;2958:21;2982:10;:8;:10::i;:::-;2958:34;;3034:1;3016:7;3010:21;:25;:86;;;;;;;;;;;;;;;;;3062:7;3071:18;:7;:16;:18::i;:::-;3045:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3010:86;3003:93;2770:334;-1:-1:-1;;;2770:334:5:o;3859:172:3:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;3938:14:3::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;3938:32:3;;::::1;;::::0;;3986:37:::1;::::0;::::1;::::0;::::1;::::0;3955:15;1026:14:17;1019:22;1001:41;;989:2;974:18;;861:187;1899:192:12;1072:6;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:12;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:12;;19823:2:17;1980:73:12::1;::::0;::::1;19805:21:17::0;19862:2;19842:18;;;19835:30;19901:34;19881:18;;;19874:62;-1:-1:-1;;;19952:18:17;;;19945:36;19998:19;;1980:73:12::1;19621:402:17::0;1980:73:12::1;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;7996:459:3:-;470:6:13;;-1:-1:-1;;;470:6:13;;;;469:7;461:48;;;;-1:-1:-1;;;461:48:13;;;;;;;:::i;:::-;8077:17:3::1;::::0;::::1;::::0;::::1;;;8073:129;;8120:20;8132:7;8120:11;:20::i;:::-;8073:129;;;8173:17;8182:7;8173:8;:17::i;:::-;8238:14;;8227:7;8216:8;;:18;;;;:::i;:::-;:36;8212:236;;;8269:8;:33:::0;;-1:-1:-1;;8269:33:3::1;8280:22;8269:33:::0;;::::1;::::0;;;8322:114:::1;::::0;::::1;::::0;::::1;::::0;8361:19:::1;::::0;8280:22;8322:114:::1;:::i;8773:474::-:0;8823:7;;;8873:8;;;;:41;;;;;;;;:::i;:::-;;8869:85;;;-1:-1:-1;8941:1:3;8869:85;8980:22;8968:8;;;;:34;;;;;;;;:::i;:::-;;8964:78;;;-1:-1:-1;9029:1:3;8964:78;9068:19;9056:8;;;;:31;;;;;;;;:::i;:::-;;9052:75;;;-1:-1:-1;9114:1:3;9052:75;9153:22;9141:8;;;;:34;;;;;;;;:::i;:::-;;9137:78;;;-1:-1:-1;9202:1:3;9137:78;9232:7;8773:474;-1:-1:-1;8773:474:3:o;1481:305:5:-;1583:4;-1:-1:-1;;;;;;1620:40:5;;-1:-1:-1;;;1620:40:5;;:105;;-1:-1:-1;;;;;;;1677:48:5;;-1:-1:-1;;;1677:48:5;1620:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:4;;;1742:36:5;787:157:4;11361:174:5;11436:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11436:29:5;-1:-1:-1;;;;;11436:29:5;;;;;;;;:24;;11490:23;11436:24;11490:14;:23::i;:::-;-1:-1:-1;;;;;11481:46:5;;;;;;;;;;;11361:174;;:::o;2065:317:0:-;2180:6;2155:21;:31;;2147:73;;;;-1:-1:-1;;;2147:73:0;;20230:2:17;2147:73:0;;;20212:21:17;20269:2;20249:18;;;20242:30;20308:31;20288:18;;;20281:59;20357:18;;2147:73:0;20028:353:17;2147:73:0;2234:12;2252:9;-1:-1:-1;;;;;2252:14:0;2274:6;2252:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:52;;;2304:7;2296:78;;;;-1:-1:-1;;;2296:78:0;;20798:2:17;2296:78:0;;;20780:21:17;20837:2;20817:18;;;20810:30;20876:34;20856:18;;;20849:62;20947:28;20927:18;;;20920:56;20993:19;;2296:78:0;20596:422:17;7673:348:5;7766:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:5;7783:73;;;;-1:-1:-1;;;7783:73:5;;21225:2:17;7783:73:5;;;21207:21:17;21264:2;21244:18;;;21237:30;21303:34;21283:18;;;21276:62;-1:-1:-1;;;21354:18:17;;;21347:42;21406:19;;7783:73:5;21023:408:17;7783:73:5;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:5;:7;-1:-1:-1;;;;;7925:16:5;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:5;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:5;;7925:51;:87;;;-1:-1:-1;;;;;;4765:25:5;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7980:32;7917:96;7673:348;-1:-1:-1;;;;7673:348:5:o;10665:578::-;10824:4;-1:-1:-1;;;;;10797:31:5;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:5;;10789:85;;;;-1:-1:-1;;;10789:85:5;;21638:2:17;10789:85:5;;;21620:21:17;21677:2;21657:18;;;21650:30;21716:34;21696:18;;;21689:62;-1:-1:-1;;;21767:18:17;;;21760:39;21816:19;;10789:85:5;21436:405:17;10789:85:5;-1:-1:-1;;;;;10893:16:5;;10885:65;;;;-1:-1:-1;;;10885:65:5;;22048:2:17;10885:65:5;;;22030:21:17;22087:2;22067:18;;;22060:30;22126:34;22106:18;;;22099:62;-1:-1:-1;;;22177:18:17;;;22170:34;22221:19;;10885:65:5;21846:400:17;10885:65:5;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;-1:-1:-1;;;;;11109:15:5;;;;;;:9;:15;;;;;:20;;11128:1;;11109:15;:20;;11128:1;;11109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11140:13:5;;;;;;:9;:13;;;;;:18;;11157:1;;11140:13;:18;;11157:1;;11140:18;:::i;:::-;;;;-1:-1:-1;;11169:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11169:21:5;-1:-1:-1;;;;;11169:21:5;;;;;;;;;11208:27;;11169:16;;11208:27;;;;;;;10665:578;;;:::o;9968:360::-;10028:13;10044:23;10059:7;10044:14;:23::i;:::-;10028:39;;10080:48;10101:5;10116:1;10120:7;10080:20;:48::i;:::-;10169:29;10186:1;10190:7;10169:8;:29::i;:::-;-1:-1:-1;;;;;10211:16:5;;;;;;:9;:16;;;;;:21;;10231:1;;10211:16;:21;;10231:1;;10211:21;:::i;:::-;;;;-1:-1:-1;;10250:16:5;;;;:7;:16;;;;;;10243:23;;-1:-1:-1;;;;;;10243:23:5;;;10284:36;10258:7;;10250:16;-1:-1:-1;;;;;10284:36:5;;;;;10250:16;;10284:36;10017:311;9968:360;:::o;2099:173:12:-;2174:6;;;-1:-1:-1;;;;;2191:17:12;;;-1:-1:-1;;;;;;2191:17:12;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;8363:110:5:-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;:::-;8363:110;;:::o;6751:315::-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;-1:-1:-1;;;6947:111:5;;;;;;;:::i;2187:100:3:-;2239:13;2272:7;2265:14;;;;;:::i;288:723:16:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:16;;;;;;;;;;;;-1:-1:-1;;;592:10:16;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:16;;-1:-1:-1;744:2:16;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:16;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:16;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:16;;;;;;;;-1:-1:-1;949:11:16;958:2;949:11;;:::i;:::-;;;818:154;;5629:1253:3;5708:14;;;;;;;:22;;5726:4;5708:22;5687:103;;;;-1:-1:-1;;;5687:103:3;;22989:2:17;5687:103:3;;;22971:21:17;;;23008:18;;;23001:30;23067:34;23047:18;;;23040:62;23119:18;;5687:103:3;22787:356:17;5687:103:3;5836:10;5823:24;;;;:12;:24;;;;;;;;:32;;:24;:32;5801:113;;;;-1:-1:-1;;;5801:113:3;;23350:2:17;5801:113:3;;;23332:21:17;23389:2;23369:18;;;23362:30;23428:33;23408:18;;;23401:61;23479:18;;5801:113:3;23148:355:17;5801:113:3;5988:8;;5963:10;5947:27;;;;:15;:27;;;;;;:37;;5977:7;;5947:37;:::i;:::-;:49;;5925:130;;;;-1:-1:-1;;;5925:130:3;;23710:2:17;5925:130:3;;;23692:21:17;23749:2;23729:18;;;23722:30;23788:33;23768:18;;;23761:61;23839:18;;5925:130:3;23508:355:17;5925:130:3;6110:14;;6099:7;6088:8;;:18;;;;:::i;:::-;:36;;6066:114;;;;-1:-1:-1;;;6066:114:3;;24070:2:17;6066:114:3;;;24052:21:17;24109:2;24089:18;;;24082:30;24148;24128:18;;;24121:58;24196:18;;6066:114:3;23868:352:17;6066:114:3;6191:14;6208:10;3837:9;;;3769:85;6208:10;6191:27;-1:-1:-1;6271:9:3;6251:16;6260:7;6191:27;6251:16;:::i;:::-;:29;;6229:119;;;;-1:-1:-1;;;6229:119:3;;;;;;;:::i;:::-;6359:18;;6388:431;6416:7;6410:3;:13;6388:431;;;6447:21;:9;1004:19:2;;1022:1;1004:19;;;915:127;6447:21:3;6496:9;885:14:2;6483:32:3;;6530:33;6540:10;6552;6530:9;:33::i;:::-;6624:10;6608:27;;;;:15;:27;;;;;;:37;;6638:7;;6608:37;:::i;:::-;6594:10;6578:27;;;;:15;:27;;;;;;;;:67;;;;6688:25;;;;:35;;6716:7;;6688:35;:::i;:::-;6674:10;6660:25;;;;:13;:25;;;;;:63;6749:8;;:12;;6760:1;6749:12;:::i;:::-;6738:8;:23;6791:12;;:16;;6806:1;6791:16;:::i;:::-;6776:12;:31;6425:5;;;;:::i;:::-;;;;6388:431;;;-1:-1:-1;6834:40:3;;;24808:25:17;;;24864:2;24849:18;;24842:34;;;6846:10:3;;6834:40;;24781:18:17;6834:40:3;;;;;;;;5676:1206;;5629:1253;:::o;6890:1098::-;6966:17;;;;;;;;:25;;:17;:25;6945:93;;;;-1:-1:-1;;;6945:93:3;;25089:2:17;6945:93:3;;;25071:21:17;25128:2;25108:18;;;25101:30;-1:-1:-1;;;25147:18:17;;;25140:49;25206:18;;6945:93:3;24887:343:17;6945:93:3;7067:1;7057:7;:11;7049:44;;;;-1:-1:-1;;;7049:44:3;;25437:2:17;7049:44:3;;;25419:21:17;25476:2;25456:18;;;25449:30;-1:-1:-1;;;25495:18:17;;;25488:50;25555:18;;7049:44:3;25235:344:17;7049:44:3;7137:8;;7126:7;:19;;7104:112;;;;-1:-1:-1;;;7104:112:3;;25786:2:17;7104:112:3;;;25768:21:17;25825:2;25805:18;;;25798:30;25864:34;25844:18;;;25837:62;-1:-1:-1;;;25915:18:17;;;25908:41;25966:19;;7104:112:3;25584:407:17;7104:112:3;7271:14;;7260:7;7249:8;;:18;;;;:::i;:::-;:36;;7227:114;;;;-1:-1:-1;;;7227:114:3;;24070:2:17;7227:114:3;;;24052:21:17;24109:2;24089:18;;;24082:30;24148;24128:18;;;24121:58;24196:18;;7227:114:3;23868:352:17;7227:114:3;7352:14;7369:10;3837:9;;;3769:85;7369:10;7352:27;-1:-1:-1;7432:9:3;7412:16;7421:7;7352:27;7412:16;:::i;:::-;:29;;7390:119;;;;-1:-1:-1;;;7390:119:3;;;;;;;:::i;:::-;7520:18;;7549:379;7577:7;7571:3;:13;7549:379;;;7608:21;:9;1004:19:2;;1022:1;1004:19;;;915:127;7608:21:3;7657:9;885:14:2;7644:32:3;;7691:33;7701:10;7713;7691:9;:33::i;:::-;7779:10;7766:24;;;;:12;:24;;;;;;:34;;7793:7;;7766:34;:::i;:::-;7752:10;7739:24;;;;:12;:24;;;;;;;;:61;;;;7843:25;;;;:35;;7871:7;;7843:35;:::i;:::-;7829:10;7815:25;;;;:13;:25;;;;;:63;7904:8;;:12;;7915:1;7904:12;:::i;:::-;7893:8;:23;7586:5;;;;:::i;:::-;;;;7549:379;;;-1:-1:-1;7943:37:3;;;24808:25:17;;;24864:2;24849:18;;24842:34;;;7952:10:3;;7943:37;;24781:18:17;7943:37:3;24634:248:17;2613:589:6;-1:-1:-1;;;;;2819:18:6;;2815:187;;2854:40;2886:7;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164;2854:40;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;8700:321:5:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;-1:-1:-1;;;8859:154:5;;;;;;;:::i;12100:799::-;12255:4;-1:-1:-1;;;;;12276:13:5;;1066:20:0;1114:8;12272:620:5;;12312:72;;-1:-1:-1;;;12312:72:5;;-1:-1:-1;;;;;12312:36:5;;;;;:72;;682:10:1;;12363:4:5;;12369:7;;12378:5;;12312:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12312:72:5;;;;;;;;-1:-1:-1;;12312:72:5;;;;;;;;;;;;:::i;:::-;;;12308:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12554:13:5;;12550:272;;12597:60;;-1:-1:-1;;;12597:60:5;;;;;;;:::i;12550:272::-;12772:6;12766:13;12757:6;12753:2;12749:15;12742:38;12308:529;-1:-1:-1;;;;;;12435:51:5;-1:-1:-1;;;12435:51:5;;-1:-1:-1;12428:58:5;;12272:620;-1:-1:-1;12876:4:5;12100:799;;;;;;:::o;4716:988:6:-;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;;;;;;:::i;:::-;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6070:1008;;;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;9357:382:5:-;-1:-1:-1;;;;;9437:16:5;;9429:61;;;;-1:-1:-1;;;9429:61:5;;27078:2:17;9429:61:5;;;27060:21:17;;;27097:18;;;27090:30;27156:34;27136:18;;;27129:62;27208:18;;9429:61:5;26876:356:17;9429:61:5;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:5;:30;9501:58;;;;-1:-1:-1;;;9501:58:5;;27439:2:17;9501:58:5;;;27421:21:17;27478:2;27458:18;;;27451:30;27517;27497:18;;;27490:58;27565:18;;9501:58:5;27237:352:17;9501:58:5;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;-1:-1:-1;;;;;9630:13:5;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9659:21:5;-1:-1:-1;;;;;9659:21:5;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;475:131:17;-1:-1:-1;;;;;;549:32:17;;539:43;;529:71;;596:1;593;586:12;611:245;669:6;722:2;710:9;701:7;697:23;693:32;690:52;;;738:1;735;728:12;690:52;777:9;764:23;796:30;820:5;796:30;:::i;1053:258::-;1125:1;1135:113;1149:6;1146:1;1143:13;1135:113;;;1225:11;;;1219:18;1206:11;;;1199:39;1171:2;1164:10;1135:113;;;1266:6;1263:1;1260:13;1257:48;;;-1:-1:-1;;1301:1:17;1283:16;;1276:27;1053:258::o;1316:::-;1358:3;1396:5;1390:12;1423:6;1418:3;1411:19;1439:63;1495:6;1488:4;1483:3;1479:14;1472:4;1465:5;1461:16;1439:63;:::i;:::-;1556:2;1535:15;-1:-1:-1;;1531:29:17;1522:39;;;;1563:4;1518:50;;1316:258;-1:-1:-1;;1316:258:17:o;1579:220::-;1728:2;1717:9;1710:21;1691:4;1748:45;1789:2;1778:9;1774:18;1766:6;1748:45;:::i;1804:180::-;1863:6;1916:2;1904:9;1895:7;1891:23;1887:32;1884:52;;;1932:1;1929;1922:12;1884:52;-1:-1:-1;1955:23:17;;1804:180;-1:-1:-1;1804:180:17:o;2197:131::-;-1:-1:-1;;;;;2272:31:17;;2262:42;;2252:70;;2318:1;2315;2308:12;2333:315;2401:6;2409;2462:2;2450:9;2441:7;2437:23;2433:32;2430:52;;;2478:1;2475;2468:12;2430:52;2517:9;2504:23;2536:31;2561:5;2536:31;:::i;:::-;2586:5;2638:2;2623:18;;;;2610:32;;-1:-1:-1;;;2333:315:17:o;2653:247::-;2712:6;2765:2;2753:9;2744:7;2740:23;2736:32;2733:52;;;2781:1;2778;2771:12;2733:52;2820:9;2807:23;2839:31;2864:5;2839:31;:::i;3165:456::-;3242:6;3250;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3366:9;3353:23;3385:31;3410:5;3385:31;:::i;:::-;3435:5;-1:-1:-1;3492:2:17;3477:18;;3464:32;3505:33;3464:32;3505:33;:::i;:::-;3165:456;;3557:7;;-1:-1:-1;;;3611:2:17;3596:18;;;;3583:32;;3165:456::o;3626:160::-;3691:20;;3747:13;;3740:21;3730:32;;3720:60;;3776:1;3773;3766:12;3791:180;3847:6;3900:2;3888:9;3879:7;3875:23;3871:32;3868:52;;;3916:1;3913;3906:12;3868:52;3939:26;3955:9;3939:26;:::i;3976:592::-;4047:6;4055;4108:2;4096:9;4087:7;4083:23;4079:32;4076:52;;;4124:1;4121;4114:12;4076:52;4164:9;4151:23;4193:18;4234:2;4226:6;4223:14;4220:34;;;4250:1;4247;4240:12;4220:34;4288:6;4277:9;4273:22;4263:32;;4333:7;4326:4;4322:2;4318:13;4314:27;4304:55;;4355:1;4352;4345:12;4304:55;4395:2;4382:16;4421:2;4413:6;4410:14;4407:34;;;4437:1;4434;4427:12;4407:34;4482:7;4477:2;4468:6;4464:2;4460:15;4456:24;4453:37;4450:57;;;4503:1;4500;4493:12;4450:57;4534:2;4526:11;;;;;4556:6;;-1:-1:-1;3976:592:17;;-1:-1:-1;;;;3976:592:17:o;4573:615::-;4659:6;4667;4720:2;4708:9;4699:7;4695:23;4691:32;4688:52;;;4736:1;4733;4726:12;4688:52;4776:9;4763:23;4805:18;4846:2;4838:6;4835:14;4832:34;;;4862:1;4859;4852:12;4832:34;4900:6;4889:9;4885:22;4875:32;;4945:7;4938:4;4934:2;4930:13;4926:27;4916:55;;4967:1;4964;4957:12;4916:55;5007:2;4994:16;5033:2;5025:6;5022:14;5019:34;;;5049:1;5046;5039:12;5019:34;5102:7;5097:2;5087:6;5084:1;5080:14;5076:2;5072:23;5068:32;5065:45;5062:65;;;5123:1;5120;5113:12;5193:315;5258:6;5266;5319:2;5307:9;5298:7;5294:23;5290:32;5287:52;;;5335:1;5332;5325:12;5287:52;5374:9;5361:23;5393:31;5418:5;5393:31;:::i;:::-;5443:5;-1:-1:-1;5467:35:17;5498:2;5483:18;;5467:35;:::i;:::-;5457:45;;5193:315;;;;;:::o;5513:127::-;5574:10;5569:3;5565:20;5562:1;5555:31;5605:4;5602:1;5595:15;5629:4;5626:1;5619:15;5645:242;5731:1;5724:5;5721:12;5711:143;;5776:10;5771:3;5767:20;5764:1;5757:31;5811:4;5808:1;5801:15;5839:4;5836:1;5829:15;5711:143;5863:18;;5645:242::o;5892:217::-;6042:2;6027:18;;6054:49;6031:9;6085:6;6054:49;:::i;6114:127::-;6175:10;6170:3;6166:20;6163:1;6156:31;6206:4;6203:1;6196:15;6230:4;6227:1;6220:15;6246:1266;6341:6;6349;6357;6365;6418:3;6406:9;6397:7;6393:23;6389:33;6386:53;;;6435:1;6432;6425:12;6386:53;6474:9;6461:23;6493:31;6518:5;6493:31;:::i;:::-;6543:5;-1:-1:-1;6600:2:17;6585:18;;6572:32;6613:33;6572:32;6613:33;:::i;:::-;6665:7;-1:-1:-1;6719:2:17;6704:18;;6691:32;;-1:-1:-1;6774:2:17;6759:18;;6746:32;6797:18;6827:14;;;6824:34;;;6854:1;6851;6844:12;6824:34;6892:6;6881:9;6877:22;6867:32;;6937:7;6930:4;6926:2;6922:13;6918:27;6908:55;;6959:1;6956;6949:12;6908:55;6995:2;6982:16;7017:2;7013;7010:10;7007:36;;;7023:18;;:::i;:::-;7098:2;7092:9;7066:2;7152:13;;-1:-1:-1;;7148:22:17;;;7172:2;7144:31;7140:40;7128:53;;;7196:18;;;7216:22;;;7193:46;7190:72;;;7242:18;;:::i;:::-;7282:10;7278:2;7271:22;7317:2;7309:6;7302:18;7357:7;7352:2;7347;7343;7339:11;7335:20;7332:33;7329:53;;;7378:1;7375;7368:12;7329:53;7434:2;7429;7425;7421:11;7416:2;7408:6;7404:15;7391:46;7479:1;7474:2;7469;7461:6;7457:15;7453:24;7446:35;7500:6;7490:16;;;;;;;6246:1266;;;;;;;:::o;7517:388::-;7585:6;7593;7646:2;7634:9;7625:7;7621:23;7617:32;7614:52;;;7662:1;7659;7652:12;7614:52;7701:9;7688:23;7720:31;7745:5;7720:31;:::i;:::-;7770:5;-1:-1:-1;7827:2:17;7812:18;;7799:32;7840:33;7799:32;7840:33;:::i;:::-;7892:7;7882:17;;;7517:388;;;;;:::o;7910:380::-;7989:1;7985:12;;;;8032;;;8053:61;;8107:4;8099:6;8095:17;8085:27;;8053:61;8160:2;8152:6;8149:14;8129:18;8126:38;8123:161;;;8206:10;8201:3;8197:20;8194:1;8187:31;8241:4;8238:1;8231:15;8269:4;8266:1;8259:15;8123:161;;7910:380;;;:::o;9942:127::-;10003:10;9998:3;9994:20;9991:1;9984:31;10034:4;10031:1;10024:15;10058:4;10055:1;10048:15;10074:128;10114:3;10145:1;10141:6;10138:1;10135:13;10132:39;;;10151:18;;:::i;:::-;-1:-1:-1;10187:9:17;;10074:128::o;10207:168::-;10247:7;10313:1;10309;10305:6;10301:14;10298:1;10295:21;10290:1;10283:9;10276:17;10272:45;10269:71;;;10320:18;;:::i;:::-;-1:-1:-1;10360:9:17;;10207:168::o;10380:127::-;10441:10;10436:3;10432:20;10429:1;10422:31;10472:4;10469:1;10462:15;10496:4;10493:1;10486:15;10512:120;10552:1;10578;10568:35;;10583:18;;:::i;:::-;-1:-1:-1;10617:9:17;;10512:120::o;10637:125::-;10677:4;10705:1;10702;10699:8;10696:34;;;10710:18;;:::i;:::-;-1:-1:-1;10747:9:17;;10637:125::o;11466:413::-;11668:2;11650:21;;;11707:2;11687:18;;;11680:30;11746:34;11741:2;11726:18;;11719:62;-1:-1:-1;;;11812:2:17;11797:18;;11790:47;11869:3;11854:19;;11466:413::o;11884:356::-;12086:2;12068:21;;;12105:18;;;12098:30;12164:34;12159:2;12144:18;;12137:62;12231:2;12216:18;;11884:356::o;12245:328::-;12439:2;12424:18;;12451:49;12428:9;12482:6;12451:49;:::i;:::-;12509:58;12563:2;12552:9;12548:18;12540:6;12509:58;:::i;14512:127::-;14573:10;14568:3;14564:20;14561:1;14554:31;14604:4;14601:1;14594:15;14628:4;14625:1;14618:15;14644:390;14803:2;14792:9;14785:21;14842:6;14837:2;14826:9;14822:18;14815:34;14899:6;14891;14886:2;14875:9;14871:18;14858:48;14955:1;14926:22;;;14950:2;14922:31;;;14915:42;;;;15018:2;14997:15;;;-1:-1:-1;;14993:29:17;14978:45;14974:54;;14644:390;-1:-1:-1;14644:390:17:o;16262:135::-;16301:3;-1:-1:-1;;16322:17:17;;16319:43;;;16342:18;;:::i;:::-;-1:-1:-1;16389:1:17;16378:13;;16262:135::o;16402:352::-;16604:2;16586:21;;;16643:2;16623:18;;;16616:30;16682;16677:2;16662:18;;16655:58;16745:2;16730:18;;16402:352::o;19146:470::-;19325:3;19363:6;19357:13;19379:53;19425:6;19420:3;19413:4;19405:6;19401:17;19379:53;:::i;:::-;19495:13;;19454:16;;;;19517:57;19495:13;19454:16;19551:4;19539:17;;19517:57;:::i;:::-;19590:20;;19146:470;-1:-1:-1;;;;19146:470:17:o;22251:414::-;22453:2;22435:21;;;22492:2;22472:18;;;22465:30;22531:34;22526:2;22511:18;;22504:62;-1:-1:-1;;;22597:2:17;22582:18;;22575:48;22655:3;22640:19;;22251:414::o;22670:112::-;22702:1;22728;22718:35;;22733:18;;:::i;:::-;-1:-1:-1;22767:9:17;;22670:112::o;24225:404::-;24427:2;24409:21;;;24466:2;24446:18;;;24439:30;24505:34;24500:2;24485:18;;24478:62;-1:-1:-1;;;24571:2:17;24556:18;;24549:38;24619:3;24604:19;;24225:404::o;25996:489::-;-1:-1:-1;;;;;26265:15:17;;;26247:34;;26317:15;;26312:2;26297:18;;26290:43;26364:2;26349:18;;26342:34;;;26412:3;26407:2;26392:18;;26385:31;;;26190:4;;26433:46;;26459:19;;26451:6;26433:46;:::i;:::-;26425:54;25996:489;-1:-1:-1;;;;;;25996:489:17:o;26490:249::-;26559:6;26612:2;26600:9;26591:7;26587:23;26583:32;26580:52;;;26628:1;26625;26618:12;26580:52;26660:9;26654:16;26679:30;26703:5;26679:30;:::i;26744:127::-;26805:10;26800:3;26796:20;26793:1;26786:31;26836:4;26833:1;26826:15;26860:4;26857:1;26850:15

Swarm Source

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