ETH Price: $3,478.80 (+6.22%)
Gas: 8 Gwei

Token

SOWTEN (Agent)
 

Overview

Max Total Supply

5,555 Agent

Holders

197

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

SOWTEN is an NFT art project that aims to quilt together Japanese manga aesthetics into a world that combines Ukiyo-e and Pop-art.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SowtenNFTNeoV1

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : SowtenNFTNeoV1.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "contracts/token/ERC721A/ERC721A.sol";
import '@openzeppelin/contracts/access/Ownable.sol';
import "contracts/utils/Strings.sol";

contract SowtenNFTNeoV1 is ERC721A, Ownable {
    using Strings for uint256;
    
    string public baseURI;
    string public baseExtension = ".json";
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmount = 5;
    uint256 public salePeriod = 1;
    bool public paused = false;
    /* mint num on salePeriod */
    mapping(address => uint[10]) public whitelisted;
    mapping(address => uint[10]) public mintAmount;
    /* presale price on salePeriod */
    mapping(uint => uint256) public price;
    mapping(uint => uint256) public totalSupplyOnPeriod;
    mapping(uint => uint256) public maxSupplyOnPeriod;
    mapping(uint => bool) public anyoneCanMint;
    mapping(uint => uint256) public anyoneCanMintNum;

    constructor() ERC721A("SOWTEN", "Agent") {
        price[0] = 0.08 ether;
        price[1] = 0.05 ether;  // PL1
        maxSupplyOnPeriod[0] = maxSupply;
        maxSupplyOnPeriod[1] = 750; // SL1
        anyoneCanMint[0] = true;
        anyoneCanMint[1] = false;
        anyoneCanMintNum[0] = 1;
        anyoneCanMintNum[1] = 0;
        mintOnPeriod(msg.sender, 1, 0);
    }

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

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    /* public */
    function mint(address _to, uint256 _mintAmount) public payable {
        mintOnPeriod(_to, _mintAmount, salePeriod);
    }

    function publicMint(address _to, uint256 _mintAmount, uint256 _salePeriod) public payable {
        mintOnPeriod(_to, _mintAmount, _salePeriod);
    }

    function mintOnPeriod(address _to, uint256 _mintAmount, uint256 _salePeriod) public payable {
        uint256 supply = totalSupply();
        require(!paused);
        require(_mintAmount > 0);
        require(supply + _mintAmount <= maxSupply);

        if (msg.sender != owner()) {
            require(_mintAmount <= maxMintAmount, "The mint num has been exceeded.(Total)");
            require(totalSupplyOnPeriod[_salePeriod] + _mintAmount <= maxSupplyOnPeriod[_salePeriod], "The mint num has been exceeded.(On Period)");
            require(msg.value >= price[_salePeriod] * _mintAmount, "The price is incorrect."); // price

            if(_salePeriod != 0) { 
                if((anyoneCanMint[_salePeriod] == true)) {
                    // anyone mint
                    if(anyoneCanMintNum[_salePeriod] == 0) {
                        revert("Not permitted to mint during this sales period.");
                    }
                    if(_mintAmount + mintAmount[msg.sender][_salePeriod] > anyoneCanMintNum[_salePeriod]) {
                        revert("Exceeded the number of mints permitted for this sales period.");
                    }
                } else {
                    // whitelist mint
                    if(whitelisted[msg.sender][_salePeriod] == 0) {
                        revert("Not permitted to mint during this sales period.");
                    }
                    if(_mintAmount + mintAmount[msg.sender][_salePeriod] > whitelisted[msg.sender][_salePeriod]) {
                        revert("Exceeded the number of mints permitted for this sales period.");
                    }
                }
            }
        }

        // Mint Method (ERC721A)
        _safeMint(_to, _mintAmount);
        mintAmount[_to][_salePeriod] = mintAmount[_to][_salePeriod] + _mintAmount;
        totalSupplyOnPeriod[_salePeriod] = totalSupplyOnPeriod[_salePeriod] + _mintAmount;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    function getPriceOnPeriod(uint256 _salePeriod) public view returns(uint256){
        return price[_salePeriod];
    }

    function getWhitelistUserOnPeriod(address _user, uint256 _salePeriod) public view returns(uint256) {
        return whitelisted[_user][_salePeriod];
    }

    function getMintAmountOnPeriod(address _user, uint256 _salePeriod) public view returns(uint256) {
        return mintAmount[_user][_salePeriod];
    }

    function getTotalSupplyOnPeriod(uint256 _salePeriod) public view returns(uint256) {
        return totalSupplyOnPeriod[_salePeriod];
    }

    function getMaxSupplyOnPeriod(uint256 _salePeriod) public view returns(uint256) {
        return maxSupplyOnPeriod[_salePeriod];
    }

    function getAnyoneCanMint(uint256 _salePeriod) public view returns(bool) {
        return anyoneCanMint[_salePeriod];
    }

    function getAnyoneCanMintNum(uint256 _salePeriod) public view returns(uint256) {
        return anyoneCanMintNum[_salePeriod];
    }

    /* only owner */
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setSalePeriod(uint256 _salePeriod) public onlyOwner {
        salePeriod = _salePeriod;
    }

    function setPriceOnPeriod(uint256 _salePeriod, uint256 _price) public onlyOwner {
        price[_salePeriod] = _price;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setMaxSupplyOnPeriod(uint256 _salePeriod, uint256 _maxSupplyOnPeriod) public onlyOwner {
        maxSupplyOnPeriod[_salePeriod] = _maxSupplyOnPeriod;
    }

    function setAnyoneCanMint(uint256 _salePeriod, bool _anyoneCanMint) public onlyOwner {
        anyoneCanMint[_salePeriod] = _anyoneCanMint;
    }

    function setAnyoneCanMintNum(uint256 _salePeriod, uint256 _anyoneCanMintNum) public onlyOwner {
        anyoneCanMintNum[_salePeriod] = _anyoneCanMintNum;
    }

    function addWhitelistUserOnPeriod(address _user, uint256 _mintNum, uint256 _salePeriod) public onlyOwner {
        whitelisted[_user][_salePeriod] = _mintNum;
    }

    function addWhitelistUserOnPeriodBulk(address[] memory _users, uint256 _mintNum, uint256 _salePeriod) public onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            whitelisted[_users[i]][_salePeriod] = _mintNum;
        }
    }

    function removeWhitelistUserOnPeriod(address _user, uint256 _salePeriod) public onlyOwner {
        whitelisted[_user][_salePeriod] = 0;
    }

    function airdropNfts(address[] calldata wAddresses) public onlyOwner {
        for (uint i = 0; i < wAddresses.length; i++) {
            _safeMint(wAddresses[i], 1);
        }
        totalSupplyOnPeriod[0] = totalSupplyOnPeriod[0] + wAddresses.length;
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function burn(uint256 tokenId, bool approvalCheck) public onlyOwner {
        _burn(tokenId, approvalCheck);
    }

    //send remaining NFTs to walet
    function devMint(uint256 _totalSupply) external onlyOwner {
        address user = owner(); 
        uint256 leftOver = _totalSupply - totalSupply();
        while (leftOver > 10) {
            _safeMint(user, 10);
            leftOver -= 10;
        }
        if (leftOver > 0) {
            _safeMint(user, leftOver);
        }
    }
}

File 2 of 6 : 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);
    }
}

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 4 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 5 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

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

pragma solidity ^0.8.0;

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_mintNum","type":"uint256"},{"internalType":"uint256","name":"_salePeriod","type":"uint256"}],"name":"addWhitelistUserOnPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"uint256","name":"_mintNum","type":"uint256"},{"internalType":"uint256","name":"_salePeriod","type":"uint256"}],"name":"addWhitelistUserOnPeriodBulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wAddresses","type":"address[]"}],"name":"airdropNfts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"anyoneCanMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"anyoneCanMintNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"approvalCheck","type":"bool"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePeriod","type":"uint256"}],"name":"getAnyoneCanMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePeriod","type":"uint256"}],"name":"getAnyoneCanMintNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePeriod","type":"uint256"}],"name":"getMaxSupplyOnPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_salePeriod","type":"uint256"}],"name":"getMintAmountOnPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePeriod","type":"uint256"}],"name":"getPriceOnPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePeriod","type":"uint256"}],"name":"getTotalSupplyOnPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_salePeriod","type":"uint256"}],"name":"getWhitelistUserOnPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxSupplyOnPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_salePeriod","type":"uint256"}],"name":"mintOnPeriod","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_salePeriod","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_salePeriod","type":"uint256"}],"name":"removeWhitelistUserOnPeriod","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":"payable","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":"payable","type":"function"},{"inputs":[],"name":"salePeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePeriod","type":"uint256"},{"internalType":"bool","name":"_anyoneCanMint","type":"bool"}],"name":"setAnyoneCanMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePeriod","type":"uint256"},{"internalType":"uint256","name":"_anyoneCanMintNum","type":"uint256"}],"name":"setAnyoneCanMintNum","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePeriod","type":"uint256"},{"internalType":"uint256","name":"_maxSupplyOnPeriod","type":"uint256"}],"name":"setMaxSupplyOnPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePeriod","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPriceOnPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePeriod","type":"uint256"}],"name":"setSalePeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalSupplyOnPeriod","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000e15565b50612710600b556005600c556001600d556000600e60006101000a81548160ff0219169083151502179055503480156200008a57600080fd5b506040518060400160405280600681526020017f534f5754454e00000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4167656e7400000000000000000000000000000000000000000000000000000081525081600290805190602001906200010f92919062000e15565b5080600390805190602001906200012892919062000e15565b50620001396200027d60201b60201c565b600081905550505062000161620001556200028660201b60201c565b6200028e60201b60201c565b67011c37937e080000601160008081526020019081526020016000208190555066b1a2bc2ec50000601160006001815260200190815260200160002081905550600b5460136000808152602001908152602001600020819055506102ee60136000600181526020019081526020016000208190555060016014600080815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601460006001815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601560008081526020019081526020016000208190555060006015600060018152602001908152602001600020819055506200027733600160006200035460201b60201c565b62001515565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000620003666200091260201b60201c565b9050600e60009054906101000a900460ff16156200038357600080fd5b600083116200039157600080fd5b600b548382620003a291906200115f565b1115620003ae57600080fd5b620003be6200093160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200080657600c5483111562000439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004309062001110565b60405180910390fd5b60136000838152602001908152602001600020548360126000858152602001908152602001600020546200046e91906200115f565b1115620004b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004a990620010ee565b60405180910390fd5b826011600084815260200190815260200160002054620004d39190620011bc565b34101562000518576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050f90620010cc565b60405180910390fd5b600082146200080557600115156014600084815260200190815260200160002060009054906101000a900460ff16151514156200066a57600060156000848152602001908152602001600020541415620005a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a09062001088565b60405180910390fd5b6015600083815260200190815260200160002054601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a811062000611576200061062001351565b5b0154846200062091906200115f565b111562000664576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200065b90620010aa565b60405180910390fd5b62000804565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a8110620006c057620006bf62001351565b5b0154141562000706576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fd9062001088565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082600a81106200075a576200075962001351565b5b0154601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a8110620007b057620007af62001351565b5b015484620007bf91906200115f565b111562000803576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007fa90620010aa565b60405180910390fd5b5b5b5b6200081884846200095b60201b60201c565b82601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a81106200086d576200086c62001351565b5b01546200087b91906200115f565b601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a8110620008cf57620008ce62001351565b5b0181905550826012600084815260200190815260200160002054620008f591906200115f565b601260008481526020019081526020016000208190555050505050565b6000620009246200027d60201b60201c565b6001546000540303905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200097d8282604051806020016040528060008152506200098160201b60201c565b5050565b62000993838362000a3260201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1462000a2d57600080549050600083820390505b620009dc600086838060010194508662000c1b60201b60201c565b62000a13576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620009c157816000541462000a2a57600080fd5b50505b505050565b600080549050600082141562000a74576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000a89600084838562000d8d60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555062000b188362000afa600086600062000d9360201b60201c565b62000b0b8562000dc360201b60201c565b1762000dd360201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811462000bbb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000b7e565b50600082141562000bf8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505062000c16600084838562000dfe60201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000c4962000e0460201b60201c565b8786866040518563ffffffff1660e01b815260040162000c6d949392919062001034565b602060405180830381600087803b15801562000c8857600080fd5b505af192505050801562000cbc57506040513d601f19601f8201168201806040525081019062000cb9919062000edc565b60015b62000d3a573d806000811462000cef576040519150601f19603f3d011682016040523d82523d6000602084013e62000cf4565b606091505b5060008151141562000d32576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000db286868462000e0c60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b82805462000e2390620012bd565b90600052602060002090601f01602090048101928262000e47576000855562000e93565b82601f1062000e6257805160ff191683800117855562000e93565b8280016001018555821562000e93579182015b8281111562000e9257825182559160200191906001019062000e75565b5b50905062000ea2919062000ea6565b5090565b5b8082111562000ec157600081600090555060010162000ea7565b5090565b60008151905062000ed681620014fb565b92915050565b60006020828403121562000ef55762000ef462001380565b5b600062000f058482850162000ec5565b91505092915050565b62000f19816200121d565b82525050565b600062000f2c8262001132565b62000f3881856200113d565b935062000f4a81856020860162001287565b62000f558162001385565b840191505092915050565b600062000f6f602f836200114e565b915062000f7c8262001396565b604082019050919050565b600062000f96603d836200114e565b915062000fa382620013e5565b604082019050919050565b600062000fbd6017836200114e565b915062000fca8262001434565b602082019050919050565b600062000fe4602a836200114e565b915062000ff1826200145d565b604082019050919050565b60006200100b6026836200114e565b91506200101882620014ac565b604082019050919050565b6200102e816200127d565b82525050565b60006080820190506200104b600083018762000f0e565b6200105a602083018662000f0e565b62001069604083018562001023565b81810360608301526200107d818462000f1f565b905095945050505050565b60006020820190508181036000830152620010a38162000f60565b9050919050565b60006020820190508181036000830152620010c58162000f87565b9050919050565b60006020820190508181036000830152620010e78162000fae565b9050919050565b60006020820190508181036000830152620011098162000fd5565b9050919050565b600060208201905081810360008301526200112b8162000ffc565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200116c826200127d565b915062001179836200127d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011b157620011b0620012f3565b5b828201905092915050565b6000620011c9826200127d565b9150620011d6836200127d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620012125762001211620012f3565b5b828202905092915050565b60006200122a826200125d565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620012a75780820151818401526020810190506200128a565b83811115620012b7576000848401525b50505050565b60006002820490506001821680620012d657607f821691505b60208210811415620012ed57620012ec62001322565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f74207065726d697474656420746f206d696e7420647572696e672074686960008201527f732073616c657320706572696f642e0000000000000000000000000000000000602082015250565b7f457863656564656420746865206e756d626572206f66206d696e74732070657260008201527f6d697474656420666f7220746869732073616c657320706572696f642e000000602082015250565b7f54686520707269636520697320696e636f72726563742e000000000000000000600082015250565b7f546865206d696e74206e756d20686173206265656e2065786365656465642e2860008201527f4f6e20506572696f642900000000000000000000000000000000000000000000602082015250565b7f546865206d696e74206e756d20686173206265656e2065786365656465642e2860008201527f546f74616c290000000000000000000000000000000000000000000000000000602082015250565b620015068162001231565b81146200151257600080fd5b50565b6144a880620015256000396000f3fe60806040526004361061036b5760003560e01c8063715018a6116101c6578063b88d4fde116100f7578063db8963a511610095578063e0205ce41161006f578063e0205ce414610cc8578063e985e9c514610cf1578063f2fde38b14610d2e578063f356749d14610d575761036b565b8063db8963a514610c4d578063dd72ea5b14610c76578063de75135814610c9f5761036b565b8063c89cc5ce116100d1578063c89cc5ce14610b7f578063d5abeb0114610bbc578063d8d7a56114610be7578063da3ef23f14610c245761036b565b8063b88d4fde14610afb578063c668286214610b17578063c87b56dd14610b425761036b565b80639b4e0fe2116101645780639fac68cb1161013e5780639fac68cb14610a2f578063a22cb46514610a58578063a36cd80b14610a81578063a3e0a7d714610abe5761036b565b80639b4e0fe2146109ab5780639ed5c84c146109e85780639f02c81e14610a135761036b565b806384dd1883116101a057806384dd1883146108ef5780638da5cb5b1461092c57806395d89b41146109575780639821f065146109825761036b565b8063715018a6146108725780637f00c7a6146108895780638491fdd3146108b25761036b565b8063375a069a116102a05780635c975abb1161023e578063640488cc11610218578063640488cc146107a45780636c0360eb146107cd5780636c1cac4a146107f857806370a08231146108355761036b565b80635c975abb14610720578063606b63371461074b5780636352211e146107675761036b565b806342842e0e1161027a57806342842e0e1461066157806349f1f86d1461067d5780634eacf369146106ba57806355f804b3146106f75761036b565b8063375a069a146106125780633ccfd60b1461063b57806340c10f19146106455761036b565b8063159fe94a1161030d57806323b872dd116102e757806323b872dd1461053f578063250783a41461055b57806326a49e37146105985780632bd341f5146105d55761036b565b8063159fe94a146104c057806318160ddd146104e9578063239c70ae146105145761036b565b8063081812fc11610349578063081812fc14610401578063095ea7b31461043e5780630e583dd21461045a5780631433a4c0146104975761036b565b806301ffc9a71461037057806302329a29146103ad57806306fdde03146103d6575b600080fd5b34801561037c57600080fd5b5061039760048036038101906103929190613730565b610d80565b6040516103a49190613bb7565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613703565b610e12565b005b3480156103e257600080fd5b506103eb610e37565b6040516103f89190613bd2565b60405180910390f35b34801561040d57600080fd5b50610428600480360381019061042391906137d3565b610ec9565b6040516104359190613b50565b60405180910390f35b610458600480360381019061045391906135b4565b610f48565b005b34801561046657600080fd5b50610481600480360381019061047c91906135b4565b61108c565b60405161048e9190613cf4565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190613840565b6110b4565b005b3480156104cc57600080fd5b506104e760048036038101906104e291906135b4565b6110d8565b005b3480156104f557600080fd5b506104fe61113c565b60405161050b9190613cf4565b60405180910390f35b34801561052057600080fd5b50610529611153565b6040516105369190613cf4565b60405180910390f35b6105596004803603810190610554919061349e565b611159565b005b34801561056757600080fd5b50610582600480360381019061057d91906137d3565b61147e565b60405161058f9190613cf4565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba91906137d3565b61149b565b6040516105cc9190613cf4565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f791906137d3565b6114b3565b6040516106099190613bb7565b60405180910390f35b34801561061e57600080fd5b50610639600480360381019061063491906137d3565b6114d3565b005b610643611540565b005b61065f600480360381019061065a91906135b4565b6115c1565b005b61067b6004803603810190610676919061349e565b6115d2565b005b34801561068957600080fd5b506106a4600480360381019061069f91906137d3565b6115f2565b6040516106b19190613cf4565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc91906137d3565b61160f565b6040516106ee9190613cf4565b60405180910390f35b34801561070357600080fd5b5061071e6004803603810190610719919061378a565b611627565b005b34801561072c57600080fd5b50610735611649565b6040516107429190613bb7565b60405180910390f35b610765600480360381019061076091906135f4565b61165c565b005b34801561077357600080fd5b5061078e600480360381019061078991906137d3565b611bc6565b60405161079b9190613b50565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c69190613800565b611bd8565b005b3480156107d957600080fd5b506107e2611c0f565b6040516107ef9190613bd2565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a91906135b4565b611c9d565b60405161082c9190613cf4565b60405180910390f35b34801561084157600080fd5b5061085c60048036038101906108579190613431565b611cc5565b6040516108699190613cf4565b60405180910390f35b34801561087e57600080fd5b50610887611d7e565b005b34801561089557600080fd5b506108b060048036038101906108ab91906137d3565b611d92565b005b3480156108be57600080fd5b506108d960048036038101906108d491906135b4565b611da4565b6040516108e69190613cf4565b60405180910390f35b3480156108fb57600080fd5b50610916600480360381019061091191906137d3565b611e01565b6040516109239190613cf4565b60405180910390f35b34801561093857600080fd5b50610941611e1e565b60405161094e9190613b50565b60405180910390f35b34801561096357600080fd5b5061096c611e48565b6040516109799190613bd2565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a491906137d3565b611eda565b005b3480156109b757600080fd5b506109d260048036038101906109cd91906137d3565b611eec565b6040516109df9190613cf4565b60405180910390f35b3480156109f457600080fd5b506109fd611f04565b604051610a0a9190613cf4565b60405180910390f35b610a2d6004803603810190610a2891906135f4565b611f0a565b005b348015610a3b57600080fd5b50610a566004803603810190610a519190613800565b611f1a565b005b348015610a6457600080fd5b50610a7f6004803603810190610a7a9190613574565b611f30565b005b348015610a8d57600080fd5b50610aa86004803603810190610aa391906135b4565b61203b565b604051610ab59190613cf4565b60405180910390f35b348015610aca57600080fd5b50610ae56004803603810190610ae091906137d3565b612098565b604051610af29190613cf4565b60405180910390f35b610b156004803603810190610b1091906134f1565b6120b0565b005b348015610b2357600080fd5b50610b2c612123565b604051610b399190613bd2565b60405180910390f35b348015610b4e57600080fd5b50610b696004803603810190610b6491906137d3565b6121b1565b604051610b769190613bd2565b60405180910390f35b348015610b8b57600080fd5b50610ba66004803603810190610ba191906137d3565b61225b565b604051610bb39190613bb7565b60405180910390f35b348015610bc857600080fd5b50610bd1612285565b604051610bde9190613cf4565b60405180910390f35b348015610bf357600080fd5b50610c0e6004803603810190610c0991906137d3565b61228b565b604051610c1b9190613cf4565b60405180910390f35b348015610c3057600080fd5b50610c4b6004803603810190610c46919061378a565b6122a8565b005b348015610c5957600080fd5b50610c746004803603810190610c6f9190613840565b6122ca565b005b348015610c8257600080fd5b50610c9d6004803603810190610c9891906135f4565b6122ee565b005b348015610cab57600080fd5b50610cc66004803603810190610cc19190613694565b612352565b005b348015610cd457600080fd5b50610cef6004803603810190610cea9190613840565b6123f0565b005b348015610cfd57600080fd5b50610d186004803603810190610d13919061345e565b612414565b604051610d259190613bb7565b60405180910390f35b348015610d3a57600080fd5b50610d556004803603810190610d509190613431565b6124a8565b005b348015610d6357600080fd5b50610d7e6004803603810190610d799190613647565b61252c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ddb57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e0b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610e1a6125c5565b80600e60006101000a81548160ff02191690831515021790555050565b606060028054610e4690613ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7290613ff0565b8015610ebf5780601f10610e9457610100808354040283529160200191610ebf565b820191906000526020600020905b815481529060010190602001808311610ea257829003601f168201915b5050505050905090565b6000610ed482612643565b610f0a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f5382611bc6565b90508073ffffffffffffffffffffffffffffffffffffffff16610f746126a2565b73ffffffffffffffffffffffffffffffffffffffff1614610fd757610fa081610f9b6126a2565b612414565b610fd6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601060205281600052604060002081600a81106110a857600080fd5b01600091509150505481565b6110bc6125c5565b8060156000848152602001908152602001600020819055505050565b6110e06125c5565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082600a81106111335761113261415a565b5b01819055505050565b60006111466126aa565b6001546000540303905090565b600c5481565b6000611164826126b3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111cb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806111d784612781565b915091506111ed81876111e86126a2565b6127a8565b61123957611202866111fd6126a2565b612414565b611238576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112a0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112ad86868660016127ec565b80156112b857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611386856113628888876127f2565b7c02000000000000000000000000000000000000000000000000000000001761281a565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561140e57600060018501905060006004600083815260200190815260200160002054141561140c57600054811461140b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114768686866001612845565b505050505050565b600060156000838152602001908152602001600020549050919050565b60116020528060005260406000206000915090505481565b60146020528060005260406000206000915054906101000a900460ff1681565b6114db6125c5565b60006114e5611e1e565b905060006114f161113c565b836114fc9190613f06565b90505b600a8111156115275761151382600a61284b565b600a816115209190613f06565b90506114ff565b600081111561153b5761153a828261284b565b5b505050565b6115486125c5565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161156e90613b3b565b60006040518083038185875af1925050503d80600081146115ab576040519150601f19603f3d011682016040523d82523d6000602084013e6115b0565b606091505b50509050806115be57600080fd5b50565b6115ce8282600d5461165c565b5050565b6115ed838383604051806020016040528060008152506120b0565b505050565b600060126000838152602001908152602001600020549050919050565b60136020528060005260406000206000915090505481565b61162f6125c5565b8060099080519060200190611645929190613151565b5050565b600e60009054906101000a900460ff1681565b600061166661113c565b9050600e60009054906101000a900460ff161561168257600080fd5b6000831161168f57600080fd5b600b54838261169e9190613e25565b11156116a957600080fd5b6116b1611e1e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611acc57600c54831115611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90613cd4565b60405180910390fd5b601360008381526020019081526020016000205483601260008581526020019081526020016000205461175b9190613e25565b111561179c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179390613cb4565b60405180910390fd5b8260116000848152602001908152602001600020546117bb9190613eac565b3410156117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f490613c94565b60405180910390fd5b60008214611acb57600115156014600084815260200190815260200160002060009054906101000a900460ff161515141561194157600060156000848152602001908152602001600020541415611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090613c14565b60405180910390fd5b6015600083815260200190815260200160002054601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a81106118ee576118ed61415a565b5b0154846118fb9190613e25565b111561193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390613c54565b60405180910390fd5b611aca565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a81106119945761199361415a565b5b015414156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90613c14565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082600a8110611a2857611a2761415a565b5b0154601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a8110611a7b57611a7a61415a565b5b015484611a889190613e25565b1115611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac090613c54565b60405180910390fd5b5b5b5b611ad6848461284b565b82601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a8110611b2857611b2761415a565b5b0154611b349190613e25565b601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a8110611b8557611b8461415a565b5b0181905550826012600084815260200190815260200160002054611ba99190613e25565b601260008481526020019081526020016000208190555050505050565b6000611bd1826126b3565b9050919050565b611be06125c5565b806014600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60098054611c1c90613ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4890613ff0565b8015611c955780601f10611c6a57610100808354040283529160200191611c95565b820191906000526020600020905b815481529060010190602001808311611c7857829003601f168201915b505050505081565b600f60205281600052604060002081600a8110611cb957600080fd5b01600091509150505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d2d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611d866125c5565b611d906000612869565b565b611d9a6125c5565b80600c8190555050565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082600a8110611df757611df661415a565b5b0154905092915050565b600060116000838152602001908152602001600020549050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611e5790613ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8390613ff0565b8015611ed05780601f10611ea557610100808354040283529160200191611ed0565b820191906000526020600020905b815481529060010190602001808311611eb357829003601f168201915b5050505050905090565b611ee26125c5565b80600d8190555050565b60156020528060005260406000206000915090505481565b600d5481565b611f1583838361165c565b505050565b611f226125c5565b611f2c828261292f565b5050565b8060076000611f3d6126a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fea6126a2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161202f9190613bb7565b60405180910390a35050565b6000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082600a811061208e5761208d61415a565b5b0154905092915050565b60126020528060005260406000206000915090505481565b6120bb848484611159565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211d576120e684848484612b83565b61211c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461213090613ff0565b80601f016020809104026020016040519081016040528092919081815260200182805461215c90613ff0565b80156121a95780601f1061217e576101008083540402835291602001916121a9565b820191906000526020600020905b81548152906001019060200180831161218c57829003601f168201915b505050505081565b60606121bc82612643565b6121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290613c74565b60405180910390fd5b6000612205612ce3565b905060008151116122255760405180602001604052806000815250612253565b8061222f84612d75565b600a60405160200161224393929190613b0a565b6040516020818303038152906040525b915050919050565b60006014600083815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481565b600060136000838152602001908152602001600020549050919050565b6122b06125c5565b80600a90805190602001906122c6929190613151565b5050565b6122d26125c5565b8060116000848152602001908152602001600020819055505050565b6122f66125c5565b81600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082600a81106123485761234761415a565b5b0181905550505050565b61235a6125c5565b60005b83518110156123ea5782600f600086848151811061237e5761237d61415a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a81106123d2576123d161415a565b5b018190555080806123e290614053565b91505061235d565b50505050565b6123f86125c5565b8060136000848152602001908152602001600020819055505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124b06125c5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790613bf4565b60405180910390fd5b61252981612869565b50565b6125346125c5565b60005b82829050811015612587576125748383838181106125585761255761415a565b5b905060200201602081019061256d9190613431565b600161284b565b808061257f90614053565b915050612537565b508181905060126000808152602001908152602001600020546125aa9190613e25565b60126000808152602001908152602001600020819055505050565b6125cd612ed6565b73ffffffffffffffffffffffffffffffffffffffff166125eb611e1e565b73ffffffffffffffffffffffffffffffffffffffff1614612641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263890613c34565b60405180910390fd5b565b60008161264e6126aa565b1115801561265d575060005482105b801561269b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806126c26126aa565b1161274a576000548110156127495760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612747575b600081141561273d576004600083600190039350838152602001908152602001600020549050612712565b809250505061277c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612809868684612ede565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612865828260405180602001604052806000815250612ee7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061293a836126b3565b9050600081905060008061294d86612781565b9150915084156129b65761296981846129646126a2565b6127a8565b6129b55761297e836129796126a2565b612414565b6129b4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6129c48360008860016127ec565b80156129cf57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612a7783612a34856000886127f2565b7c02000000000000000000000000000000000000000000000000000000007c0100000000000000000000000000000000000000000000000000000000171761281a565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415612aff576000600187019050600060046000838152602001908152602001600020541415612afd576000548114612afc578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b69836000886001612845565b600160008154809291906001019190505550505050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ba96126a2565b8786866040518563ffffffff1660e01b8152600401612bcb9493929190613b6b565b602060405180830381600087803b158015612be557600080fd5b505af1925050508015612c1657506040513d601f19601f82011682018060405250810190612c13919061375d565b60015b612c90573d8060008114612c46576040519150601f19603f3d011682016040523d82523d6000602084013e612c4b565b606091505b50600081511415612c88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612cf290613ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054612d1e90613ff0565b8015612d6b5780601f10612d4057610100808354040283529160200191612d6b565b820191906000526020600020905b815481529060010190602001808311612d4e57829003601f168201915b5050505050905090565b60606000821415612dbd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ed1565b600082905060005b60008214612def578080612dd890614053565b915050600a82612de89190613e7b565b9150612dc5565b60008167ffffffffffffffff811115612e0b57612e0a614189565b5b6040519080825280601f01601f191660200182016040528015612e3d5781602001600182028036833780820191505090505b5090505b60008514612eca57600182612e569190613f06565b9150600a85612e65919061409c565b6030612e719190613e25565b60f81b818381518110612e8757612e8661415a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ec39190613e7b565b9450612e41565b8093505050505b919050565b600033905090565b60009392505050565b612ef18383612f84565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612f7f57600080549050600083820390505b612f316000868380600101945086612b83565b612f67576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612f1e578160005414612f7c57600080fd5b50505b505050565b6000805490506000821415612fc5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fd260008483856127ec565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506130498361303a60008660006127f2565b61304385613141565b1761281a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146130ea57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506130af565b506000821415613126576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061313c6000848385612845565b505050565b60006001821460e11b9050919050565b82805461315d90613ff0565b90600052602060002090601f01602090048101928261317f57600085556131c6565b82601f1061319857805160ff19168380011785556131c6565b828001600101855582156131c6579182015b828111156131c55782518255916020019190600101906131aa565b5b5090506131d391906131d7565b5090565b5b808211156131f05760008160009055506001016131d8565b5090565b600061320761320284613d34565b613d0f565b9050808382526020820190508285602086028201111561322a576132296141c2565b5b60005b8581101561325a578161324088826132e8565b84526020840193506020830192505060018101905061322d565b5050509392505050565b600061327761327284613d60565b613d0f565b905082815260208101848484011115613293576132926141c7565b5b61329e848285613fae565b509392505050565b60006132b96132b484613d91565b613d0f565b9050828152602081018484840111156132d5576132d46141c7565b5b6132e0848285613fae565b509392505050565b6000813590506132f781614416565b92915050565b60008083601f840112613313576133126141bd565b5b8235905067ffffffffffffffff8111156133305761332f6141b8565b5b60208301915083602082028301111561334c5761334b6141c2565b5b9250929050565b600082601f830112613368576133676141bd565b5b81356133788482602086016131f4565b91505092915050565b6000813590506133908161442d565b92915050565b6000813590506133a581614444565b92915050565b6000815190506133ba81614444565b92915050565b600082601f8301126133d5576133d46141bd565b5b81356133e5848260208601613264565b91505092915050565b600082601f830112613403576134026141bd565b5b81356134138482602086016132a6565b91505092915050565b60008135905061342b8161445b565b92915050565b600060208284031215613447576134466141d1565b5b6000613455848285016132e8565b91505092915050565b60008060408385031215613475576134746141d1565b5b6000613483858286016132e8565b9250506020613494858286016132e8565b9150509250929050565b6000806000606084860312156134b7576134b66141d1565b5b60006134c5868287016132e8565b93505060206134d6868287016132e8565b92505060406134e78682870161341c565b9150509250925092565b6000806000806080858703121561350b5761350a6141d1565b5b6000613519878288016132e8565b945050602061352a878288016132e8565b935050604061353b8782880161341c565b925050606085013567ffffffffffffffff81111561355c5761355b6141cc565b5b613568878288016133c0565b91505092959194509250565b6000806040838503121561358b5761358a6141d1565b5b6000613599858286016132e8565b92505060206135aa85828601613381565b9150509250929050565b600080604083850312156135cb576135ca6141d1565b5b60006135d9858286016132e8565b92505060206135ea8582860161341c565b9150509250929050565b60008060006060848603121561360d5761360c6141d1565b5b600061361b868287016132e8565b935050602061362c8682870161341c565b925050604061363d8682870161341c565b9150509250925092565b6000806020838503121561365e5761365d6141d1565b5b600083013567ffffffffffffffff81111561367c5761367b6141cc565b5b613688858286016132fd565b92509250509250929050565b6000806000606084860312156136ad576136ac6141d1565b5b600084013567ffffffffffffffff8111156136cb576136ca6141cc565b5b6136d786828701613353565b93505060206136e88682870161341c565b92505060406136f98682870161341c565b9150509250925092565b600060208284031215613719576137186141d1565b5b600061372784828501613381565b91505092915050565b600060208284031215613746576137456141d1565b5b600061375484828501613396565b91505092915050565b600060208284031215613773576137726141d1565b5b6000613781848285016133ab565b91505092915050565b6000602082840312156137a05761379f6141d1565b5b600082013567ffffffffffffffff8111156137be576137bd6141cc565b5b6137ca848285016133ee565b91505092915050565b6000602082840312156137e9576137e86141d1565b5b60006137f78482850161341c565b91505092915050565b60008060408385031215613817576138166141d1565b5b60006138258582860161341c565b925050602061383685828601613381565b9150509250929050565b60008060408385031215613857576138566141d1565b5b60006138658582860161341c565b92505060206138768582860161341c565b9150509250929050565b61388981613f3a565b82525050565b61389881613f4c565b82525050565b60006138a982613dd7565b6138b38185613ded565b93506138c3818560208601613fbd565b6138cc816141d6565b840191505092915050565b60006138e282613de2565b6138ec8185613e09565b93506138fc818560208601613fbd565b613905816141d6565b840191505092915050565b600061391b82613de2565b6139258185613e1a565b9350613935818560208601613fbd565b80840191505092915050565b6000815461394e81613ff0565b6139588186613e1a565b945060018216600081146139735760018114613984576139b7565b60ff198316865281860193506139b7565b61398d85613dc2565b60005b838110156139af57815481890152600182019150602081019050613990565b838801955050505b50505092915050565b60006139cd602683613e09565b91506139d8826141e7565b604082019050919050565b60006139f0602f83613e09565b91506139fb82614236565b604082019050919050565b6000613a13602083613e09565b9150613a1e82614285565b602082019050919050565b6000613a36603d83613e09565b9150613a41826142ae565b604082019050919050565b6000613a59602f83613e09565b9150613a64826142fd565b604082019050919050565b6000613a7c601783613e09565b9150613a878261434c565b602082019050919050565b6000613a9f600083613dfe565b9150613aaa82614375565b600082019050919050565b6000613ac2602a83613e09565b9150613acd82614378565b604082019050919050565b6000613ae5602683613e09565b9150613af0826143c7565b604082019050919050565b613b0481613fa4565b82525050565b6000613b168286613910565b9150613b228285613910565b9150613b2e8284613941565b9150819050949350505050565b6000613b4682613a92565b9150819050919050565b6000602082019050613b656000830184613880565b92915050565b6000608082019050613b806000830187613880565b613b8d6020830186613880565b613b9a6040830185613afb565b8181036060830152613bac818461389e565b905095945050505050565b6000602082019050613bcc600083018461388f565b92915050565b60006020820190508181036000830152613bec81846138d7565b905092915050565b60006020820190508181036000830152613c0d816139c0565b9050919050565b60006020820190508181036000830152613c2d816139e3565b9050919050565b60006020820190508181036000830152613c4d81613a06565b9050919050565b60006020820190508181036000830152613c6d81613a29565b9050919050565b60006020820190508181036000830152613c8d81613a4c565b9050919050565b60006020820190508181036000830152613cad81613a6f565b9050919050565b60006020820190508181036000830152613ccd81613ab5565b9050919050565b60006020820190508181036000830152613ced81613ad8565b9050919050565b6000602082019050613d096000830184613afb565b92915050565b6000613d19613d2a565b9050613d258282614022565b919050565b6000604051905090565b600067ffffffffffffffff821115613d4f57613d4e614189565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d7b57613d7a614189565b5b613d84826141d6565b9050602081019050919050565b600067ffffffffffffffff821115613dac57613dab614189565b5b613db5826141d6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e3082613fa4565b9150613e3b83613fa4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e7057613e6f6140cd565b5b828201905092915050565b6000613e8682613fa4565b9150613e9183613fa4565b925082613ea157613ea06140fc565b5b828204905092915050565b6000613eb782613fa4565b9150613ec283613fa4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613efb57613efa6140cd565b5b828202905092915050565b6000613f1182613fa4565b9150613f1c83613fa4565b925082821015613f2f57613f2e6140cd565b5b828203905092915050565b6000613f4582613f84565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fdb578082015181840152602081019050613fc0565b83811115613fea576000848401525b50505050565b6000600282049050600182168061400857607f821691505b6020821081141561401c5761401b61412b565b5b50919050565b61402b826141d6565b810181811067ffffffffffffffff8211171561404a57614049614189565b5b80604052505050565b600061405e82613fa4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614091576140906140cd565b5b600182019050919050565b60006140a782613fa4565b91506140b283613fa4565b9250826140c2576140c16140fc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74207065726d697474656420746f206d696e7420647572696e672074686960008201527f732073616c657320706572696f642e0000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f457863656564656420746865206e756d626572206f66206d696e74732070657260008201527f6d697474656420666f7220746869732073616c657320706572696f642e000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f54686520707269636520697320696e636f72726563742e000000000000000000600082015250565b50565b7f546865206d696e74206e756d20686173206265656e2065786365656465642e2860008201527f4f6e20506572696f642900000000000000000000000000000000000000000000602082015250565b7f546865206d696e74206e756d20686173206265656e2065786365656465642e2860008201527f546f74616c290000000000000000000000000000000000000000000000000000602082015250565b61441f81613f3a565b811461442a57600080fd5b50565b61443681613f4c565b811461444157600080fd5b50565b61444d81613f58565b811461445857600080fd5b50565b61446481613fa4565b811461446f57600080fd5b5056fea26469706673582212205f34c99d5183a086321c3b63ed35820e0bab76b3b2f4702013877115ae772e8864736f6c63430008070033

Deployed Bytecode

0x60806040526004361061036b5760003560e01c8063715018a6116101c6578063b88d4fde116100f7578063db8963a511610095578063e0205ce41161006f578063e0205ce414610cc8578063e985e9c514610cf1578063f2fde38b14610d2e578063f356749d14610d575761036b565b8063db8963a514610c4d578063dd72ea5b14610c76578063de75135814610c9f5761036b565b8063c89cc5ce116100d1578063c89cc5ce14610b7f578063d5abeb0114610bbc578063d8d7a56114610be7578063da3ef23f14610c245761036b565b8063b88d4fde14610afb578063c668286214610b17578063c87b56dd14610b425761036b565b80639b4e0fe2116101645780639fac68cb1161013e5780639fac68cb14610a2f578063a22cb46514610a58578063a36cd80b14610a81578063a3e0a7d714610abe5761036b565b80639b4e0fe2146109ab5780639ed5c84c146109e85780639f02c81e14610a135761036b565b806384dd1883116101a057806384dd1883146108ef5780638da5cb5b1461092c57806395d89b41146109575780639821f065146109825761036b565b8063715018a6146108725780637f00c7a6146108895780638491fdd3146108b25761036b565b8063375a069a116102a05780635c975abb1161023e578063640488cc11610218578063640488cc146107a45780636c0360eb146107cd5780636c1cac4a146107f857806370a08231146108355761036b565b80635c975abb14610720578063606b63371461074b5780636352211e146107675761036b565b806342842e0e1161027a57806342842e0e1461066157806349f1f86d1461067d5780634eacf369146106ba57806355f804b3146106f75761036b565b8063375a069a146106125780633ccfd60b1461063b57806340c10f19146106455761036b565b8063159fe94a1161030d57806323b872dd116102e757806323b872dd1461053f578063250783a41461055b57806326a49e37146105985780632bd341f5146105d55761036b565b8063159fe94a146104c057806318160ddd146104e9578063239c70ae146105145761036b565b8063081812fc11610349578063081812fc14610401578063095ea7b31461043e5780630e583dd21461045a5780631433a4c0146104975761036b565b806301ffc9a71461037057806302329a29146103ad57806306fdde03146103d6575b600080fd5b34801561037c57600080fd5b5061039760048036038101906103929190613730565b610d80565b6040516103a49190613bb7565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613703565b610e12565b005b3480156103e257600080fd5b506103eb610e37565b6040516103f89190613bd2565b60405180910390f35b34801561040d57600080fd5b50610428600480360381019061042391906137d3565b610ec9565b6040516104359190613b50565b60405180910390f35b610458600480360381019061045391906135b4565b610f48565b005b34801561046657600080fd5b50610481600480360381019061047c91906135b4565b61108c565b60405161048e9190613cf4565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190613840565b6110b4565b005b3480156104cc57600080fd5b506104e760048036038101906104e291906135b4565b6110d8565b005b3480156104f557600080fd5b506104fe61113c565b60405161050b9190613cf4565b60405180910390f35b34801561052057600080fd5b50610529611153565b6040516105369190613cf4565b60405180910390f35b6105596004803603810190610554919061349e565b611159565b005b34801561056757600080fd5b50610582600480360381019061057d91906137d3565b61147e565b60405161058f9190613cf4565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba91906137d3565b61149b565b6040516105cc9190613cf4565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f791906137d3565b6114b3565b6040516106099190613bb7565b60405180910390f35b34801561061e57600080fd5b50610639600480360381019061063491906137d3565b6114d3565b005b610643611540565b005b61065f600480360381019061065a91906135b4565b6115c1565b005b61067b6004803603810190610676919061349e565b6115d2565b005b34801561068957600080fd5b506106a4600480360381019061069f91906137d3565b6115f2565b6040516106b19190613cf4565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc91906137d3565b61160f565b6040516106ee9190613cf4565b60405180910390f35b34801561070357600080fd5b5061071e6004803603810190610719919061378a565b611627565b005b34801561072c57600080fd5b50610735611649565b6040516107429190613bb7565b60405180910390f35b610765600480360381019061076091906135f4565b61165c565b005b34801561077357600080fd5b5061078e600480360381019061078991906137d3565b611bc6565b60405161079b9190613b50565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c69190613800565b611bd8565b005b3480156107d957600080fd5b506107e2611c0f565b6040516107ef9190613bd2565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a91906135b4565b611c9d565b60405161082c9190613cf4565b60405180910390f35b34801561084157600080fd5b5061085c60048036038101906108579190613431565b611cc5565b6040516108699190613cf4565b60405180910390f35b34801561087e57600080fd5b50610887611d7e565b005b34801561089557600080fd5b506108b060048036038101906108ab91906137d3565b611d92565b005b3480156108be57600080fd5b506108d960048036038101906108d491906135b4565b611da4565b6040516108e69190613cf4565b60405180910390f35b3480156108fb57600080fd5b50610916600480360381019061091191906137d3565b611e01565b6040516109239190613cf4565b60405180910390f35b34801561093857600080fd5b50610941611e1e565b60405161094e9190613b50565b60405180910390f35b34801561096357600080fd5b5061096c611e48565b6040516109799190613bd2565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a491906137d3565b611eda565b005b3480156109b757600080fd5b506109d260048036038101906109cd91906137d3565b611eec565b6040516109df9190613cf4565b60405180910390f35b3480156109f457600080fd5b506109fd611f04565b604051610a0a9190613cf4565b60405180910390f35b610a2d6004803603810190610a2891906135f4565b611f0a565b005b348015610a3b57600080fd5b50610a566004803603810190610a519190613800565b611f1a565b005b348015610a6457600080fd5b50610a7f6004803603810190610a7a9190613574565b611f30565b005b348015610a8d57600080fd5b50610aa86004803603810190610aa391906135b4565b61203b565b604051610ab59190613cf4565b60405180910390f35b348015610aca57600080fd5b50610ae56004803603810190610ae091906137d3565b612098565b604051610af29190613cf4565b60405180910390f35b610b156004803603810190610b1091906134f1565b6120b0565b005b348015610b2357600080fd5b50610b2c612123565b604051610b399190613bd2565b60405180910390f35b348015610b4e57600080fd5b50610b696004803603810190610b6491906137d3565b6121b1565b604051610b769190613bd2565b60405180910390f35b348015610b8b57600080fd5b50610ba66004803603810190610ba191906137d3565b61225b565b604051610bb39190613bb7565b60405180910390f35b348015610bc857600080fd5b50610bd1612285565b604051610bde9190613cf4565b60405180910390f35b348015610bf357600080fd5b50610c0e6004803603810190610c0991906137d3565b61228b565b604051610c1b9190613cf4565b60405180910390f35b348015610c3057600080fd5b50610c4b6004803603810190610c46919061378a565b6122a8565b005b348015610c5957600080fd5b50610c746004803603810190610c6f9190613840565b6122ca565b005b348015610c8257600080fd5b50610c9d6004803603810190610c9891906135f4565b6122ee565b005b348015610cab57600080fd5b50610cc66004803603810190610cc19190613694565b612352565b005b348015610cd457600080fd5b50610cef6004803603810190610cea9190613840565b6123f0565b005b348015610cfd57600080fd5b50610d186004803603810190610d13919061345e565b612414565b604051610d259190613bb7565b60405180910390f35b348015610d3a57600080fd5b50610d556004803603810190610d509190613431565b6124a8565b005b348015610d6357600080fd5b50610d7e6004803603810190610d799190613647565b61252c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ddb57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e0b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610e1a6125c5565b80600e60006101000a81548160ff02191690831515021790555050565b606060028054610e4690613ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7290613ff0565b8015610ebf5780601f10610e9457610100808354040283529160200191610ebf565b820191906000526020600020905b815481529060010190602001808311610ea257829003601f168201915b5050505050905090565b6000610ed482612643565b610f0a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f5382611bc6565b90508073ffffffffffffffffffffffffffffffffffffffff16610f746126a2565b73ffffffffffffffffffffffffffffffffffffffff1614610fd757610fa081610f9b6126a2565b612414565b610fd6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601060205281600052604060002081600a81106110a857600080fd5b01600091509150505481565b6110bc6125c5565b8060156000848152602001908152602001600020819055505050565b6110e06125c5565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082600a81106111335761113261415a565b5b01819055505050565b60006111466126aa565b6001546000540303905090565b600c5481565b6000611164826126b3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111cb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806111d784612781565b915091506111ed81876111e86126a2565b6127a8565b61123957611202866111fd6126a2565b612414565b611238576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112a0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112ad86868660016127ec565b80156112b857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611386856113628888876127f2565b7c02000000000000000000000000000000000000000000000000000000001761281a565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561140e57600060018501905060006004600083815260200190815260200160002054141561140c57600054811461140b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114768686866001612845565b505050505050565b600060156000838152602001908152602001600020549050919050565b60116020528060005260406000206000915090505481565b60146020528060005260406000206000915054906101000a900460ff1681565b6114db6125c5565b60006114e5611e1e565b905060006114f161113c565b836114fc9190613f06565b90505b600a8111156115275761151382600a61284b565b600a816115209190613f06565b90506114ff565b600081111561153b5761153a828261284b565b5b505050565b6115486125c5565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161156e90613b3b565b60006040518083038185875af1925050503d80600081146115ab576040519150601f19603f3d011682016040523d82523d6000602084013e6115b0565b606091505b50509050806115be57600080fd5b50565b6115ce8282600d5461165c565b5050565b6115ed838383604051806020016040528060008152506120b0565b505050565b600060126000838152602001908152602001600020549050919050565b60136020528060005260406000206000915090505481565b61162f6125c5565b8060099080519060200190611645929190613151565b5050565b600e60009054906101000a900460ff1681565b600061166661113c565b9050600e60009054906101000a900460ff161561168257600080fd5b6000831161168f57600080fd5b600b54838261169e9190613e25565b11156116a957600080fd5b6116b1611e1e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611acc57600c54831115611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90613cd4565b60405180910390fd5b601360008381526020019081526020016000205483601260008581526020019081526020016000205461175b9190613e25565b111561179c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179390613cb4565b60405180910390fd5b8260116000848152602001908152602001600020546117bb9190613eac565b3410156117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f490613c94565b60405180910390fd5b60008214611acb57600115156014600084815260200190815260200160002060009054906101000a900460ff161515141561194157600060156000848152602001908152602001600020541415611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090613c14565b60405180910390fd5b6015600083815260200190815260200160002054601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a81106118ee576118ed61415a565b5b0154846118fb9190613e25565b111561193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390613c54565b60405180910390fd5b611aca565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a81106119945761199361415a565b5b015414156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90613c14565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082600a8110611a2857611a2761415a565b5b0154601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a8110611a7b57611a7a61415a565b5b015484611a889190613e25565b1115611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac090613c54565b60405180910390fd5b5b5b5b611ad6848461284b565b82601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a8110611b2857611b2761415a565b5b0154611b349190613e25565b601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a8110611b8557611b8461415a565b5b0181905550826012600084815260200190815260200160002054611ba99190613e25565b601260008481526020019081526020016000208190555050505050565b6000611bd1826126b3565b9050919050565b611be06125c5565b806014600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60098054611c1c90613ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4890613ff0565b8015611c955780601f10611c6a57610100808354040283529160200191611c95565b820191906000526020600020905b815481529060010190602001808311611c7857829003601f168201915b505050505081565b600f60205281600052604060002081600a8110611cb957600080fd5b01600091509150505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d2d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611d866125c5565b611d906000612869565b565b611d9a6125c5565b80600c8190555050565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082600a8110611df757611df661415a565b5b0154905092915050565b600060116000838152602001908152602001600020549050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611e5790613ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8390613ff0565b8015611ed05780601f10611ea557610100808354040283529160200191611ed0565b820191906000526020600020905b815481529060010190602001808311611eb357829003601f168201915b5050505050905090565b611ee26125c5565b80600d8190555050565b60156020528060005260406000206000915090505481565b600d5481565b611f1583838361165c565b505050565b611f226125c5565b611f2c828261292f565b5050565b8060076000611f3d6126a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fea6126a2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161202f9190613bb7565b60405180910390a35050565b6000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082600a811061208e5761208d61415a565b5b0154905092915050565b60126020528060005260406000206000915090505481565b6120bb848484611159565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211d576120e684848484612b83565b61211c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461213090613ff0565b80601f016020809104026020016040519081016040528092919081815260200182805461215c90613ff0565b80156121a95780601f1061217e576101008083540402835291602001916121a9565b820191906000526020600020905b81548152906001019060200180831161218c57829003601f168201915b505050505081565b60606121bc82612643565b6121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290613c74565b60405180910390fd5b6000612205612ce3565b905060008151116122255760405180602001604052806000815250612253565b8061222f84612d75565b600a60405160200161224393929190613b0a565b6040516020818303038152906040525b915050919050565b60006014600083815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481565b600060136000838152602001908152602001600020549050919050565b6122b06125c5565b80600a90805190602001906122c6929190613151565b5050565b6122d26125c5565b8060116000848152602001908152602001600020819055505050565b6122f66125c5565b81600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082600a81106123485761234761415a565b5b0181905550505050565b61235a6125c5565b60005b83518110156123ea5782600f600086848151811061237e5761237d61415a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083600a81106123d2576123d161415a565b5b018190555080806123e290614053565b91505061235d565b50505050565b6123f86125c5565b8060136000848152602001908152602001600020819055505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124b06125c5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790613bf4565b60405180910390fd5b61252981612869565b50565b6125346125c5565b60005b82829050811015612587576125748383838181106125585761255761415a565b5b905060200201602081019061256d9190613431565b600161284b565b808061257f90614053565b915050612537565b508181905060126000808152602001908152602001600020546125aa9190613e25565b60126000808152602001908152602001600020819055505050565b6125cd612ed6565b73ffffffffffffffffffffffffffffffffffffffff166125eb611e1e565b73ffffffffffffffffffffffffffffffffffffffff1614612641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263890613c34565b60405180910390fd5b565b60008161264e6126aa565b1115801561265d575060005482105b801561269b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806126c26126aa565b1161274a576000548110156127495760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612747575b600081141561273d576004600083600190039350838152602001908152602001600020549050612712565b809250505061277c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612809868684612ede565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612865828260405180602001604052806000815250612ee7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061293a836126b3565b9050600081905060008061294d86612781565b9150915084156129b65761296981846129646126a2565b6127a8565b6129b55761297e836129796126a2565b612414565b6129b4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6129c48360008860016127ec565b80156129cf57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612a7783612a34856000886127f2565b7c02000000000000000000000000000000000000000000000000000000007c0100000000000000000000000000000000000000000000000000000000171761281a565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415612aff576000600187019050600060046000838152602001908152602001600020541415612afd576000548114612afc578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b69836000886001612845565b600160008154809291906001019190505550505050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ba96126a2565b8786866040518563ffffffff1660e01b8152600401612bcb9493929190613b6b565b602060405180830381600087803b158015612be557600080fd5b505af1925050508015612c1657506040513d601f19601f82011682018060405250810190612c13919061375d565b60015b612c90573d8060008114612c46576040519150601f19603f3d011682016040523d82523d6000602084013e612c4b565b606091505b50600081511415612c88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612cf290613ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054612d1e90613ff0565b8015612d6b5780601f10612d4057610100808354040283529160200191612d6b565b820191906000526020600020905b815481529060010190602001808311612d4e57829003601f168201915b5050505050905090565b60606000821415612dbd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ed1565b600082905060005b60008214612def578080612dd890614053565b915050600a82612de89190613e7b565b9150612dc5565b60008167ffffffffffffffff811115612e0b57612e0a614189565b5b6040519080825280601f01601f191660200182016040528015612e3d5781602001600182028036833780820191505090505b5090505b60008514612eca57600182612e569190613f06565b9150600a85612e65919061409c565b6030612e719190613e25565b60f81b818381518110612e8757612e8661415a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ec39190613e7b565b9450612e41565b8093505050505b919050565b600033905090565b60009392505050565b612ef18383612f84565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612f7f57600080549050600083820390505b612f316000868380600101945086612b83565b612f67576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612f1e578160005414612f7c57600080fd5b50505b505050565b6000805490506000821415612fc5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fd260008483856127ec565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506130498361303a60008660006127f2565b61304385613141565b1761281a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146130ea57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506130af565b506000821415613126576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061313c6000848385612845565b505050565b60006001821460e11b9050919050565b82805461315d90613ff0565b90600052602060002090601f01602090048101928261317f57600085556131c6565b82601f1061319857805160ff19168380011785556131c6565b828001600101855582156131c6579182015b828111156131c55782518255916020019190600101906131aa565b5b5090506131d391906131d7565b5090565b5b808211156131f05760008160009055506001016131d8565b5090565b600061320761320284613d34565b613d0f565b9050808382526020820190508285602086028201111561322a576132296141c2565b5b60005b8581101561325a578161324088826132e8565b84526020840193506020830192505060018101905061322d565b5050509392505050565b600061327761327284613d60565b613d0f565b905082815260208101848484011115613293576132926141c7565b5b61329e848285613fae565b509392505050565b60006132b96132b484613d91565b613d0f565b9050828152602081018484840111156132d5576132d46141c7565b5b6132e0848285613fae565b509392505050565b6000813590506132f781614416565b92915050565b60008083601f840112613313576133126141bd565b5b8235905067ffffffffffffffff8111156133305761332f6141b8565b5b60208301915083602082028301111561334c5761334b6141c2565b5b9250929050565b600082601f830112613368576133676141bd565b5b81356133788482602086016131f4565b91505092915050565b6000813590506133908161442d565b92915050565b6000813590506133a581614444565b92915050565b6000815190506133ba81614444565b92915050565b600082601f8301126133d5576133d46141bd565b5b81356133e5848260208601613264565b91505092915050565b600082601f830112613403576134026141bd565b5b81356134138482602086016132a6565b91505092915050565b60008135905061342b8161445b565b92915050565b600060208284031215613447576134466141d1565b5b6000613455848285016132e8565b91505092915050565b60008060408385031215613475576134746141d1565b5b6000613483858286016132e8565b9250506020613494858286016132e8565b9150509250929050565b6000806000606084860312156134b7576134b66141d1565b5b60006134c5868287016132e8565b93505060206134d6868287016132e8565b92505060406134e78682870161341c565b9150509250925092565b6000806000806080858703121561350b5761350a6141d1565b5b6000613519878288016132e8565b945050602061352a878288016132e8565b935050604061353b8782880161341c565b925050606085013567ffffffffffffffff81111561355c5761355b6141cc565b5b613568878288016133c0565b91505092959194509250565b6000806040838503121561358b5761358a6141d1565b5b6000613599858286016132e8565b92505060206135aa85828601613381565b9150509250929050565b600080604083850312156135cb576135ca6141d1565b5b60006135d9858286016132e8565b92505060206135ea8582860161341c565b9150509250929050565b60008060006060848603121561360d5761360c6141d1565b5b600061361b868287016132e8565b935050602061362c8682870161341c565b925050604061363d8682870161341c565b9150509250925092565b6000806020838503121561365e5761365d6141d1565b5b600083013567ffffffffffffffff81111561367c5761367b6141cc565b5b613688858286016132fd565b92509250509250929050565b6000806000606084860312156136ad576136ac6141d1565b5b600084013567ffffffffffffffff8111156136cb576136ca6141cc565b5b6136d786828701613353565b93505060206136e88682870161341c565b92505060406136f98682870161341c565b9150509250925092565b600060208284031215613719576137186141d1565b5b600061372784828501613381565b91505092915050565b600060208284031215613746576137456141d1565b5b600061375484828501613396565b91505092915050565b600060208284031215613773576137726141d1565b5b6000613781848285016133ab565b91505092915050565b6000602082840312156137a05761379f6141d1565b5b600082013567ffffffffffffffff8111156137be576137bd6141cc565b5b6137ca848285016133ee565b91505092915050565b6000602082840312156137e9576137e86141d1565b5b60006137f78482850161341c565b91505092915050565b60008060408385031215613817576138166141d1565b5b60006138258582860161341c565b925050602061383685828601613381565b9150509250929050565b60008060408385031215613857576138566141d1565b5b60006138658582860161341c565b92505060206138768582860161341c565b9150509250929050565b61388981613f3a565b82525050565b61389881613f4c565b82525050565b60006138a982613dd7565b6138b38185613ded565b93506138c3818560208601613fbd565b6138cc816141d6565b840191505092915050565b60006138e282613de2565b6138ec8185613e09565b93506138fc818560208601613fbd565b613905816141d6565b840191505092915050565b600061391b82613de2565b6139258185613e1a565b9350613935818560208601613fbd565b80840191505092915050565b6000815461394e81613ff0565b6139588186613e1a565b945060018216600081146139735760018114613984576139b7565b60ff198316865281860193506139b7565b61398d85613dc2565b60005b838110156139af57815481890152600182019150602081019050613990565b838801955050505b50505092915050565b60006139cd602683613e09565b91506139d8826141e7565b604082019050919050565b60006139f0602f83613e09565b91506139fb82614236565b604082019050919050565b6000613a13602083613e09565b9150613a1e82614285565b602082019050919050565b6000613a36603d83613e09565b9150613a41826142ae565b604082019050919050565b6000613a59602f83613e09565b9150613a64826142fd565b604082019050919050565b6000613a7c601783613e09565b9150613a878261434c565b602082019050919050565b6000613a9f600083613dfe565b9150613aaa82614375565b600082019050919050565b6000613ac2602a83613e09565b9150613acd82614378565b604082019050919050565b6000613ae5602683613e09565b9150613af0826143c7565b604082019050919050565b613b0481613fa4565b82525050565b6000613b168286613910565b9150613b228285613910565b9150613b2e8284613941565b9150819050949350505050565b6000613b4682613a92565b9150819050919050565b6000602082019050613b656000830184613880565b92915050565b6000608082019050613b806000830187613880565b613b8d6020830186613880565b613b9a6040830185613afb565b8181036060830152613bac818461389e565b905095945050505050565b6000602082019050613bcc600083018461388f565b92915050565b60006020820190508181036000830152613bec81846138d7565b905092915050565b60006020820190508181036000830152613c0d816139c0565b9050919050565b60006020820190508181036000830152613c2d816139e3565b9050919050565b60006020820190508181036000830152613c4d81613a06565b9050919050565b60006020820190508181036000830152613c6d81613a29565b9050919050565b60006020820190508181036000830152613c8d81613a4c565b9050919050565b60006020820190508181036000830152613cad81613a6f565b9050919050565b60006020820190508181036000830152613ccd81613ab5565b9050919050565b60006020820190508181036000830152613ced81613ad8565b9050919050565b6000602082019050613d096000830184613afb565b92915050565b6000613d19613d2a565b9050613d258282614022565b919050565b6000604051905090565b600067ffffffffffffffff821115613d4f57613d4e614189565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d7b57613d7a614189565b5b613d84826141d6565b9050602081019050919050565b600067ffffffffffffffff821115613dac57613dab614189565b5b613db5826141d6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e3082613fa4565b9150613e3b83613fa4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e7057613e6f6140cd565b5b828201905092915050565b6000613e8682613fa4565b9150613e9183613fa4565b925082613ea157613ea06140fc565b5b828204905092915050565b6000613eb782613fa4565b9150613ec283613fa4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613efb57613efa6140cd565b5b828202905092915050565b6000613f1182613fa4565b9150613f1c83613fa4565b925082821015613f2f57613f2e6140cd565b5b828203905092915050565b6000613f4582613f84565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fdb578082015181840152602081019050613fc0565b83811115613fea576000848401525b50505050565b6000600282049050600182168061400857607f821691505b6020821081141561401c5761401b61412b565b5b50919050565b61402b826141d6565b810181811067ffffffffffffffff8211171561404a57614049614189565b5b80604052505050565b600061405e82613fa4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614091576140906140cd565b5b600182019050919050565b60006140a782613fa4565b91506140b283613fa4565b9250826140c2576140c16140fc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74207065726d697474656420746f206d696e7420647572696e672074686960008201527f732073616c657320706572696f642e0000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f457863656564656420746865206e756d626572206f66206d696e74732070657260008201527f6d697474656420666f7220746869732073616c657320706572696f642e000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f54686520707269636520697320696e636f72726563742e000000000000000000600082015250565b50565b7f546865206d696e74206e756d20686173206265656e2065786365656465642e2860008201527f4f6e20506572696f642900000000000000000000000000000000000000000000602082015250565b7f546865206d696e74206e756d20686173206265656e2065786365656465642e2860008201527f546f74616c290000000000000000000000000000000000000000000000000000602082015250565b61441f81613f3a565b811461442a57600080fd5b50565b61443681613f4c565b811461444157600080fd5b50565b61444d81613f58565b811461445857600080fd5b50565b61446481613fa4565b811461446f57600080fd5b5056fea26469706673582212205f34c99d5183a086321c3b63ed35820e0bab76b3b2f4702013877115ae772e8864736f6c63430008070033

Deployed Bytecode Sourcemap

194:7928:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5664:77:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10039:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;579:46:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6432:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7024:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;388:32:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5245:132:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;669:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;824:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7785:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7437:187;;;:::i;:::-;;1562:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22758:187:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4832:138:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;769:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5404:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;461:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1846:1916;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11391:150:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6281:145:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;280:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;526:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;5985:120:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4516:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4393:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10208:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5747::2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;872:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;426:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1690:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7630:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4676:150:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;712:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23526:396:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;307:37:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3768:619;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5116:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;350:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4976:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5512:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5855:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6598:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6768:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6111:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17282:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7172:259:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9155:630:3;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;5664:77:2:-;1094:13:0;:11;:13::i;:::-;5728:6:2::1;5719;;:15;;;;;;;;;;;;;;;;;;5664:77:::0;:::o;10039:98:3:-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;579:46:2:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6432:160::-;1094:13:0;:11;:13::i;:::-;6568:17:2::1;6536:16;:29;6553:11;6536:29;;;;;;;;;;;:49;;;;6432:160:::0;;:::o;7024:142::-;1094:13:0;:11;:13::i;:::-;7158:1:2::1;7124:11;:18;7136:5;7124:18;;;;;;;;;;;;;;;7143:11;7124:31;;;;;;;:::i;:::-;;;:35;;;;7024:142:::0;;:::o;5894:317:3:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;388:32:2:-;;;;:::o;19903:2764:3:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;5245:132:2:-;5315:7;5341:16;:29;5358:11;5341:29;;;;;;;;;;;;5334:36;;5245:132;;;:::o;669:37::-;;;;;;;;;;;;;;;;;:::o;824:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;7785:335::-;1094:13:0;:11;:13::i;:::-;7853:12:2::1;7868:7;:5;:7::i;:::-;7853:22;;7886:16;7920:13;:11;:13::i;:::-;7905:12;:28;;;;:::i;:::-;7886:47;;7943:94;7961:2;7950:8;:13;7943:94;;;7979:19;7989:4;7995:2;7979:9;:19::i;:::-;8024:2;8012:14;;;;;:::i;:::-;;;7943:94;;;8061:1;8050:8;:12;8046:68;;;8078:25;8088:4;8094:8;8078:9;:25::i;:::-;8046:68;7843:277;;7785:335:::0;:::o;7437:187::-;1094:13:0;:11;:13::i;:::-;7493:12:2::1;7519:10;7511:24;;7556:21;7511:80;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7492:99;;;7609:7;7601:16;;;::::0;::::1;;7482:142;7437:187::o:0;1562:122::-;1635:42;1648:3;1653:11;1666:10;;1635:12;:42::i;:::-;1562:122;;:::o;22758:187:3:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;4832:138:2:-;4905:7;4931:19;:32;4951:11;4931:32;;;;;;;;;;;;4924:39;;4832:138;;;:::o;769:49::-;;;;;;;;;;;;;;;;;:::o;5404:102::-;1094:13:0;:11;:13::i;:::-;5488:11:2::1;5478:7;:21;;;;;;;;;;;;:::i;:::-;;5404:102:::0;:::o;461:26::-;;;;;;;;;;;;;:::o;1846:1916::-;1948:14;1965:13;:11;:13::i;:::-;1948:30;;1997:6;;;;;;;;;;;1996:7;1988:16;;;;;;2036:1;2022:11;:15;2014:24;;;;;;2080:9;;2065:11;2056:6;:20;;;;:::i;:::-;:33;;2048:42;;;;;;2119:7;:5;:7::i;:::-;2105:21;;:10;:21;;;2101:1410;;2165:13;;2150:11;:28;;2142:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:17;:30;2311:11;2293:30;;;;;;;;;;;;2278:11;2243:19;:32;2263:11;2243:32;;;;;;;;;;;;:46;;;;:::i;:::-;:80;;2235:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;2426:11;2405:5;:18;2411:11;2405:18;;;;;;;;;;;;:32;;;;:::i;:::-;2392:9;:45;;2384:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;2507:1;2492:11;:16;2489:1012;;2563:4;2533:34;;:13;:26;2547:11;2533:26;;;;;;;;;;;;;;;;;;;;;:34;;;2529:958;;;2663:1;2630:16;:29;2647:11;2630:29;;;;;;;;;;;;:34;2627:145;;;2692:57;;;;;;;;;;:::i;:::-;;;;;;;;2627:145;2848:16;:29;2865:11;2848:29;;;;;;;;;;;;2810:10;:22;2821:10;2810:22;;;;;;;;;;;;;;;2833:11;2810:35;;;;;;;:::i;:::-;;;;2796:11;:49;;;;:::i;:::-;:81;2793:206;;;2905:71;;;;;;;;;;:::i;:::-;;;;;;;;2793:206;2529:958;;;3126:1;3086:11;:23;3098:10;3086:23;;;;;;;;;;;;;;;3110:11;3086:36;;;;;;;:::i;:::-;;;;:41;3083:152;;;3155:57;;;;;;;;;;:::i;:::-;;;;;;;;3083:152;3311:11;:23;3323:10;3311:23;;;;;;;;;;;;;;;3335:11;3311:36;;;;;;;:::i;:::-;;;;3273:10;:22;3284:10;3273:22;;;;;;;;;;;;;;;3296:11;3273:35;;;;;;;:::i;:::-;;;;3259:11;:49;;;;:::i;:::-;:88;3256:213;;;3375:71;;;;;;;;;;:::i;:::-;;;;;;;;3256:213;2529:958;2489:1012;2101:1410;3554:27;3564:3;3569:11;3554:9;:27::i;:::-;3653:11;3622:10;:15;3633:3;3622:15;;;;;;;;;;;;;;;3638:11;3622:28;;;;;;;:::i;:::-;;;;:42;;;;:::i;:::-;3591:10;:15;3602:3;3591:15;;;;;;;;;;;;;;;3607:11;3591:28;;;;;;;:::i;:::-;;;:73;;;;3744:11;3709:19;:32;3729:11;3709:32;;;;;;;;;;;;:46;;;;:::i;:::-;3674:19;:32;3694:11;3674:32;;;;;;;;;;;:81;;;;1938:1824;1846:1916;;;:::o;11391:150:3:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;6281:145:2:-;1094:13:0;:11;:13::i;:::-;6405:14:2::1;6376:13;:26;6390:11;6376:26;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;6281:145:::0;;:::o;280:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;526:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7045:230:3:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;5985:120:2:-;1094:13:0;:11;:13::i;:::-;6081:17:2::1;6065:13;:33;;;;5985:120:::0;:::o;4516:154::-;4606:7;4632:11;:18;4644:5;4632:18;;;;;;;;;;;;;;;4651:11;4632:31;;;;;;;:::i;:::-;;;;4625:38;;4516:154;;;;:::o;4393:117::-;4460:7;4485:5;:18;4491:11;4485:18;;;;;;;;;;;;4478:25;;4393:117;;;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;10208:102:3:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;5747::2:-;1094:13:0;:11;:13::i;:::-;5831:11:2::1;5818:10;:24;;;;5747:102:::0;:::o;872:48::-;;;;;;;;;;;;;;;;;:::o;426:29::-;;;;:::o;1690:150::-;1790:43;1803:3;1808:11;1821;1790:12;:43::i;:::-;1690:150;;;:::o;7630:114::-;1094:13:0;:11;:13::i;:::-;7708:29:2::1;7714:7;7723:13;7708:5;:29::i;:::-;7630:114:::0;;:::o;16901:231:3:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;4676:150:2:-;4763:7;4789:10;:17;4800:5;4789:17;;;;;;;;;;;;;;;4807:11;4789:30;;;;;;;:::i;:::-;;;;4782:37;;4676:150;;;;:::o;712:51::-;;;;;;;;;;;;;;;;;:::o;23526:396:3:-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;307:37:2:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3768:619::-;3881:13;3931:16;3939:7;3931;:16::i;:::-;3910:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;4031:28;4062:10;:8;:10::i;:::-;4031:41;;4132:1;4107:14;4101:28;:32;:279;;;;;;;;;;;;;;;;;4222:14;4262:18;:7;:16;:18::i;:::-;4306:13;4180:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4101:279;4082:298;;;3768:619;;;:::o;5116:123::-;5183:4;5206:13;:26;5220:11;5206:26;;;;;;;;;;;;;;;;;;;;;5199:33;;5116:123;;;:::o;350:32::-;;;;:::o;4976:134::-;5047:7;5073:17;:30;5091:11;5073:30;;;;;;;;;;;;5066:37;;4976:134;;;:::o;5512:146::-;1094:13:0;:11;:13::i;:::-;5634:17:2::1;5618:13;:33;;;;;;;;;;;;:::i;:::-;;5512:146:::0;:::o;5855:124::-;1094:13:0;:11;:13::i;:::-;5966:6:2::1;5945:5;:18;5951:11;5945:18;;;;;;;;;;;:27;;;;5855:124:::0;;:::o;6598:164::-;1094:13:0;:11;:13::i;:::-;6747:8:2::1;6713:11;:18;6725:5;6713:18;;;;;;;;;;;;;;;6732:11;6713:31;;;;;;;:::i;:::-;;;:42;;;;6598:164:::0;;;:::o;6768:250::-;1094:13:0;:11;:13::i;:::-;6902:9:2::1;6897:115;6921:6;:13;6917:1;:17;6897:115;;;6993:8;6955:11;:22;6967:6;6974:1;6967:9;;;;;;;;:::i;:::-;;;;;;;;6955:22;;;;;;;;;;;;;;;6978:11;6955:35;;;;;;;:::i;:::-;;;:46;;;;6936:3;;;;;:::i;:::-;;;;6897:115;;;;6768:250:::0;;;:::o;6111:164::-;1094:13:0;:11;:13::i;:::-;6250:18:2::1;6217:17;:30;6235:11;6217:30;;;;;;;;;;;:51;;;;6111:164:::0;;:::o;17282:162:3:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;7172:259:2:-;1094:13:0;:11;:13::i;:::-;7256:6:2::1;7251:97;7272:10;;:17;;7268:1;:21;7251:97;;;7310:27;7320:10;;7331:1;7320:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;7335:1;7310:9;:27::i;:::-;7291:3;;;;;:::i;:::-;;;;7251:97;;;;7407:10;;:17;;7382:19;:22;7402:1:::0;7382:22:::1;;;;;;;;;;;;:42;;;;:::i;:::-;7357:19;:22;7377:1:::0;7357:22:::1;;;;;;;;;;;:67;;;;7172:259:::0;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;17693:277:3:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;1440:99:2:-;1505:7;1531:1;1524:8;;1440:99;:::o;12515:1249:3:-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;;13510:111;13527:1;13517:6;:11;13510:111;;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;33423:110::-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;34095:3015:3:-;34174:27;34204;34223:7;34204:18;:27::i;:::-;34174:57;;34242:12;34273:19;34242:52;;34306:27;34335:23;34362:35;34389:7;34362:26;:35::i;:::-;34305:92;;;;34412:13;34408:312;;;34531:68;34556:15;34573:4;34579:19;:17;:19::i;:::-;34531:24;:68::i;:::-;34526:183;;34622:43;34639:4;34645:19;:17;:19::i;:::-;34622:16;:43::i;:::-;34617:92;;34674:35;;;;;;;;;;;;;;34617:92;34526:183;34408:312;34730:51;34752:4;34766:1;34770:7;34779:1;34730:21;:51::i;:::-;34870:15;34867:157;;;35008:1;34987:19;34980:30;34867:157;35672:1;1619:3;35642:1;:26;;35641:32;35613:18;:24;35632:4;35613:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;35933:173;35969:4;36039:53;36054:4;36068:1;36072:19;36039:14;:53::i;:::-;2392:8;2118;35992:43;35991:101;35933:18;:173::i;:::-;35904:17;:26;35922:7;35904:26;;;;;;;;;;;:202;;;;36274:1;2392:8;36223:19;:47;:52;36219:617;;;36295:19;36327:1;36317:7;:11;36295:33;;36482:1;36448:17;:30;36466:11;36448:30;;;;;;;;;;;;:35;36444:378;;;36584:13;;36569:11;:28;36565:239;;36762:19;36729:17;:30;36747:11;36729:30;;;;;;;;;;;:52;;;;36565:239;36444:378;36277:559;36219:617;36888:7;36884:1;36861:35;;36870:4;36861:35;;;;;;;;;;;;36906:50;36927:4;36941:1;36945:7;36954:1;36906:20;:50::i;:::-;37079:12;;:14;;;;;;;;;;;;;34164:2946;;;;34095:3015;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;1328:106:2:-;1388:13;1420:7;1413:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1328:106;:::o;275:703:5:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;38475:143:3:-;38608:6;38475:143;;;;;:::o;32675:669::-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;27091:2902::-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;14837:318::-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:6:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:568::-;1821:8;1831:6;1881:3;1874:4;1866:6;1862:17;1858:27;1848:122;;1889:79;;:::i;:::-;1848:122;2002:6;1989:20;1979:30;;2032:18;2024:6;2021:30;2018:117;;;2054:79;;:::i;:::-;2018:117;2168:4;2160:6;2156:17;2144:29;;2222:3;2214:4;2206:6;2202:17;2192:8;2188:32;2185:41;2182:128;;;2229:79;;:::i;:::-;2182:128;1748:568;;;;;:::o;2339:370::-;2410:5;2459:3;2452:4;2444:6;2440:17;2436:27;2426:122;;2467:79;;:::i;:::-;2426:122;2584:6;2571:20;2609:94;2699:3;2691:6;2684:4;2676:6;2672:17;2609:94;:::i;:::-;2600:103;;2416:293;2339:370;;;;:::o;2715:133::-;2758:5;2796:6;2783:20;2774:29;;2812:30;2836:5;2812:30;:::i;:::-;2715:133;;;;:::o;2854:137::-;2899:5;2937:6;2924:20;2915:29;;2953:32;2979:5;2953:32;:::i;:::-;2854:137;;;;:::o;2997:141::-;3053:5;3084:6;3078:13;3069:22;;3100:32;3126:5;3100:32;:::i;:::-;2997:141;;;;:::o;3157:338::-;3212:5;3261:3;3254:4;3246:6;3242:17;3238:27;3228:122;;3269:79;;:::i;:::-;3228:122;3386:6;3373:20;3411:78;3485:3;3477:6;3470:4;3462:6;3458:17;3411:78;:::i;:::-;3402:87;;3218:277;3157:338;;;;:::o;3515:340::-;3571:5;3620:3;3613:4;3605:6;3601:17;3597:27;3587:122;;3628:79;;:::i;:::-;3587:122;3745:6;3732:20;3770:79;3845:3;3837:6;3830:4;3822:6;3818:17;3770:79;:::i;:::-;3761:88;;3577:278;3515:340;;;;:::o;3861:139::-;3907:5;3945:6;3932:20;3923:29;;3961:33;3988:5;3961:33;:::i;:::-;3861:139;;;;:::o;4006:329::-;4065:6;4114:2;4102:9;4093:7;4089:23;4085:32;4082:119;;;4120:79;;:::i;:::-;4082:119;4240:1;4265:53;4310:7;4301:6;4290:9;4286:22;4265:53;:::i;:::-;4255:63;;4211:117;4006:329;;;;:::o;4341:474::-;4409:6;4417;4466:2;4454:9;4445:7;4441:23;4437:32;4434:119;;;4472:79;;:::i;:::-;4434:119;4592:1;4617:53;4662:7;4653:6;4642:9;4638:22;4617:53;:::i;:::-;4607:63;;4563:117;4719:2;4745:53;4790:7;4781:6;4770:9;4766:22;4745:53;:::i;:::-;4735:63;;4690:118;4341:474;;;;;:::o;4821:619::-;4898:6;4906;4914;4963:2;4951:9;4942:7;4938:23;4934:32;4931:119;;;4969:79;;:::i;:::-;4931:119;5089:1;5114:53;5159:7;5150:6;5139:9;5135:22;5114:53;:::i;:::-;5104:63;;5060:117;5216:2;5242:53;5287:7;5278:6;5267:9;5263:22;5242:53;:::i;:::-;5232:63;;5187:118;5344:2;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5315:118;4821:619;;;;;:::o;5446:943::-;5541:6;5549;5557;5565;5614:3;5602:9;5593:7;5589:23;5585:33;5582:120;;;5621:79;;:::i;:::-;5582:120;5741:1;5766:53;5811:7;5802:6;5791:9;5787:22;5766:53;:::i;:::-;5756:63;;5712:117;5868:2;5894:53;5939:7;5930:6;5919:9;5915:22;5894:53;:::i;:::-;5884:63;;5839:118;5996:2;6022:53;6067:7;6058:6;6047:9;6043:22;6022:53;:::i;:::-;6012:63;;5967:118;6152:2;6141:9;6137:18;6124:32;6183:18;6175:6;6172:30;6169:117;;;6205:79;;:::i;:::-;6169:117;6310:62;6364:7;6355:6;6344:9;6340:22;6310:62;:::i;:::-;6300:72;;6095:287;5446:943;;;;;;;:::o;6395:468::-;6460:6;6468;6517:2;6505:9;6496:7;6492:23;6488:32;6485:119;;;6523:79;;:::i;:::-;6485:119;6643:1;6668:53;6713:7;6704:6;6693:9;6689:22;6668:53;:::i;:::-;6658:63;;6614:117;6770:2;6796:50;6838:7;6829:6;6818:9;6814:22;6796:50;:::i;:::-;6786:60;;6741:115;6395:468;;;;;:::o;6869:474::-;6937:6;6945;6994:2;6982:9;6973:7;6969:23;6965:32;6962:119;;;7000:79;;:::i;:::-;6962:119;7120:1;7145:53;7190:7;7181:6;7170:9;7166:22;7145:53;:::i;:::-;7135:63;;7091:117;7247:2;7273:53;7318:7;7309:6;7298:9;7294:22;7273:53;:::i;:::-;7263:63;;7218:118;6869:474;;;;;:::o;7349:619::-;7426:6;7434;7442;7491:2;7479:9;7470:7;7466:23;7462:32;7459:119;;;7497:79;;:::i;:::-;7459:119;7617:1;7642:53;7687:7;7678:6;7667:9;7663:22;7642:53;:::i;:::-;7632:63;;7588:117;7744:2;7770:53;7815:7;7806:6;7795:9;7791:22;7770:53;:::i;:::-;7760:63;;7715:118;7872:2;7898:53;7943:7;7934:6;7923:9;7919:22;7898:53;:::i;:::-;7888:63;;7843:118;7349:619;;;;;:::o;7974:559::-;8060:6;8068;8117:2;8105:9;8096:7;8092:23;8088:32;8085:119;;;8123:79;;:::i;:::-;8085:119;8271:1;8260:9;8256:17;8243:31;8301:18;8293:6;8290:30;8287:117;;;8323:79;;:::i;:::-;8287:117;8436:80;8508:7;8499:6;8488:9;8484:22;8436:80;:::i;:::-;8418:98;;;;8214:312;7974:559;;;;;:::o;8539:829::-;8641:6;8649;8657;8706:2;8694:9;8685:7;8681:23;8677:32;8674:119;;;8712:79;;:::i;:::-;8674:119;8860:1;8849:9;8845:17;8832:31;8890:18;8882:6;8879:30;8876:117;;;8912:79;;:::i;:::-;8876:117;9017:78;9087:7;9078:6;9067:9;9063:22;9017:78;:::i;:::-;9007:88;;8803:302;9144:2;9170:53;9215:7;9206:6;9195:9;9191:22;9170:53;:::i;:::-;9160:63;;9115:118;9272:2;9298:53;9343:7;9334:6;9323:9;9319:22;9298:53;:::i;:::-;9288:63;;9243:118;8539:829;;;;;:::o;9374:323::-;9430:6;9479:2;9467:9;9458:7;9454:23;9450:32;9447:119;;;9485:79;;:::i;:::-;9447:119;9605:1;9630:50;9672:7;9663:6;9652:9;9648:22;9630:50;:::i;:::-;9620:60;;9576:114;9374:323;;;;:::o;9703:327::-;9761:6;9810:2;9798:9;9789:7;9785:23;9781:32;9778:119;;;9816:79;;:::i;:::-;9778:119;9936:1;9961:52;10005:7;9996:6;9985:9;9981:22;9961:52;:::i;:::-;9951:62;;9907:116;9703:327;;;;:::o;10036:349::-;10105:6;10154:2;10142:9;10133:7;10129:23;10125:32;10122:119;;;10160:79;;:::i;:::-;10122:119;10280:1;10305:63;10360:7;10351:6;10340:9;10336:22;10305:63;:::i;:::-;10295:73;;10251:127;10036:349;;;;:::o;10391:509::-;10460:6;10509:2;10497:9;10488:7;10484:23;10480:32;10477:119;;;10515:79;;:::i;:::-;10477:119;10663:1;10652:9;10648:17;10635:31;10693:18;10685:6;10682:30;10679:117;;;10715:79;;:::i;:::-;10679:117;10820:63;10875:7;10866:6;10855:9;10851:22;10820:63;:::i;:::-;10810:73;;10606:287;10391:509;;;;:::o;10906:329::-;10965:6;11014:2;11002:9;10993:7;10989:23;10985:32;10982:119;;;11020:79;;:::i;:::-;10982:119;11140:1;11165:53;11210:7;11201:6;11190:9;11186:22;11165:53;:::i;:::-;11155:63;;11111:117;10906:329;;;;:::o;11241:468::-;11306:6;11314;11363:2;11351:9;11342:7;11338:23;11334:32;11331:119;;;11369:79;;:::i;:::-;11331:119;11489:1;11514:53;11559:7;11550:6;11539:9;11535:22;11514:53;:::i;:::-;11504:63;;11460:117;11616:2;11642:50;11684:7;11675:6;11664:9;11660:22;11642:50;:::i;:::-;11632:60;;11587:115;11241:468;;;;;:::o;11715:474::-;11783:6;11791;11840:2;11828:9;11819:7;11815:23;11811:32;11808:119;;;11846:79;;:::i;:::-;11808:119;11966:1;11991:53;12036:7;12027:6;12016:9;12012:22;11991:53;:::i;:::-;11981:63;;11937:117;12093:2;12119:53;12164:7;12155:6;12144:9;12140:22;12119:53;:::i;:::-;12109:63;;12064:118;11715:474;;;;;:::o;12195:118::-;12282:24;12300:5;12282:24;:::i;:::-;12277:3;12270:37;12195:118;;:::o;12319:109::-;12400:21;12415:5;12400:21;:::i;:::-;12395:3;12388:34;12319:109;;:::o;12434:360::-;12520:3;12548:38;12580:5;12548:38;:::i;:::-;12602:70;12665:6;12660:3;12602:70;:::i;:::-;12595:77;;12681:52;12726:6;12721:3;12714:4;12707:5;12703:16;12681:52;:::i;:::-;12758:29;12780:6;12758:29;:::i;:::-;12753:3;12749:39;12742:46;;12524:270;12434:360;;;;:::o;12800:364::-;12888:3;12916:39;12949:5;12916:39;:::i;:::-;12971:71;13035:6;13030:3;12971:71;:::i;:::-;12964:78;;13051:52;13096:6;13091:3;13084:4;13077:5;13073:16;13051:52;:::i;:::-;13128:29;13150:6;13128:29;:::i;:::-;13123:3;13119:39;13112:46;;12892:272;12800:364;;;;:::o;13170:377::-;13276:3;13304:39;13337:5;13304:39;:::i;:::-;13359:89;13441:6;13436:3;13359:89;:::i;:::-;13352:96;;13457:52;13502:6;13497:3;13490:4;13483:5;13479:16;13457:52;:::i;:::-;13534:6;13529:3;13525:16;13518:23;;13280:267;13170:377;;;;:::o;13577:845::-;13680:3;13717:5;13711:12;13746:36;13772:9;13746:36;:::i;:::-;13798:89;13880:6;13875:3;13798:89;:::i;:::-;13791:96;;13918:1;13907:9;13903:17;13934:1;13929:137;;;;14080:1;14075:341;;;;13896:520;;13929:137;14013:4;14009:9;13998;13994:25;13989:3;13982:38;14049:6;14044:3;14040:16;14033:23;;13929:137;;14075:341;14142:38;14174:5;14142:38;:::i;:::-;14202:1;14216:154;14230:6;14227:1;14224:13;14216:154;;;14304:7;14298:14;14294:1;14289:3;14285:11;14278:35;14354:1;14345:7;14341:15;14330:26;;14252:4;14249:1;14245:12;14240:17;;14216:154;;;14399:6;14394:3;14390:16;14383:23;;14082:334;;13896:520;;13684:738;;13577:845;;;;:::o;14428:366::-;14570:3;14591:67;14655:2;14650:3;14591:67;:::i;:::-;14584:74;;14667:93;14756:3;14667:93;:::i;:::-;14785:2;14780:3;14776:12;14769:19;;14428:366;;;:::o;14800:::-;14942:3;14963:67;15027:2;15022:3;14963:67;:::i;:::-;14956:74;;15039:93;15128:3;15039:93;:::i;:::-;15157:2;15152:3;15148:12;15141:19;;14800:366;;;:::o;15172:::-;15314:3;15335:67;15399:2;15394:3;15335:67;:::i;:::-;15328:74;;15411:93;15500:3;15411:93;:::i;:::-;15529:2;15524:3;15520:12;15513:19;;15172:366;;;:::o;15544:::-;15686:3;15707:67;15771:2;15766:3;15707:67;:::i;:::-;15700:74;;15783:93;15872:3;15783:93;:::i;:::-;15901:2;15896:3;15892:12;15885:19;;15544:366;;;:::o;15916:::-;16058:3;16079:67;16143:2;16138:3;16079:67;:::i;:::-;16072:74;;16155:93;16244:3;16155:93;:::i;:::-;16273:2;16268:3;16264:12;16257:19;;15916:366;;;:::o;16288:::-;16430:3;16451:67;16515:2;16510:3;16451:67;:::i;:::-;16444:74;;16527:93;16616:3;16527:93;:::i;:::-;16645:2;16640:3;16636:12;16629:19;;16288:366;;;:::o;16660:398::-;16819:3;16840:83;16921:1;16916:3;16840:83;:::i;:::-;16833:90;;16932:93;17021:3;16932:93;:::i;:::-;17050:1;17045:3;17041:11;17034:18;;16660:398;;;:::o;17064:366::-;17206:3;17227:67;17291:2;17286:3;17227:67;:::i;:::-;17220:74;;17303:93;17392:3;17303:93;:::i;:::-;17421:2;17416:3;17412:12;17405:19;;17064:366;;;:::o;17436:::-;17578:3;17599:67;17663:2;17658:3;17599:67;:::i;:::-;17592:74;;17675:93;17764:3;17675:93;:::i;:::-;17793:2;17788:3;17784:12;17777:19;;17436:366;;;:::o;17808:118::-;17895:24;17913:5;17895:24;:::i;:::-;17890:3;17883:37;17808:118;;:::o;17932:589::-;18157:3;18179:95;18270:3;18261:6;18179:95;:::i;:::-;18172:102;;18291:95;18382:3;18373:6;18291:95;:::i;:::-;18284:102;;18403:92;18491:3;18482:6;18403:92;:::i;:::-;18396:99;;18512:3;18505:10;;17932:589;;;;;;:::o;18527:379::-;18711:3;18733:147;18876:3;18733:147;:::i;:::-;18726:154;;18897:3;18890:10;;18527:379;;;:::o;18912:222::-;19005:4;19043:2;19032:9;19028:18;19020:26;;19056:71;19124:1;19113:9;19109:17;19100:6;19056:71;:::i;:::-;18912:222;;;;:::o;19140:640::-;19335:4;19373:3;19362:9;19358:19;19350:27;;19387:71;19455:1;19444:9;19440:17;19431:6;19387:71;:::i;:::-;19468:72;19536:2;19525:9;19521:18;19512:6;19468:72;:::i;:::-;19550;19618:2;19607:9;19603:18;19594:6;19550:72;:::i;:::-;19669:9;19663:4;19659:20;19654:2;19643:9;19639:18;19632:48;19697:76;19768:4;19759:6;19697:76;:::i;:::-;19689:84;;19140:640;;;;;;;:::o;19786:210::-;19873:4;19911:2;19900:9;19896:18;19888:26;;19924:65;19986:1;19975:9;19971:17;19962:6;19924:65;:::i;:::-;19786:210;;;;:::o;20002:313::-;20115:4;20153:2;20142:9;20138:18;20130:26;;20202:9;20196:4;20192:20;20188:1;20177:9;20173:17;20166:47;20230:78;20303:4;20294:6;20230:78;:::i;:::-;20222:86;;20002:313;;;;:::o;20321:419::-;20487:4;20525:2;20514:9;20510:18;20502:26;;20574:9;20568:4;20564:20;20560:1;20549:9;20545:17;20538:47;20602:131;20728:4;20602:131;:::i;:::-;20594:139;;20321:419;;;:::o;20746:::-;20912:4;20950:2;20939:9;20935:18;20927:26;;20999:9;20993:4;20989:20;20985:1;20974:9;20970:17;20963:47;21027:131;21153:4;21027:131;:::i;:::-;21019:139;;20746:419;;;:::o;21171:::-;21337:4;21375:2;21364:9;21360:18;21352:26;;21424:9;21418:4;21414:20;21410:1;21399:9;21395:17;21388:47;21452:131;21578:4;21452:131;:::i;:::-;21444:139;;21171:419;;;:::o;21596:::-;21762:4;21800:2;21789:9;21785:18;21777:26;;21849:9;21843:4;21839:20;21835:1;21824:9;21820:17;21813:47;21877:131;22003:4;21877:131;:::i;:::-;21869:139;;21596:419;;;:::o;22021:::-;22187:4;22225:2;22214:9;22210:18;22202:26;;22274:9;22268:4;22264:20;22260:1;22249:9;22245:17;22238:47;22302:131;22428:4;22302:131;:::i;:::-;22294:139;;22021:419;;;:::o;22446:::-;22612:4;22650:2;22639:9;22635:18;22627:26;;22699:9;22693:4;22689:20;22685:1;22674:9;22670:17;22663:47;22727:131;22853:4;22727:131;:::i;:::-;22719:139;;22446:419;;;:::o;22871:::-;23037:4;23075:2;23064:9;23060:18;23052:26;;23124:9;23118:4;23114:20;23110:1;23099:9;23095:17;23088:47;23152:131;23278:4;23152:131;:::i;:::-;23144:139;;22871:419;;;:::o;23296:::-;23462:4;23500:2;23489:9;23485:18;23477:26;;23549:9;23543:4;23539:20;23535:1;23524:9;23520:17;23513:47;23577:131;23703:4;23577:131;:::i;:::-;23569:139;;23296:419;;;:::o;23721:222::-;23814:4;23852:2;23841:9;23837:18;23829:26;;23865:71;23933:1;23922:9;23918:17;23909:6;23865:71;:::i;:::-;23721:222;;;;:::o;23949:129::-;23983:6;24010:20;;:::i;:::-;24000:30;;24039:33;24067:4;24059:6;24039:33;:::i;:::-;23949:129;;;:::o;24084:75::-;24117:6;24150:2;24144:9;24134:19;;24084:75;:::o;24165:311::-;24242:4;24332:18;24324:6;24321:30;24318:56;;;24354:18;;:::i;:::-;24318:56;24404:4;24396:6;24392:17;24384:25;;24464:4;24458;24454:15;24446:23;;24165:311;;;:::o;24482:307::-;24543:4;24633:18;24625:6;24622:30;24619:56;;;24655:18;;:::i;:::-;24619:56;24693:29;24715:6;24693:29;:::i;:::-;24685:37;;24777:4;24771;24767:15;24759:23;;24482:307;;;:::o;24795:308::-;24857:4;24947:18;24939:6;24936:30;24933:56;;;24969:18;;:::i;:::-;24933:56;25007:29;25029:6;25007:29;:::i;:::-;24999:37;;25091:4;25085;25081:15;25073:23;;24795:308;;;:::o;25109:141::-;25158:4;25181:3;25173:11;;25204:3;25201:1;25194:14;25238:4;25235:1;25225:18;25217:26;;25109:141;;;:::o;25256:98::-;25307:6;25341:5;25335:12;25325:22;;25256:98;;;:::o;25360:99::-;25412:6;25446:5;25440:12;25430:22;;25360:99;;;:::o;25465:168::-;25548:11;25582:6;25577:3;25570:19;25622:4;25617:3;25613:14;25598:29;;25465:168;;;;:::o;25639:147::-;25740:11;25777:3;25762:18;;25639:147;;;;:::o;25792:169::-;25876:11;25910:6;25905:3;25898:19;25950:4;25945:3;25941:14;25926:29;;25792:169;;;;:::o;25967:148::-;26069:11;26106:3;26091:18;;25967:148;;;;:::o;26121:305::-;26161:3;26180:20;26198:1;26180:20;:::i;:::-;26175:25;;26214:20;26232:1;26214:20;:::i;:::-;26209:25;;26368:1;26300:66;26296:74;26293:1;26290:81;26287:107;;;26374:18;;:::i;:::-;26287:107;26418:1;26415;26411:9;26404:16;;26121:305;;;;:::o;26432:185::-;26472:1;26489:20;26507:1;26489:20;:::i;:::-;26484:25;;26523:20;26541:1;26523:20;:::i;:::-;26518:25;;26562:1;26552:35;;26567:18;;:::i;:::-;26552:35;26609:1;26606;26602:9;26597:14;;26432:185;;;;:::o;26623:348::-;26663:7;26686:20;26704:1;26686:20;:::i;:::-;26681:25;;26720:20;26738:1;26720:20;:::i;:::-;26715:25;;26908:1;26840:66;26836:74;26833:1;26830:81;26825:1;26818:9;26811:17;26807:105;26804:131;;;26915:18;;:::i;:::-;26804:131;26963:1;26960;26956:9;26945:20;;26623:348;;;;:::o;26977:191::-;27017:4;27037:20;27055:1;27037:20;:::i;:::-;27032:25;;27071:20;27089:1;27071:20;:::i;:::-;27066:25;;27110:1;27107;27104:8;27101:34;;;27115:18;;:::i;:::-;27101:34;27160:1;27157;27153:9;27145:17;;26977:191;;;;:::o;27174:96::-;27211:7;27240:24;27258:5;27240:24;:::i;:::-;27229:35;;27174:96;;;:::o;27276:90::-;27310:7;27353:5;27346:13;27339:21;27328:32;;27276:90;;;:::o;27372:149::-;27408:7;27448:66;27441:5;27437:78;27426:89;;27372:149;;;:::o;27527:126::-;27564:7;27604:42;27597:5;27593:54;27582:65;;27527:126;;;:::o;27659:77::-;27696:7;27725:5;27714:16;;27659:77;;;:::o;27742:154::-;27826:6;27821:3;27816;27803:30;27888:1;27879:6;27874:3;27870:16;27863:27;27742:154;;;:::o;27902:307::-;27970:1;27980:113;27994:6;27991:1;27988:13;27980:113;;;28079:1;28074:3;28070:11;28064:18;28060:1;28055:3;28051:11;28044:39;28016:2;28013:1;28009:10;28004:15;;27980:113;;;28111:6;28108:1;28105:13;28102:101;;;28191:1;28182:6;28177:3;28173:16;28166:27;28102:101;27951:258;27902:307;;;:::o;28215:320::-;28259:6;28296:1;28290:4;28286:12;28276:22;;28343:1;28337:4;28333:12;28364:18;28354:81;;28420:4;28412:6;28408:17;28398:27;;28354:81;28482:2;28474:6;28471:14;28451:18;28448:38;28445:84;;;28501:18;;:::i;:::-;28445:84;28266:269;28215:320;;;:::o;28541:281::-;28624:27;28646:4;28624:27;:::i;:::-;28616:6;28612:40;28754:6;28742:10;28739:22;28718:18;28706:10;28703:34;28700:62;28697:88;;;28765:18;;:::i;:::-;28697:88;28805:10;28801:2;28794:22;28584:238;28541:281;;:::o;28828:233::-;28867:3;28890:24;28908:5;28890:24;:::i;:::-;28881:33;;28936:66;28929:5;28926:77;28923:103;;;29006:18;;:::i;:::-;28923:103;29053:1;29046:5;29042:13;29035:20;;28828:233;;;:::o;29067:176::-;29099:1;29116:20;29134:1;29116:20;:::i;:::-;29111:25;;29150:20;29168:1;29150:20;:::i;:::-;29145:25;;29189:1;29179:35;;29194:18;;:::i;:::-;29179:35;29235:1;29232;29228:9;29223:14;;29067:176;;;;:::o;29249:180::-;29297:77;29294:1;29287:88;29394:4;29391:1;29384:15;29418:4;29415:1;29408:15;29435:180;29483:77;29480:1;29473:88;29580:4;29577:1;29570:15;29604:4;29601:1;29594:15;29621:180;29669:77;29666:1;29659:88;29766:4;29763:1;29756:15;29790:4;29787:1;29780:15;29807:180;29855:77;29852:1;29845:88;29952:4;29949:1;29942:15;29976:4;29973:1;29966:15;29993:180;30041:77;30038:1;30031:88;30138:4;30135:1;30128:15;30162:4;30159:1;30152:15;30179:117;30288:1;30285;30278:12;30302:117;30411:1;30408;30401:12;30425:117;30534:1;30531;30524:12;30548:117;30657:1;30654;30647:12;30671:117;30780:1;30777;30770:12;30794:117;30903:1;30900;30893:12;30917:102;30958:6;31009:2;31005:7;31000:2;30993:5;30989:14;30985:28;30975:38;;30917:102;;;:::o;31025:225::-;31165:34;31161:1;31153:6;31149:14;31142:58;31234:8;31229:2;31221:6;31217:15;31210:33;31025:225;:::o;31256:234::-;31396:34;31392:1;31384:6;31380:14;31373:58;31465:17;31460:2;31452:6;31448:15;31441:42;31256:234;:::o;31496:182::-;31636:34;31632:1;31624:6;31620:14;31613:58;31496:182;:::o;31684:248::-;31824:34;31820:1;31812:6;31808:14;31801:58;31893:31;31888:2;31880:6;31876:15;31869:56;31684:248;:::o;31938:234::-;32078:34;32074:1;32066:6;32062:14;32055:58;32147:17;32142:2;32134:6;32130:15;32123:42;31938:234;:::o;32178:173::-;32318:25;32314:1;32306:6;32302:14;32295:49;32178:173;:::o;32357:114::-;;:::o;32477:229::-;32617:34;32613:1;32605:6;32601:14;32594:58;32686:12;32681:2;32673:6;32669:15;32662:37;32477:229;:::o;32712:225::-;32852:34;32848:1;32840:6;32836:14;32829:58;32921:8;32916:2;32908:6;32904:15;32897:33;32712:225;:::o;32943:122::-;33016:24;33034:5;33016:24;:::i;:::-;33009:5;33006:35;32996:63;;33055:1;33052;33045:12;32996:63;32943:122;:::o;33071:116::-;33141:21;33156:5;33141:21;:::i;:::-;33134:5;33131:32;33121:60;;33177:1;33174;33167:12;33121:60;33071:116;:::o;33193:120::-;33265:23;33282:5;33265:23;:::i;:::-;33258:5;33255:34;33245:62;;33303:1;33300;33293:12;33245:62;33193:120;:::o;33319:122::-;33392:24;33410:5;33392:24;:::i;:::-;33385:5;33382:35;33372:63;;33431:1;33428;33421:12;33372:63;33319:122;:::o

Swarm Source

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