ETH Price: $2,918.97 (+4.10%)
 

Overview

Max Total Supply

86 BTN

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 BTN
0xC5DD2FdB655061101b3A7C43f4298Edb5FB13EEc
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Bearstown

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-04
*/

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    

    /**
     * @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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: Bearstown.sol



pragma solidity ^0.8.4;



contract Bearstown is Ownable, ERC721A {
    uint256 public maxSupply                    = 4500;
    uint256 public maxFreeSupply                = 500;
    
    uint256 public maxPerTxDuringMint           = 10;
    uint256 public maxPerAddressDuringMint      = 20;
    uint256 public maxPerAddressDuringFreeMint  = 5;
    
    uint256 public price                        = 0.006 ether;
    bool    public saleIsActive                 = false;

    address constant internal TEAM_ADDRESS = 0x7EE4191B0ad441f9F8553f49eF6923032eff2835;

    string private _baseTokenURI;

    mapping(address => uint256) public freeMintedAmount;
    mapping(address => uint256) public mintedAmount;

    constructor() ERC721A("Bearstown", "BTN") {
        _safeMint(msg.sender, 1);
    }

    modifier mintCompliance() {
        require(saleIsActive, "Sale is not active yet.");
        require(tx.origin == msg.sender, "Caller cannot be a contract.");
        _;
    }

    function mint(uint256 _quantity) external payable mintCompliance() {
        require(
            msg.value >= price * _quantity,
            "GDZ: Insufficient Fund."
        );
        require(
            maxSupply >= totalSupply() + _quantity,
            "GDZ: Exceeds max supply."
        );
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "GDZ: Exceeds max mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function freeMint(uint256 _quantity) external mintCompliance() {
        require(
            maxFreeSupply >= totalSupply() + _quantity,
            "GDZ: Exceeds max free supply."
        );
        uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(
            _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint,
            "GDZ: Exceeds max free mints per address!"
        );
        freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTxDuringMint = _amount;
    }

    function setMaxPerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringMint = _amount;
    }

    function setMaxFreePerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringFreeMint = _amount;
    }

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function cutMaxSupply(uint256 _amount) public onlyOwner {
        require(
            maxSupply - _amount >= totalSupply(), 
            "Supply cannot fall below minted tokens."
        );
        maxSupply -= _amount;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function withdrawBalance() external payable onlyOwner {

        (bool success, ) = payable(TEAM_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","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":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526111946009556101f4600a55600a600b556014600c556005600d55661550f7dca70000600e556000600f60006101000a81548160ff0219169083151502179055503480156200005257600080fd5b506040518060400160405280600981526020017f4265617273746f776e00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f42544e0000000000000000000000000000000000000000000000000000000000815250620000df620000d36200014260201b60201c565b6200014a60201b60201c565b8160039080519060200190620000f7929190620006b9565b50806004908051906020019062000110929190620006b9565b50620001216200020e60201b60201c565b60018190555050506200013c3360016200021360201b60201c565b620009af565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b620002358282604051806020016040528060008152506200023960201b60201c565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620002a8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415620002e4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002f960008583866200051f60201b60201c565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000366600185146200052560201b60201c565b901b60a042901b6200037e866200052f60201b60201c565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146200048f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200043b60008784806001019550876200053960201b60201c565b62000472576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620003c45782600154146200048957600080fd5b620004fb565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000490575b816001819055505050620005196000858386620006ab60201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000567620006b160201b60201c565b8786866040518563ffffffff1660e01b81526004016200058b94939291906200080f565b602060405180830381600087803b158015620005a657600080fd5b505af1925050508015620005da57506040513d601f19601f82011682018060405250810190620005d7919062000780565b60015b62000658573d80600081146200060d576040519150601f19603f3d011682016040523d82523d6000602084013e62000612565b606091505b5060008151141562000650576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620006c7906200091f565b90600052602060002090601f016020900481019282620006eb576000855562000737565b82601f106200070657805160ff191683800117855562000737565b8280016001018555821562000737579182015b828111156200073657825182559160200191906001019062000719565b5b5090506200074691906200074a565b5090565b5b80821115620007655760008160009055506001016200074b565b5090565b6000815190506200077a8162000995565b92915050565b6000602082840312156200079357600080fd5b6000620007a38482850162000769565b91505092915050565b620007b7816200087f565b82525050565b6000620007ca8262000863565b620007d681856200086e565b9350620007e8818560208601620008e9565b620007f38162000984565b840191505092915050565b6200080981620008df565b82525050565b6000608082019050620008266000830187620007ac565b620008356020830186620007ac565b620008446040830185620007fe565b8181036060830152620008588184620007bd565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b60006200088c82620008bf565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000909578082015181840152602081019050620008ec565b8381111562000919576000848401525b50505050565b600060028204905060018216806200093857607f821691505b602082108114156200094f576200094e62000955565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b620009a08162000893565b8114620009ac57600080fd5b50565b61365480620009bf6000396000f3fe6080604052600436106102045760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb0114610723578063e985e9c51461074e578063eb8d24441461078b578063f2fde38b146107b6578063fbbf8cc3146107df57610204565b8063bbb6431914610669578063c6f6f21614610692578063c87b56dd146106bb578063d3464cbd146106f857610204565b806396b10201116100e757806396b1020114610593578063a035b1fe146105d0578063a0712d68146105fb578063a22cb46514610617578063b88d4fde1461064057610204565b80638bc35c2f146104e95780638da5cb5b1461051457806391b7f5ed1461053f57806395d89b411461056857610204565b806342842e0e1161019b5780636352211e1161016a5780636352211e1461040657806370a08231146104435780637ba5e621146104805780637bddd65b146104975780637c928fe9146104c057610204565b806342842e0e1461037f57806347513334146103a857806355f804b3146103d35780635fd8c710146103fc57610204565b80631141df20116101d75780631141df20146102d757806318160ddd1461030057806323b872dd1461032b5780632e0fd6eb1461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612a2d565b61081c565b60405161023d9190612e24565b60405180910390f35b34801561025257600080fd5b5061025b6108ae565b6040516102689190612e3f565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612ac4565b610940565b6040516102a59190612dbd565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906129f1565b6109bc565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190612ac4565b610b63565b005b34801561030c57600080fd5b50610315610c52565b6040516103229190612fe1565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906128eb565b610c69565b005b34801561036057600080fd5b50610369610c79565b6040516103769190612fe1565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a191906128eb565b610c7f565b005b3480156103b457600080fd5b506103bd610c9f565b6040516103ca9190612fe1565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190612a7f565b610ca5565b005b610404610d37565b005b34801561041257600080fd5b5061042d60048036038101906104289190612ac4565b610e76565b60405161043a9190612dbd565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612886565b610e88565b6040516104779190612fe1565b60405180910390f35b34801561048c57600080fd5b50610495610f41565b005b3480156104a357600080fd5b506104be60048036038101906104b99190612ac4565b610fe9565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190612ac4565b61106f565b005b3480156104f557600080fd5b506104fe611274565b60405161050b9190612fe1565b60405180910390f35b34801561052057600080fd5b5061052961127a565b6040516105369190612dbd565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190612ac4565b6112a3565b005b34801561057457600080fd5b5061057d611329565b60405161058a9190612e3f565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190612886565b6113bb565b6040516105c79190612fe1565b60405180910390f35b3480156105dc57600080fd5b506105e56113d3565b6040516105f29190612fe1565b60405180910390f35b61061560048036038101906106109190612ac4565b6113d9565b005b34801561062357600080fd5b5061063e600480360381019061063991906129b5565b61167f565b005b34801561064c57600080fd5b506106676004803603810190610662919061293a565b6117f7565b005b34801561067557600080fd5b50610690600480360381019061068b9190612ac4565b61186a565b005b34801561069e57600080fd5b506106b960048036038101906106b49190612ac4565b6118f0565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190612ac4565b611976565b6040516106ef9190612e3f565b60405180910390f35b34801561070457600080fd5b5061070d611a15565b60405161071a9190612fe1565b60405180910390f35b34801561072f57600080fd5b50610738611a1b565b6040516107459190612fe1565b60405180910390f35b34801561075a57600080fd5b50610775600480360381019061077091906128af565b611a21565b6040516107829190612e24565b60405180910390f35b34801561079757600080fd5b506107a0611ab5565b6040516107ad9190612e24565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190612886565b611ac8565b005b3480156107eb57600080fd5b5061080660048036038101906108019190612886565b611bc0565b6040516108139190612fe1565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108bd9061323a565b80601f01602080910402602001604051908101604052809291908181526020018280546108e99061323a565b80156109365780601f1061090b57610100808354040283529160200191610936565b820191906000526020600020905b81548152906001019060200180831161091957829003601f168201915b5050505050905090565b600061094b82611bd8565b610981576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c782611c37565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a2f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a4e611d05565b73ffffffffffffffffffffffffffffffffffffffff1614610ab157610a7a81610a75611d05565b611a21565b610ab0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b6b611d0d565b73ffffffffffffffffffffffffffffffffffffffff16610b8961127a565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690612fc1565b60405180910390fd5b610be7610c52565b81600954610bf59190613150565b1015610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90612f41565b60405180910390fd5b8060096000828254610c489190613150565b9250508190555050565b6000610c5c611d15565b6002546001540303905090565b610c74838383611d1a565b505050565b600d5481565b610c9a838383604051806020016040528060008152506117f7565b505050565b600a5481565b610cad611d0d565b73ffffffffffffffffffffffffffffffffffffffff16610ccb61127a565b73ffffffffffffffffffffffffffffffffffffffff1614610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890612fc1565b60405180910390fd5b818160109190610d329291906126c8565b505050565b610d3f611d0d565b73ffffffffffffffffffffffffffffffffffffffff16610d5d61127a565b73ffffffffffffffffffffffffffffffffffffffff1614610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90612fc1565b60405180910390fd5b6000737ee4191b0ad441f9f8553f49ef6923032eff283573ffffffffffffffffffffffffffffffffffffffff1647604051610ded90612da8565b60006040518083038185875af1925050503d8060008114610e2a576040519150601f19603f3d011682016040523d82523d6000602084013e610e2f565b606091505b5050905080610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90612f61565b60405180910390fd5b50565b6000610e8182611c37565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f49611d0d565b73ffffffffffffffffffffffffffffffffffffffff16610f6761127a565b73ffffffffffffffffffffffffffffffffffffffff1614610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490612fc1565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610ff1611d0d565b73ffffffffffffffffffffffffffffffffffffffff1661100f61127a565b73ffffffffffffffffffffffffffffffffffffffff1614611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90612fc1565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff166110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590612ee1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390612ea1565b60405180910390fd5b80611135610c52565b61113f91906130a0565b600a541015611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90612e81565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d5482826111d691906130a0565b1115611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e90612ec1565b60405180910390fd5b818161122391906130a0565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061127033836120c4565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112ab611d0d565b73ffffffffffffffffffffffffffffffffffffffff166112c961127a565b73ffffffffffffffffffffffffffffffffffffffff161461131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690612fc1565b60405180910390fd5b80600e8190555050565b6060600480546113389061323a565b80601f01602080910402602001604051908101604052809291908181526020018280546113649061323a565b80156113b15780601f10611386576101008083540402835291602001916113b1565b820191906000526020600020905b81548152906001019060200180831161139457829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff16611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90612ee1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90612ea1565b60405180910390fd5b80600e546114a491906130f6565b3410156114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90612fa1565b60405180910390fd5b806114ef610c52565b6114f991906130a0565b600954101561153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490612f01565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c54828261159091906130a0565b11156115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890612f21565b60405180910390fd5b6000821180156115e35750600b548211155b611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990612f81565b60405180910390fd5b818161162e91906130a0565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061167b33836120c4565b5050565b611687611d05565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ec576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006116f9611d05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117a6611d05565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117eb9190612e24565b60405180910390a35050565b611802848484611d1a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118645761182d848484846120e2565b611863576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611872611d0d565b73ffffffffffffffffffffffffffffffffffffffff1661189061127a565b73ffffffffffffffffffffffffffffffffffffffff16146118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd90612fc1565b60405180910390fd5b80600d8190555050565b6118f8611d0d565b73ffffffffffffffffffffffffffffffffffffffff1661191661127a565b73ffffffffffffffffffffffffffffffffffffffff161461196c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196390612fc1565b60405180910390fd5b80600b8190555050565b606061198182611bd8565b6119b7576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119c1612242565b90506000815114156119e25760405180602001604052806000815250611a0d565b806119ec846122d4565b6040516020016119fd929190612d84565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611ad0611d0d565b73ffffffffffffffffffffffffffffffffffffffff16611aee61127a565b73ffffffffffffffffffffffffffffffffffffffff1614611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b90612fc1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90612e61565b60405180910390fd5b611bbd8161232e565b50565b60126020528060005260406000206000915090505481565b600081611be3611d15565b11158015611bf2575060015482105b8015611c30575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611c46611d15565b11611cce57600154811015611ccd5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ccb575b6000811415611cc1576005600083600190039350838152602001908152602001600020549050611c96565b8092505050611d00565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611d2582611c37565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d8c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611dad611d05565b73ffffffffffffffffffffffffffffffffffffffff161480611ddc5750611ddb85611dd6611d05565b611a21565b5b80611e215750611dea611d05565b73ffffffffffffffffffffffffffffffffffffffff16611e0984610940565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e5a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ec1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ece85858560016123f2565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611fcb866123f8565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612055576000600184019050600060056000838152602001908152602001600020541415612053576001548114612052578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120bd8585856001612402565b5050505050565b6120de828260405180602001604052806000815250612408565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612108611d05565b8786866040518563ffffffff1660e01b815260040161212a9493929190612dd8565b602060405180830381600087803b15801561214457600080fd5b505af192505050801561217557506040513d601f19601f820116820180604052508101906121729190612a56565b60015b6121ef573d80600081146121a5576040519150601f19603f3d011682016040523d82523d6000602084013e6121aa565b606091505b506000815114156121e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546122519061323a565b80601f016020809104026020016040519081016040528092919081815260200182805461227d9061323a565b80156122ca5780601f1061229f576101008083540402835291602001916122ca565b820191906000526020600020905b8154815290600101906020018083116122ad57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561231a57600183039250600a81066030018353600a810490506122fa565b508181036020830392508083525050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612476576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156124b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124be60008583866123f2565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612523600185146126be565b901b60a042901b612533866123f8565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612637575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125e760008784806001019550876120e2565b61261d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061257857826001541461263257600080fd5b6126a2565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612638575b8160018190555050506126b86000858386612402565b50505050565b6000819050919050565b8280546126d49061323a565b90600052602060002090601f0160209004810192826126f6576000855561273d565b82601f1061270f57803560ff191683800117855561273d565b8280016001018555821561273d579182015b8281111561273c578235825591602001919060010190612721565b5b50905061274a919061274e565b5090565b5b8082111561276757600081600090555060010161274f565b5090565b600061277e61277984613021565b612ffc565b90508281526020810184848401111561279657600080fd5b6127a18482856131f8565b509392505050565b6000813590506127b8816135c2565b92915050565b6000813590506127cd816135d9565b92915050565b6000813590506127e2816135f0565b92915050565b6000815190506127f7816135f0565b92915050565b600082601f83011261280e57600080fd5b813561281e84826020860161276b565b91505092915050565b60008083601f84011261283957600080fd5b8235905067ffffffffffffffff81111561285257600080fd5b60208301915083600182028301111561286a57600080fd5b9250929050565b60008135905061288081613607565b92915050565b60006020828403121561289857600080fd5b60006128a6848285016127a9565b91505092915050565b600080604083850312156128c257600080fd5b60006128d0858286016127a9565b92505060206128e1858286016127a9565b9150509250929050565b60008060006060848603121561290057600080fd5b600061290e868287016127a9565b935050602061291f868287016127a9565b925050604061293086828701612871565b9150509250925092565b6000806000806080858703121561295057600080fd5b600061295e878288016127a9565b945050602061296f878288016127a9565b935050604061298087828801612871565b925050606085013567ffffffffffffffff81111561299d57600080fd5b6129a9878288016127fd565b91505092959194509250565b600080604083850312156129c857600080fd5b60006129d6858286016127a9565b92505060206129e7858286016127be565b9150509250929050565b60008060408385031215612a0457600080fd5b6000612a12858286016127a9565b9250506020612a2385828601612871565b9150509250929050565b600060208284031215612a3f57600080fd5b6000612a4d848285016127d3565b91505092915050565b600060208284031215612a6857600080fd5b6000612a76848285016127e8565b91505092915050565b60008060208385031215612a9257600080fd5b600083013567ffffffffffffffff811115612aac57600080fd5b612ab885828601612827565b92509250509250929050565b600060208284031215612ad657600080fd5b6000612ae484828501612871565b91505092915050565b612af681613184565b82525050565b612b0581613196565b82525050565b6000612b1682613052565b612b208185613068565b9350612b30818560208601613207565b612b398161332a565b840191505092915050565b6000612b4f8261305d565b612b598185613084565b9350612b69818560208601613207565b612b728161332a565b840191505092915050565b6000612b888261305d565b612b928185613095565b9350612ba2818560208601613207565b80840191505092915050565b6000612bbb602683613084565b9150612bc68261333b565b604082019050919050565b6000612bde601d83613084565b9150612be98261338a565b602082019050919050565b6000612c01601c83613084565b9150612c0c826133b3565b602082019050919050565b6000612c24602883613084565b9150612c2f826133dc565b604082019050919050565b6000612c47601783613084565b9150612c528261342b565b602082019050919050565b6000612c6a601883613084565b9150612c7582613454565b602082019050919050565b6000612c8d602383613084565b9150612c988261347d565b604082019050919050565b6000612cb0602783613084565b9150612cbb826134cc565b604082019050919050565b6000612cd3601083613084565b9150612cde8261351b565b602082019050919050565b6000612cf6601483613084565b9150612d0182613544565b602082019050919050565b6000612d19601783613084565b9150612d248261356d565b602082019050919050565b6000612d3c602083613084565b9150612d4782613596565b602082019050919050565b6000612d5f600083613079565b9150612d6a826135bf565b600082019050919050565b612d7e816131ee565b82525050565b6000612d908285612b7d565b9150612d9c8284612b7d565b91508190509392505050565b6000612db382612d52565b9150819050919050565b6000602082019050612dd26000830184612aed565b92915050565b6000608082019050612ded6000830187612aed565b612dfa6020830186612aed565b612e076040830185612d75565b8181036060830152612e198184612b0b565b905095945050505050565b6000602082019050612e396000830184612afc565b92915050565b60006020820190508181036000830152612e598184612b44565b905092915050565b60006020820190508181036000830152612e7a81612bae565b9050919050565b60006020820190508181036000830152612e9a81612bd1565b9050919050565b60006020820190508181036000830152612eba81612bf4565b9050919050565b60006020820190508181036000830152612eda81612c17565b9050919050565b60006020820190508181036000830152612efa81612c3a565b9050919050565b60006020820190508181036000830152612f1a81612c5d565b9050919050565b60006020820190508181036000830152612f3a81612c80565b9050919050565b60006020820190508181036000830152612f5a81612ca3565b9050919050565b60006020820190508181036000830152612f7a81612cc6565b9050919050565b60006020820190508181036000830152612f9a81612ce9565b9050919050565b60006020820190508181036000830152612fba81612d0c565b9050919050565b60006020820190508181036000830152612fda81612d2f565b9050919050565b6000602082019050612ff66000830184612d75565b92915050565b6000613006613017565b9050613012828261326c565b919050565b6000604051905090565b600067ffffffffffffffff82111561303c5761303b6132fb565b5b6130458261332a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006130ab826131ee565b91506130b6836131ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130eb576130ea61329d565b5b828201905092915050565b6000613101826131ee565b915061310c836131ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131455761314461329d565b5b828202905092915050565b600061315b826131ee565b9150613166836131ee565b9250828210156131795761317861329d565b5b828203905092915050565b600061318f826131ce565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561322557808201518184015260208101905061320a565b83811115613234576000848401525b50505050565b6000600282049050600182168061325257607f821691505b60208210811415613266576132656132cc565b5b50919050565b6132758261332a565b810181811067ffffffffffffffff82111715613294576132936132fb565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f47445a3a2045786365656473206d6178206672656520737570706c792e000000600082015250565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b7f47445a3a2045786365656473206d61782066726565206d696e7473207065722060008201527f6164647265737321000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b7f47445a3a2045786365656473206d617820737570706c792e0000000000000000600082015250565b7f47445a3a2045786365656473206d6178206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b7f47445a3a20496e73756666696369656e742046756e642e000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6135cb81613184565b81146135d657600080fd5b50565b6135e281613196565b81146135ed57600080fd5b50565b6135f9816131a2565b811461360457600080fd5b50565b613610816131ee565b811461361b57600080fd5b5056fea26469706673582212202436c69fce3de017bf184841245b663a680e1d2e8f83d3c8f2613329735468de64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb0114610723578063e985e9c51461074e578063eb8d24441461078b578063f2fde38b146107b6578063fbbf8cc3146107df57610204565b8063bbb6431914610669578063c6f6f21614610692578063c87b56dd146106bb578063d3464cbd146106f857610204565b806396b10201116100e757806396b1020114610593578063a035b1fe146105d0578063a0712d68146105fb578063a22cb46514610617578063b88d4fde1461064057610204565b80638bc35c2f146104e95780638da5cb5b1461051457806391b7f5ed1461053f57806395d89b411461056857610204565b806342842e0e1161019b5780636352211e1161016a5780636352211e1461040657806370a08231146104435780637ba5e621146104805780637bddd65b146104975780637c928fe9146104c057610204565b806342842e0e1461037f57806347513334146103a857806355f804b3146103d35780635fd8c710146103fc57610204565b80631141df20116101d75780631141df20146102d757806318160ddd1461030057806323b872dd1461032b5780632e0fd6eb1461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612a2d565b61081c565b60405161023d9190612e24565b60405180910390f35b34801561025257600080fd5b5061025b6108ae565b6040516102689190612e3f565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612ac4565b610940565b6040516102a59190612dbd565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906129f1565b6109bc565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190612ac4565b610b63565b005b34801561030c57600080fd5b50610315610c52565b6040516103229190612fe1565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906128eb565b610c69565b005b34801561036057600080fd5b50610369610c79565b6040516103769190612fe1565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a191906128eb565b610c7f565b005b3480156103b457600080fd5b506103bd610c9f565b6040516103ca9190612fe1565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190612a7f565b610ca5565b005b610404610d37565b005b34801561041257600080fd5b5061042d60048036038101906104289190612ac4565b610e76565b60405161043a9190612dbd565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612886565b610e88565b6040516104779190612fe1565b60405180910390f35b34801561048c57600080fd5b50610495610f41565b005b3480156104a357600080fd5b506104be60048036038101906104b99190612ac4565b610fe9565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190612ac4565b61106f565b005b3480156104f557600080fd5b506104fe611274565b60405161050b9190612fe1565b60405180910390f35b34801561052057600080fd5b5061052961127a565b6040516105369190612dbd565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190612ac4565b6112a3565b005b34801561057457600080fd5b5061057d611329565b60405161058a9190612e3f565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190612886565b6113bb565b6040516105c79190612fe1565b60405180910390f35b3480156105dc57600080fd5b506105e56113d3565b6040516105f29190612fe1565b60405180910390f35b61061560048036038101906106109190612ac4565b6113d9565b005b34801561062357600080fd5b5061063e600480360381019061063991906129b5565b61167f565b005b34801561064c57600080fd5b506106676004803603810190610662919061293a565b6117f7565b005b34801561067557600080fd5b50610690600480360381019061068b9190612ac4565b61186a565b005b34801561069e57600080fd5b506106b960048036038101906106b49190612ac4565b6118f0565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190612ac4565b611976565b6040516106ef9190612e3f565b60405180910390f35b34801561070457600080fd5b5061070d611a15565b60405161071a9190612fe1565b60405180910390f35b34801561072f57600080fd5b50610738611a1b565b6040516107459190612fe1565b60405180910390f35b34801561075a57600080fd5b50610775600480360381019061077091906128af565b611a21565b6040516107829190612e24565b60405180910390f35b34801561079757600080fd5b506107a0611ab5565b6040516107ad9190612e24565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190612886565b611ac8565b005b3480156107eb57600080fd5b5061080660048036038101906108019190612886565b611bc0565b6040516108139190612fe1565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108bd9061323a565b80601f01602080910402602001604051908101604052809291908181526020018280546108e99061323a565b80156109365780601f1061090b57610100808354040283529160200191610936565b820191906000526020600020905b81548152906001019060200180831161091957829003601f168201915b5050505050905090565b600061094b82611bd8565b610981576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c782611c37565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a2f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a4e611d05565b73ffffffffffffffffffffffffffffffffffffffff1614610ab157610a7a81610a75611d05565b611a21565b610ab0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b6b611d0d565b73ffffffffffffffffffffffffffffffffffffffff16610b8961127a565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690612fc1565b60405180910390fd5b610be7610c52565b81600954610bf59190613150565b1015610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90612f41565b60405180910390fd5b8060096000828254610c489190613150565b9250508190555050565b6000610c5c611d15565b6002546001540303905090565b610c74838383611d1a565b505050565b600d5481565b610c9a838383604051806020016040528060008152506117f7565b505050565b600a5481565b610cad611d0d565b73ffffffffffffffffffffffffffffffffffffffff16610ccb61127a565b73ffffffffffffffffffffffffffffffffffffffff1614610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890612fc1565b60405180910390fd5b818160109190610d329291906126c8565b505050565b610d3f611d0d565b73ffffffffffffffffffffffffffffffffffffffff16610d5d61127a565b73ffffffffffffffffffffffffffffffffffffffff1614610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90612fc1565b60405180910390fd5b6000737ee4191b0ad441f9f8553f49ef6923032eff283573ffffffffffffffffffffffffffffffffffffffff1647604051610ded90612da8565b60006040518083038185875af1925050503d8060008114610e2a576040519150601f19603f3d011682016040523d82523d6000602084013e610e2f565b606091505b5050905080610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90612f61565b60405180910390fd5b50565b6000610e8182611c37565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f49611d0d565b73ffffffffffffffffffffffffffffffffffffffff16610f6761127a565b73ffffffffffffffffffffffffffffffffffffffff1614610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490612fc1565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610ff1611d0d565b73ffffffffffffffffffffffffffffffffffffffff1661100f61127a565b73ffffffffffffffffffffffffffffffffffffffff1614611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90612fc1565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff166110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590612ee1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390612ea1565b60405180910390fd5b80611135610c52565b61113f91906130a0565b600a541015611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90612e81565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d5482826111d691906130a0565b1115611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e90612ec1565b60405180910390fd5b818161122391906130a0565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061127033836120c4565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112ab611d0d565b73ffffffffffffffffffffffffffffffffffffffff166112c961127a565b73ffffffffffffffffffffffffffffffffffffffff161461131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690612fc1565b60405180910390fd5b80600e8190555050565b6060600480546113389061323a565b80601f01602080910402602001604051908101604052809291908181526020018280546113649061323a565b80156113b15780601f10611386576101008083540402835291602001916113b1565b820191906000526020600020905b81548152906001019060200180831161139457829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff16611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90612ee1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90612ea1565b60405180910390fd5b80600e546114a491906130f6565b3410156114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90612fa1565b60405180910390fd5b806114ef610c52565b6114f991906130a0565b600954101561153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490612f01565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c54828261159091906130a0565b11156115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890612f21565b60405180910390fd5b6000821180156115e35750600b548211155b611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990612f81565b60405180910390fd5b818161162e91906130a0565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061167b33836120c4565b5050565b611687611d05565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ec576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006116f9611d05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117a6611d05565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117eb9190612e24565b60405180910390a35050565b611802848484611d1a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118645761182d848484846120e2565b611863576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611872611d0d565b73ffffffffffffffffffffffffffffffffffffffff1661189061127a565b73ffffffffffffffffffffffffffffffffffffffff16146118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd90612fc1565b60405180910390fd5b80600d8190555050565b6118f8611d0d565b73ffffffffffffffffffffffffffffffffffffffff1661191661127a565b73ffffffffffffffffffffffffffffffffffffffff161461196c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196390612fc1565b60405180910390fd5b80600b8190555050565b606061198182611bd8565b6119b7576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119c1612242565b90506000815114156119e25760405180602001604052806000815250611a0d565b806119ec846122d4565b6040516020016119fd929190612d84565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611ad0611d0d565b73ffffffffffffffffffffffffffffffffffffffff16611aee61127a565b73ffffffffffffffffffffffffffffffffffffffff1614611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b90612fc1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90612e61565b60405180910390fd5b611bbd8161232e565b50565b60126020528060005260406000206000915090505481565b600081611be3611d15565b11158015611bf2575060015482105b8015611c30575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611c46611d15565b11611cce57600154811015611ccd5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ccb575b6000811415611cc1576005600083600190039350838152602001908152602001600020549050611c96565b8092505050611d00565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611d2582611c37565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d8c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611dad611d05565b73ffffffffffffffffffffffffffffffffffffffff161480611ddc5750611ddb85611dd6611d05565b611a21565b5b80611e215750611dea611d05565b73ffffffffffffffffffffffffffffffffffffffff16611e0984610940565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e5a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ec1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ece85858560016123f2565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611fcb866123f8565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612055576000600184019050600060056000838152602001908152602001600020541415612053576001548114612052578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120bd8585856001612402565b5050505050565b6120de828260405180602001604052806000815250612408565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612108611d05565b8786866040518563ffffffff1660e01b815260040161212a9493929190612dd8565b602060405180830381600087803b15801561214457600080fd5b505af192505050801561217557506040513d601f19601f820116820180604052508101906121729190612a56565b60015b6121ef573d80600081146121a5576040519150601f19603f3d011682016040523d82523d6000602084013e6121aa565b606091505b506000815114156121e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546122519061323a565b80601f016020809104026020016040519081016040528092919081815260200182805461227d9061323a565b80156122ca5780601f1061229f576101008083540402835291602001916122ca565b820191906000526020600020905b8154815290600101906020018083116122ad57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561231a57600183039250600a81066030018353600a810490506122fa565b508181036020830392508083525050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612476576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156124b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124be60008583866123f2565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612523600185146126be565b901b60a042901b612533866123f8565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612637575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125e760008784806001019550876120e2565b61261d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061257857826001541461263257600080fd5b6126a2565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612638575b8160018190555050506126b86000858386612402565b50505050565b6000819050919050565b8280546126d49061323a565b90600052602060002090601f0160209004810192826126f6576000855561273d565b82601f1061270f57803560ff191683800117855561273d565b8280016001018555821561273d579182015b8281111561273c578235825591602001919060010190612721565b5b50905061274a919061274e565b5090565b5b8082111561276757600081600090555060010161274f565b5090565b600061277e61277984613021565b612ffc565b90508281526020810184848401111561279657600080fd5b6127a18482856131f8565b509392505050565b6000813590506127b8816135c2565b92915050565b6000813590506127cd816135d9565b92915050565b6000813590506127e2816135f0565b92915050565b6000815190506127f7816135f0565b92915050565b600082601f83011261280e57600080fd5b813561281e84826020860161276b565b91505092915050565b60008083601f84011261283957600080fd5b8235905067ffffffffffffffff81111561285257600080fd5b60208301915083600182028301111561286a57600080fd5b9250929050565b60008135905061288081613607565b92915050565b60006020828403121561289857600080fd5b60006128a6848285016127a9565b91505092915050565b600080604083850312156128c257600080fd5b60006128d0858286016127a9565b92505060206128e1858286016127a9565b9150509250929050565b60008060006060848603121561290057600080fd5b600061290e868287016127a9565b935050602061291f868287016127a9565b925050604061293086828701612871565b9150509250925092565b6000806000806080858703121561295057600080fd5b600061295e878288016127a9565b945050602061296f878288016127a9565b935050604061298087828801612871565b925050606085013567ffffffffffffffff81111561299d57600080fd5b6129a9878288016127fd565b91505092959194509250565b600080604083850312156129c857600080fd5b60006129d6858286016127a9565b92505060206129e7858286016127be565b9150509250929050565b60008060408385031215612a0457600080fd5b6000612a12858286016127a9565b9250506020612a2385828601612871565b9150509250929050565b600060208284031215612a3f57600080fd5b6000612a4d848285016127d3565b91505092915050565b600060208284031215612a6857600080fd5b6000612a76848285016127e8565b91505092915050565b60008060208385031215612a9257600080fd5b600083013567ffffffffffffffff811115612aac57600080fd5b612ab885828601612827565b92509250509250929050565b600060208284031215612ad657600080fd5b6000612ae484828501612871565b91505092915050565b612af681613184565b82525050565b612b0581613196565b82525050565b6000612b1682613052565b612b208185613068565b9350612b30818560208601613207565b612b398161332a565b840191505092915050565b6000612b4f8261305d565b612b598185613084565b9350612b69818560208601613207565b612b728161332a565b840191505092915050565b6000612b888261305d565b612b928185613095565b9350612ba2818560208601613207565b80840191505092915050565b6000612bbb602683613084565b9150612bc68261333b565b604082019050919050565b6000612bde601d83613084565b9150612be98261338a565b602082019050919050565b6000612c01601c83613084565b9150612c0c826133b3565b602082019050919050565b6000612c24602883613084565b9150612c2f826133dc565b604082019050919050565b6000612c47601783613084565b9150612c528261342b565b602082019050919050565b6000612c6a601883613084565b9150612c7582613454565b602082019050919050565b6000612c8d602383613084565b9150612c988261347d565b604082019050919050565b6000612cb0602783613084565b9150612cbb826134cc565b604082019050919050565b6000612cd3601083613084565b9150612cde8261351b565b602082019050919050565b6000612cf6601483613084565b9150612d0182613544565b602082019050919050565b6000612d19601783613084565b9150612d248261356d565b602082019050919050565b6000612d3c602083613084565b9150612d4782613596565b602082019050919050565b6000612d5f600083613079565b9150612d6a826135bf565b600082019050919050565b612d7e816131ee565b82525050565b6000612d908285612b7d565b9150612d9c8284612b7d565b91508190509392505050565b6000612db382612d52565b9150819050919050565b6000602082019050612dd26000830184612aed565b92915050565b6000608082019050612ded6000830187612aed565b612dfa6020830186612aed565b612e076040830185612d75565b8181036060830152612e198184612b0b565b905095945050505050565b6000602082019050612e396000830184612afc565b92915050565b60006020820190508181036000830152612e598184612b44565b905092915050565b60006020820190508181036000830152612e7a81612bae565b9050919050565b60006020820190508181036000830152612e9a81612bd1565b9050919050565b60006020820190508181036000830152612eba81612bf4565b9050919050565b60006020820190508181036000830152612eda81612c17565b9050919050565b60006020820190508181036000830152612efa81612c3a565b9050919050565b60006020820190508181036000830152612f1a81612c5d565b9050919050565b60006020820190508181036000830152612f3a81612c80565b9050919050565b60006020820190508181036000830152612f5a81612ca3565b9050919050565b60006020820190508181036000830152612f7a81612cc6565b9050919050565b60006020820190508181036000830152612f9a81612ce9565b9050919050565b60006020820190508181036000830152612fba81612d0c565b9050919050565b60006020820190508181036000830152612fda81612d2f565b9050919050565b6000602082019050612ff66000830184612d75565b92915050565b6000613006613017565b9050613012828261326c565b919050565b6000604051905090565b600067ffffffffffffffff82111561303c5761303b6132fb565b5b6130458261332a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006130ab826131ee565b91506130b6836131ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130eb576130ea61329d565b5b828201905092915050565b6000613101826131ee565b915061310c836131ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131455761314461329d565b5b828202905092915050565b600061315b826131ee565b9150613166836131ee565b9250828210156131795761317861329d565b5b828203905092915050565b600061318f826131ce565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561322557808201518184015260208101905061320a565b83811115613234576000848401525b50505050565b6000600282049050600182168061325257607f821691505b60208210811415613266576132656132cc565b5b50919050565b6132758261332a565b810181811067ffffffffffffffff82111715613294576132936132fb565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f47445a3a2045786365656473206d6178206672656520737570706c792e000000600082015250565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b7f47445a3a2045786365656473206d61782066726565206d696e7473207065722060008201527f6164647265737321000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b7f47445a3a2045786365656473206d617820737570706c792e0000000000000000600082015250565b7f47445a3a2045786365656473206d6178206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b7f47445a3a20496e73756666696369656e742046756e642e000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6135cb81613184565b81146135d657600080fd5b50565b6135e281613196565b81146135ed57600080fd5b50565b6135f9816131a2565b811461360457600080fd5b50565b613610816131ee565b811461361b57600080fd5b5056fea26469706673582212202436c69fce3de017bf184841245b663a680e1d2e8f83d3c8f2613329735468de64736f6c63430008040033

Deployed Bytecode Sourcemap

41765:3552:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16430:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21443:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23511:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22971:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44613:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15484:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24397:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42040:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24638:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41868:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44853:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45089:225;;;:::i;:::-;;21232:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17109:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44521:84;;;;;;;;;;;;;:::i;:::-;;44269:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43510:545;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41985:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1992:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44063:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21612:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42353:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42100:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42748:754;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23787:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24894:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44391:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44157:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21787:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41930:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41811:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24166:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42164:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2798:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42411:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16430:615;16515:4;16830:10;16815:25;;:11;:25;;;;:102;;;;16907:10;16892:25;;:11;:25;;;;16815:102;:179;;;;16984:10;16969:25;;:11;:25;;;;16815:179;16795:199;;16430:615;;;:::o;21443:100::-;21497:13;21530:5;21523:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21443:100;:::o;23511:204::-;23579:7;23604:16;23612:7;23604;:16::i;:::-;23599:64;;23629:34;;;;;;;;;;;;;;23599:64;23683:15;:24;23699:7;23683:24;;;;;;;;;;;;;;;;;;;;;23676:31;;23511:204;;;:::o;22971:474::-;23044:13;23076:27;23095:7;23076:18;:27::i;:::-;23044:61;;23126:5;23120:11;;:2;:11;;;23116:48;;;23140:24;;;;;;;;;;;;;;23116:48;23204:5;23181:28;;:19;:17;:19::i;:::-;:28;;;23177:175;;23229:44;23246:5;23253:19;:17;:19::i;:::-;23229:16;:44::i;:::-;23224:128;;23301:35;;;;;;;;;;;;;;23224:128;23177:175;23391:2;23364:15;:24;23380:7;23364:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23429:7;23425:2;23409:28;;23418:5;23409:28;;;;;;;;;;;;22971:474;;;:::o;44613:232::-;2223:12;:10;:12::i;:::-;2212:23;;:7;:5;:7::i;:::-;:23;;;2204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44725:13:::1;:11;:13::i;:::-;44714:7;44702:9;;:19;;;;:::i;:::-;:36;;44680:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;44830:7;44817:9;;:20;;;;;;;:::i;:::-;;;;;;;;44613:232:::0;:::o;15484:315::-;15537:7;15765:15;:13;:15::i;:::-;15750:12;;15734:13;;:28;:46;15727:53;;15484:315;:::o;24397:170::-;24531:28;24541:4;24547:2;24551:7;24531:9;:28::i;:::-;24397:170;;;:::o;42040:47::-;;;;:::o;24638:185::-;24776:39;24793:4;24799:2;24803:7;24776:39;;;;;;;;;;;;:16;:39::i;:::-;24638:185;;;:::o;41868:49::-;;;;:::o;44853:106::-;2223:12;:10;:12::i;:::-;2212:23;;:7;:5;:7::i;:::-;:23;;;2204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44944:7:::1;;44928:13;:23;;;;;;;:::i;:::-;;44853:106:::0;;:::o;45089:225::-;2223:12;:10;:12::i;:::-;2212:23;;:7;:5;:7::i;:::-;:23;;;2204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45157:12:::1;42265:42;45175:26;;45223:21;45175:84;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45156:103;;;45278:7;45270:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2283:1;45089:225::o:0;21232:144::-;21296:7;21339:27;21358:7;21339:18;:27::i;:::-;21316:52;;21232:144;;;:::o;17109:224::-;17173:7;17214:1;17197:19;;:5;:19;;;17193:60;;;17225:28;;;;;;;;;;;;;;17193:60;12448:13;17271:18;:25;17290:5;17271:25;;;;;;;;;;;;;;;;:54;17264:61;;17109:224;;;:::o;44521:84::-;2223:12;:10;:12::i;:::-;2212:23;;:7;:5;:7::i;:::-;:23;;;2204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44585:12:::1;;;;;;;;;;;44584:13;44569:12;;:28;;;;;;;;;;;;;;;;;;44521:84::o:0;44269:114::-;2223:12;:10;:12::i;:::-;2212:23;;:7;:5;:7::i;:::-;:23;;;2204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44368:7:::1;44342:23;:33;;;;44269:114:::0;:::o;43510:545::-;42605:12;;;;;;;;;;;42597:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42677:10;42664:23;;:9;:23;;;42656:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43639:9:::1;43623:13;:11;:13::i;:::-;:25;;;;:::i;:::-;43606:13;;:42;;43584:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;43716:25;43744:16;:28;43761:10;43744:28;;;;;;;;;;;;;;;;43716:56;;43838:27;;43825:9;43805:17;:29;;;;:::i;:::-;:60;;43783:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;43995:9;43975:17;:29;;;;:::i;:::-;43944:16;:28;43961:10;43944:28;;;;;;;;;;;;;;;:60;;;;44015:32;44025:10;44037:9;44015;:32::i;:::-;42731:1;43510:545:::0;:::o;41985:48::-;;;;:::o;1992:87::-;2038:7;2065:6;;;;;;;;;;;2058:13;;1992:87;:::o;44063:86::-;2223:12;:10;:12::i;:::-;2212:23;;:7;:5;:7::i;:::-;:23;;;2204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44135:6:::1;44127:5;:14;;;;44063:86:::0;:::o;21612:104::-;21668:13;21701:7;21694:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21612:104;:::o;42353:51::-;;;;;;;;;;;;;;;;;:::o;42100:57::-;;;;:::o;42748:754::-;42605:12;;;;;;;;;;;42597:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42677:10;42664:23;;:9;:23;;;42656:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42869:9:::1;42861:5;;:17;;;;:::i;:::-;42848:9;:30;;42826:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;42991:9;42975:13;:11;:13::i;:::-;:25;;;;:::i;:::-;42962:9;;:38;;42940:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;43063:21;43087:12;:24;43100:10;43087:24;;;;;;;;;;;;;;;;43063:48;;43173:23;;43160:9;43144:13;:25;;;;:::i;:::-;:52;;43122:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;43304:1;43292:9;:13;:48;;;;;43322:18;;43309:9;:31;;43292:48;43270:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;43442:9;43426:13;:25;;;;:::i;:::-;43399:12;:24;43412:10;43399:24;;;;;;;;;;;;;;;:52;;;;43462:32;43472:10;43484:9;43462;:32::i;:::-;42731:1;42748:754:::0;:::o;23787:308::-;23898:19;:17;:19::i;:::-;23886:31;;:8;:31;;;23882:61;;;23926:17;;;;;;;;;;;;;;23882:61;24008:8;23956:18;:39;23975:19;:17;:19::i;:::-;23956:39;;;;;;;;;;;;;;;:49;23996:8;23956:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24068:8;24032:55;;24047:19;:17;:19::i;:::-;24032:55;;;24078:8;24032:55;;;;;;:::i;:::-;;;;;;;;23787:308;;:::o;24894:396::-;25061:28;25071:4;25077:2;25081:7;25061:9;:28::i;:::-;25122:1;25104:2;:14;;;:19;25100:183;;25143:56;25174:4;25180:2;25184:7;25193:5;25143:30;:56::i;:::-;25138:145;;25227:40;;;;;;;;;;;;;;25138:145;25100:183;24894:396;;;;:::o;44391:122::-;2223:12;:10;:12::i;:::-;2212:23;;:7;:5;:7::i;:::-;:23;;;2204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44498:7:::1;44468:27;:37;;;;44391:122:::0;:::o;44157:104::-;2223:12;:10;:12::i;:::-;2212:23;;:7;:5;:7::i;:::-;:23;;;2204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44246:7:::1;44225:18;:28;;;;44157:104:::0;:::o;21787:318::-;21860:13;21891:16;21899:7;21891;:16::i;:::-;21886:59;;21916:29;;;;;;;;;;;;;;21886:59;21958:21;21982:10;:8;:10::i;:::-;21958:34;;22035:1;22016:7;22010:21;:26;;:87;;;;;;;;;;;;;;;;;22063:7;22072:18;22082:7;22072:9;:18::i;:::-;22046:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22010:87;22003:94;;;21787:318;;;:::o;41930:48::-;;;;:::o;41811:50::-;;;;:::o;24166:164::-;24263:4;24287:18;:25;24306:5;24287:25;;;;;;;;;;;;;;;:35;24313:8;24287:35;;;;;;;;;;;;;;;;;;;;;;;;;24280:42;;24166:164;;;;:::o;42164:51::-;;;;;;;;;;;;;:::o;2798:201::-;2223:12;:10;:12::i;:::-;2212:23;;:7;:5;:7::i;:::-;:23;;;2204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2907:1:::1;2887:22;;:8;:22;;;;2879:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2963:28;2982:8;2963:18;:28::i;:::-;2798:201:::0;:::o;42411:47::-;;;;;;;;;;;;;;;;;:::o;25545:273::-;25602:4;25658:7;25639:15;:13;:15::i;:::-;:26;;:66;;;;;25692:13;;25682:7;:23;25639:66;:152;;;;;25790:1;13218:8;25743:17;:26;25761:7;25743:26;;;;;;;;;;;;:43;:48;25639:152;25619:172;;25545:273;;;:::o;18747:1129::-;18814:7;18834:12;18849:7;18834:22;;18917:4;18898:15;:13;:15::i;:::-;:23;18894:915;;18951:13;;18944:4;:20;18940:869;;;18989:14;19006:17;:23;19024:4;19006:23;;;;;;;;;;;;18989:40;;19122:1;13218:8;19095:6;:23;:28;19091:699;;;19614:113;19631:1;19621:6;:11;19614:113;;;19674:17;:25;19692:6;;;;;;;19674:25;;;;;;;;;;;;19665:34;;19614:113;;;19760:6;19753:13;;;;;;19091:699;18940:869;;18894:915;19837:31;;;;;;;;;;;;;;18747:1129;;;;:::o;39527:105::-;39587:7;39614:10;39607:17;;39527:105;:::o;716:98::-;769:7;796:10;789:17;;716:98;:::o;15007:92::-;15063:7;15007:92;:::o;30784:2515::-;30899:27;30929;30948:7;30929:18;:27::i;:::-;30899:57;;31014:4;30973:45;;30989:19;30973:45;;;30969:86;;31027:28;;;;;;;;;;;;;;30969:86;31068:22;31117:4;31094:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31138:43;31155:4;31161:19;:17;:19::i;:::-;31138:16;:43::i;:::-;31094:87;:147;;;;31222:19;:17;:19::i;:::-;31198:43;;:20;31210:7;31198:11;:20::i;:::-;:43;;;31094:147;31068:174;;31260:17;31255:66;;31286:35;;;;;;;;;;;;;;31255:66;31350:1;31336:16;;:2;:16;;;31332:52;;;31361:23;;;;;;;;;;;;;;31332:52;31397:43;31419:4;31425:2;31429:7;31438:1;31397:21;:43::i;:::-;31513:15;:24;31529:7;31513:24;;;;;;;;;;;;31506:31;;;;;;;;;;;31905:18;:24;31924:4;31905:24;;;;;;;;;;;;;;;;31903:26;;;;;;;;;;;;31974:18;:22;31993:2;31974:22;;;;;;;;;;;;;;;;31972:24;;;;;;;;;;;13500:8;13102:3;32355:15;:41;;32313:21;32331:2;32313:17;:21::i;:::-;:84;:128;32267:17;:26;32285:7;32267:26;;;;;;;;;;;:174;;;;32611:1;13500:8;32561:19;:46;:51;32557:626;;;32633:19;32665:1;32655:7;:11;32633:33;;32822:1;32788:17;:30;32806:11;32788:30;;;;;;;;;;;;:35;32784:384;;;32926:13;;32911:11;:28;32907:242;;33106:19;33073:17;:30;33091:11;33073:30;;;;;;;;;;;:52;;;;32907:242;32784:384;32557:626;;33230:7;33226:2;33211:27;;33220:4;33211:27;;;;;;;;;;;;33249:42;33270:4;33276:2;33280:7;33289:1;33249:20;:42::i;:::-;30784:2515;;;;;:::o;25902:104::-;25971:27;25981:2;25985:8;25971:27;;;;;;;;;;;;:9;:27::i;:::-;25902:104;;:::o;36996:716::-;37159:4;37205:2;37180:45;;;37226:19;:17;:19::i;:::-;37247:4;37253:7;37262:5;37180:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37176:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37480:1;37463:6;:13;:18;37459:235;;;37509:40;;;;;;;;;;;;;;37459:235;37652:6;37646:13;37637:6;37633:2;37629:15;37622:38;37176:529;37349:54;;;37339:64;;;:6;:64;;;;37332:71;;;36996:716;;;;;;:::o;44967:114::-;45027:13;45060;45053:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44967:114;:::o;39738:1959::-;39795:17;40216:3;40209:4;40203:11;40199:21;40192:28;;40307:3;40301:4;40294:17;40413:3;40870:5;41000:1;40995:3;40991:11;40984:18;;41137:2;41131:4;41127:13;41123:2;41119:22;41114:3;41106:36;41178:2;41172:4;41168:13;41160:21;;40761:682;41197:4;40761:682;;;41372:1;41367:3;41363:11;41356:18;;41423:2;41417:4;41413:13;41409:2;41405:22;41400:3;41392:36;41293:2;41287:4;41283:13;41275:21;;40761:682;;;40765:431;41494:3;41489;41485:13;41609:2;41604:3;41600:12;41593:19;;41672:6;41667:3;41660:19;39834:1856;;;;;:::o;3159:191::-;3233:16;3252:6;;;;;;;;;;;3233:25;;3278:8;3269:6;;:17;;;;;;;;;;;;;;;;;;3333:8;3302:40;;3323:8;3302:40;;;;;;;;;;;;3159:191;;:::o;38360:159::-;;;;;:::o;22532:148::-;22596:14;22657:5;22647:15;;22632:41;;;:::o;39178:158::-;;;;;:::o;26379:2236::-;26502:20;26525:13;;26502:36;;26567:1;26553:16;;:2;:16;;;26549:48;;;26578:19;;;;;;;;;;;;;;26549:48;26624:1;26612:8;:13;26608:44;;;26634:18;;;;;;;;;;;;;;26608:44;26665:61;26695:1;26699:2;26703:12;26717:8;26665:21;:61::i;:::-;27269:1;12585:2;27240:1;:25;;27239:31;27227:8;:44;27201:18;:22;27220:2;27201:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13365:3;27670:29;27697:1;27685:8;:13;27670:14;:29::i;:::-;:56;;13102:3;27607:15;:41;;27565:21;27583:2;27565:17;:21::i;:::-;:84;:162;27514:17;:31;27532:12;27514:31;;;;;;;;;;;:213;;;;27744:20;27767:12;27744:35;;27794:11;27823:8;27808:12;:23;27794:37;;27870:1;27852:2;:14;;;:19;27848:635;;27892:313;27948:12;27944:2;27923:38;;27940:1;27923:38;;;;;;;;;;;;27989:69;28028:1;28032:2;28036:14;;;;;;28052:5;27989:30;:69::i;:::-;27984:174;;28094:40;;;;;;;;;;;;;;27984:174;28200:3;28185:12;:18;27892:313;;28286:12;28269:13;;:29;28265:43;;28300:8;;;28265:43;27848:635;;;28349:119;28405:14;;;;;;28401:2;28380:40;;28397:1;28380:40;;;;;;;;;;;;28463:3;28448:12;:18;28349:119;;27848:635;28513:12;28497:13;:28;;;;26379:2236;;28547:60;28576:1;28580:2;28584:12;28598:8;28547:20;:60::i;:::-;26379:2236;;;;:::o;22767:142::-;22825:14;22886:5;22876:15;;22861:41;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1234:352::-;1292:8;1302:6;1352:3;1345:4;1337:6;1333:17;1329:27;1319:2;;1370:1;1367;1360:12;1319:2;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:2;;;1468:1;1465;1458:12;1422:2;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:2;;;1576:1;1573;1566:12;1519:2;1309:277;;;;;:::o;1592:139::-;1638:5;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:262::-;1796:6;1845:2;1833:9;1824:7;1820:23;1816:32;1813:2;;;1861:1;1858;1851:12;1813:2;1904:1;1929:53;1974:7;1965:6;1954:9;1950:22;1929:53;:::i;:::-;1919:63;;1875:117;1803:196;;;;:::o;2005:407::-;2073:6;2081;2130:2;2118:9;2109:7;2105:23;2101:32;2098:2;;;2146:1;2143;2136:12;2098:2;2189:1;2214:53;2259:7;2250:6;2239:9;2235:22;2214:53;:::i;:::-;2204:63;;2160:117;2316:2;2342:53;2387:7;2378:6;2367:9;2363:22;2342:53;:::i;:::-;2332:63;;2287:118;2088:324;;;;;:::o;2418:552::-;2495:6;2503;2511;2560:2;2548:9;2539:7;2535:23;2531:32;2528:2;;;2576:1;2573;2566:12;2528:2;2619:1;2644:53;2689:7;2680:6;2669:9;2665:22;2644:53;:::i;:::-;2634:63;;2590:117;2746:2;2772:53;2817:7;2808:6;2797:9;2793:22;2772:53;:::i;:::-;2762:63;;2717:118;2874:2;2900:53;2945:7;2936:6;2925:9;2921:22;2900:53;:::i;:::-;2890:63;;2845:118;2518:452;;;;;:::o;2976:809::-;3071:6;3079;3087;3095;3144:3;3132:9;3123:7;3119:23;3115:33;3112:2;;;3161:1;3158;3151:12;3112:2;3204:1;3229:53;3274:7;3265:6;3254:9;3250:22;3229:53;:::i;:::-;3219:63;;3175:117;3331:2;3357:53;3402:7;3393:6;3382:9;3378:22;3357:53;:::i;:::-;3347:63;;3302:118;3459:2;3485:53;3530:7;3521:6;3510:9;3506:22;3485:53;:::i;:::-;3475:63;;3430:118;3615:2;3604:9;3600:18;3587:32;3646:18;3638:6;3635:30;3632:2;;;3678:1;3675;3668:12;3632:2;3706:62;3760:7;3751:6;3740:9;3736:22;3706:62;:::i;:::-;3696:72;;3558:220;3102:683;;;;;;;:::o;3791:401::-;3856:6;3864;3913:2;3901:9;3892:7;3888:23;3884:32;3881:2;;;3929:1;3926;3919:12;3881:2;3972:1;3997:53;4042:7;4033:6;4022:9;4018:22;3997:53;:::i;:::-;3987:63;;3943:117;4099:2;4125:50;4167:7;4158:6;4147:9;4143:22;4125:50;:::i;:::-;4115:60;;4070:115;3871:321;;;;;:::o;4198:407::-;4266:6;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:2;;;4339:1;4336;4329:12;4291:2;4382:1;4407:53;4452:7;4443:6;4432:9;4428:22;4407:53;:::i;:::-;4397:63;;4353:117;4509:2;4535:53;4580:7;4571:6;4560:9;4556:22;4535:53;:::i;:::-;4525:63;;4480:118;4281:324;;;;;:::o;4611:260::-;4669:6;4718:2;4706:9;4697:7;4693:23;4689:32;4686:2;;;4734:1;4731;4724:12;4686:2;4777:1;4802:52;4846:7;4837:6;4826:9;4822:22;4802:52;:::i;:::-;4792:62;;4748:116;4676:195;;;;:::o;4877:282::-;4946:6;4995:2;4983:9;4974:7;4970:23;4966:32;4963:2;;;5011:1;5008;5001:12;4963:2;5054:1;5079:63;5134:7;5125:6;5114:9;5110:22;5079:63;:::i;:::-;5069:73;;5025:127;4953:206;;;;:::o;5165:395::-;5236:6;5244;5293:2;5281:9;5272:7;5268:23;5264:32;5261:2;;;5309:1;5306;5299:12;5261:2;5380:1;5369:9;5365:17;5352:31;5410:18;5402:6;5399:30;5396:2;;;5442:1;5439;5432:12;5396:2;5478:65;5535:7;5526:6;5515:9;5511:22;5478:65;:::i;:::-;5460:83;;;;5323:230;5251:309;;;;;:::o;5566:262::-;5625:6;5674:2;5662:9;5653:7;5649:23;5645:32;5642:2;;;5690:1;5687;5680:12;5642:2;5733:1;5758:53;5803:7;5794:6;5783:9;5779:22;5758:53;:::i;:::-;5748:63;;5704:117;5632:196;;;;:::o;5834:118::-;5921:24;5939:5;5921:24;:::i;:::-;5916:3;5909:37;5899:53;;:::o;5958:109::-;6039:21;6054:5;6039:21;:::i;:::-;6034:3;6027:34;6017:50;;:::o;6073:360::-;6159:3;6187:38;6219:5;6187:38;:::i;:::-;6241:70;6304:6;6299:3;6241:70;:::i;:::-;6234:77;;6320:52;6365:6;6360:3;6353:4;6346:5;6342:16;6320:52;:::i;:::-;6397:29;6419:6;6397:29;:::i;:::-;6392:3;6388:39;6381:46;;6163:270;;;;;:::o;6439:364::-;6527:3;6555:39;6588:5;6555:39;:::i;:::-;6610:71;6674:6;6669:3;6610:71;:::i;:::-;6603:78;;6690:52;6735:6;6730:3;6723:4;6716:5;6712:16;6690:52;:::i;:::-;6767:29;6789:6;6767:29;:::i;:::-;6762:3;6758:39;6751:46;;6531:272;;;;;:::o;6809:377::-;6915:3;6943:39;6976:5;6943:39;:::i;:::-;6998:89;7080:6;7075:3;6998:89;:::i;:::-;6991:96;;7096:52;7141:6;7136:3;7129:4;7122:5;7118:16;7096:52;:::i;:::-;7173:6;7168:3;7164:16;7157:23;;6919:267;;;;;:::o;7192:366::-;7334:3;7355:67;7419:2;7414:3;7355:67;:::i;:::-;7348:74;;7431:93;7520:3;7431:93;:::i;:::-;7549:2;7544:3;7540:12;7533:19;;7338:220;;;:::o;7564:366::-;7706:3;7727:67;7791:2;7786:3;7727:67;:::i;:::-;7720:74;;7803:93;7892:3;7803:93;:::i;:::-;7921:2;7916:3;7912:12;7905:19;;7710:220;;;:::o;7936:366::-;8078:3;8099:67;8163:2;8158:3;8099:67;:::i;:::-;8092:74;;8175:93;8264:3;8175:93;:::i;:::-;8293:2;8288:3;8284:12;8277:19;;8082:220;;;:::o;8308:366::-;8450:3;8471:67;8535:2;8530:3;8471:67;:::i;:::-;8464:74;;8547:93;8636:3;8547:93;:::i;:::-;8665:2;8660:3;8656:12;8649:19;;8454:220;;;:::o;8680:366::-;8822:3;8843:67;8907:2;8902:3;8843:67;:::i;:::-;8836:74;;8919:93;9008:3;8919:93;:::i;:::-;9037:2;9032:3;9028:12;9021:19;;8826:220;;;:::o;9052:366::-;9194:3;9215:67;9279:2;9274:3;9215:67;:::i;:::-;9208:74;;9291:93;9380:3;9291:93;:::i;:::-;9409:2;9404:3;9400:12;9393:19;;9198:220;;;:::o;9424:366::-;9566:3;9587:67;9651:2;9646:3;9587:67;:::i;:::-;9580:74;;9663:93;9752:3;9663:93;:::i;:::-;9781:2;9776:3;9772:12;9765:19;;9570:220;;;:::o;9796:366::-;9938:3;9959:67;10023:2;10018:3;9959:67;:::i;:::-;9952:74;;10035:93;10124:3;10035:93;:::i;:::-;10153:2;10148:3;10144:12;10137:19;;9942:220;;;:::o;10168:366::-;10310:3;10331:67;10395:2;10390:3;10331:67;:::i;:::-;10324:74;;10407:93;10496:3;10407:93;:::i;:::-;10525:2;10520:3;10516:12;10509:19;;10314:220;;;:::o;10540:366::-;10682:3;10703:67;10767:2;10762:3;10703:67;:::i;:::-;10696:74;;10779:93;10868:3;10779:93;:::i;:::-;10897:2;10892:3;10888:12;10881:19;;10686:220;;;:::o;10912:366::-;11054:3;11075:67;11139:2;11134:3;11075:67;:::i;:::-;11068:74;;11151:93;11240:3;11151:93;:::i;:::-;11269:2;11264:3;11260:12;11253:19;;11058:220;;;:::o;11284:366::-;11426:3;11447:67;11511:2;11506:3;11447:67;:::i;:::-;11440:74;;11523:93;11612:3;11523:93;:::i;:::-;11641:2;11636:3;11632:12;11625:19;;11430:220;;;:::o;11656:398::-;11815:3;11836:83;11917:1;11912:3;11836:83;:::i;:::-;11829:90;;11928:93;12017:3;11928:93;:::i;:::-;12046:1;12041:3;12037:11;12030:18;;11819:235;;;:::o;12060:118::-;12147:24;12165:5;12147:24;:::i;:::-;12142:3;12135:37;12125:53;;:::o;12184:435::-;12364:3;12386:95;12477:3;12468:6;12386:95;:::i;:::-;12379:102;;12498:95;12589:3;12580:6;12498:95;:::i;:::-;12491:102;;12610:3;12603:10;;12368:251;;;;;:::o;12625:379::-;12809:3;12831:147;12974:3;12831:147;:::i;:::-;12824:154;;12995:3;12988:10;;12813:191;;;:::o;13010:222::-;13103:4;13141:2;13130:9;13126:18;13118:26;;13154:71;13222:1;13211:9;13207:17;13198:6;13154:71;:::i;:::-;13108:124;;;;:::o;13238:640::-;13433:4;13471:3;13460:9;13456:19;13448:27;;13485:71;13553:1;13542:9;13538:17;13529:6;13485:71;:::i;:::-;13566:72;13634:2;13623:9;13619:18;13610:6;13566:72;:::i;:::-;13648;13716:2;13705:9;13701:18;13692:6;13648:72;:::i;:::-;13767:9;13761:4;13757:20;13752:2;13741:9;13737:18;13730:48;13795:76;13866:4;13857:6;13795:76;:::i;:::-;13787:84;;13438:440;;;;;;;:::o;13884:210::-;13971:4;14009:2;13998:9;13994:18;13986:26;;14022:65;14084:1;14073:9;14069:17;14060:6;14022:65;:::i;:::-;13976:118;;;;:::o;14100:313::-;14213:4;14251:2;14240:9;14236:18;14228:26;;14300:9;14294:4;14290:20;14286:1;14275:9;14271:17;14264:47;14328:78;14401:4;14392:6;14328:78;:::i;:::-;14320:86;;14218:195;;;;:::o;14419:419::-;14585:4;14623:2;14612:9;14608:18;14600:26;;14672:9;14666:4;14662:20;14658:1;14647:9;14643:17;14636:47;14700:131;14826:4;14700:131;:::i;:::-;14692:139;;14590:248;;;:::o;14844:419::-;15010:4;15048:2;15037:9;15033:18;15025:26;;15097:9;15091:4;15087:20;15083:1;15072:9;15068:17;15061:47;15125:131;15251:4;15125:131;:::i;:::-;15117:139;;15015:248;;;:::o;15269:419::-;15435:4;15473:2;15462:9;15458:18;15450:26;;15522:9;15516:4;15512:20;15508:1;15497:9;15493:17;15486:47;15550:131;15676:4;15550:131;:::i;:::-;15542:139;;15440:248;;;:::o;15694:419::-;15860:4;15898:2;15887:9;15883:18;15875:26;;15947:9;15941:4;15937:20;15933:1;15922:9;15918:17;15911:47;15975:131;16101:4;15975:131;:::i;:::-;15967:139;;15865:248;;;:::o;16119:419::-;16285:4;16323:2;16312:9;16308:18;16300:26;;16372:9;16366:4;16362:20;16358:1;16347:9;16343:17;16336:47;16400:131;16526:4;16400:131;:::i;:::-;16392:139;;16290:248;;;:::o;16544:419::-;16710:4;16748:2;16737:9;16733:18;16725:26;;16797:9;16791:4;16787:20;16783:1;16772:9;16768:17;16761:47;16825:131;16951:4;16825:131;:::i;:::-;16817:139;;16715:248;;;:::o;16969:419::-;17135:4;17173:2;17162:9;17158:18;17150:26;;17222:9;17216:4;17212:20;17208:1;17197:9;17193:17;17186:47;17250:131;17376:4;17250:131;:::i;:::-;17242:139;;17140:248;;;:::o;17394:419::-;17560:4;17598:2;17587:9;17583:18;17575:26;;17647:9;17641:4;17637:20;17633:1;17622:9;17618:17;17611:47;17675:131;17801:4;17675:131;:::i;:::-;17667:139;;17565:248;;;:::o;17819:419::-;17985:4;18023:2;18012:9;18008:18;18000:26;;18072:9;18066:4;18062:20;18058:1;18047:9;18043:17;18036:47;18100:131;18226:4;18100:131;:::i;:::-;18092:139;;17990:248;;;:::o;18244:419::-;18410:4;18448:2;18437:9;18433:18;18425:26;;18497:9;18491:4;18487:20;18483:1;18472:9;18468:17;18461:47;18525:131;18651:4;18525:131;:::i;:::-;18517:139;;18415:248;;;:::o;18669:419::-;18835:4;18873:2;18862:9;18858:18;18850:26;;18922:9;18916:4;18912:20;18908:1;18897:9;18893:17;18886:47;18950:131;19076:4;18950:131;:::i;:::-;18942:139;;18840:248;;;:::o;19094:419::-;19260:4;19298:2;19287:9;19283:18;19275:26;;19347:9;19341:4;19337:20;19333:1;19322:9;19318:17;19311:47;19375:131;19501:4;19375:131;:::i;:::-;19367:139;;19265:248;;;:::o;19519:222::-;19612:4;19650:2;19639:9;19635:18;19627:26;;19663:71;19731:1;19720:9;19716:17;19707:6;19663:71;:::i;:::-;19617:124;;;;:::o;19747:129::-;19781:6;19808:20;;:::i;:::-;19798:30;;19837:33;19865:4;19857:6;19837:33;:::i;:::-;19788:88;;;:::o;19882:75::-;19915:6;19948:2;19942:9;19932:19;;19922:35;:::o;19963:307::-;20024:4;20114:18;20106:6;20103:30;20100:2;;;20136:18;;:::i;:::-;20100:2;20174:29;20196:6;20174:29;:::i;:::-;20166:37;;20258:4;20252;20248:15;20240:23;;20029:241;;;:::o;20276:98::-;20327:6;20361:5;20355:12;20345:22;;20334:40;;;:::o;20380:99::-;20432:6;20466:5;20460:12;20450:22;;20439:40;;;:::o;20485:168::-;20568:11;20602:6;20597:3;20590:19;20642:4;20637:3;20633:14;20618:29;;20580:73;;;;:::o;20659:147::-;20760:11;20797:3;20782:18;;20772:34;;;;:::o;20812:169::-;20896:11;20930:6;20925:3;20918:19;20970:4;20965:3;20961:14;20946:29;;20908:73;;;;:::o;20987:148::-;21089:11;21126:3;21111:18;;21101:34;;;;:::o;21141:305::-;21181:3;21200:20;21218:1;21200:20;:::i;:::-;21195:25;;21234:20;21252:1;21234:20;:::i;:::-;21229:25;;21388:1;21320:66;21316:74;21313:1;21310:81;21307:2;;;21394:18;;:::i;:::-;21307:2;21438:1;21435;21431:9;21424:16;;21185:261;;;;:::o;21452:348::-;21492:7;21515:20;21533:1;21515:20;:::i;:::-;21510:25;;21549:20;21567:1;21549:20;:::i;:::-;21544:25;;21737:1;21669:66;21665:74;21662:1;21659:81;21654:1;21647:9;21640:17;21636:105;21633:2;;;21744:18;;:::i;:::-;21633:2;21792:1;21789;21785:9;21774:20;;21500:300;;;;:::o;21806:191::-;21846:4;21866:20;21884:1;21866:20;:::i;:::-;21861:25;;21900:20;21918:1;21900:20;:::i;:::-;21895:25;;21939:1;21936;21933:8;21930:2;;;21944:18;;:::i;:::-;21930:2;21989:1;21986;21982:9;21974:17;;21851:146;;;;:::o;22003:96::-;22040:7;22069:24;22087:5;22069:24;:::i;:::-;22058:35;;22048:51;;;:::o;22105:90::-;22139:7;22182:5;22175:13;22168:21;22157:32;;22147:48;;;:::o;22201:149::-;22237:7;22277:66;22270:5;22266:78;22255:89;;22245:105;;;:::o;22356:126::-;22393:7;22433:42;22426:5;22422:54;22411:65;;22401:81;;;:::o;22488:77::-;22525:7;22554:5;22543:16;;22533:32;;;:::o;22571:154::-;22655:6;22650:3;22645;22632:30;22717:1;22708:6;22703:3;22699:16;22692:27;22622:103;;;:::o;22731:307::-;22799:1;22809:113;22823:6;22820:1;22817:13;22809:113;;;22908:1;22903:3;22899:11;22893:18;22889:1;22884:3;22880:11;22873:39;22845:2;22842:1;22838:10;22833:15;;22809:113;;;22940:6;22937:1;22934:13;22931:2;;;23020:1;23011:6;23006:3;23002:16;22995:27;22931:2;22780:258;;;;:::o;23044:320::-;23088:6;23125:1;23119:4;23115:12;23105:22;;23172:1;23166:4;23162:12;23193:18;23183:2;;23249:4;23241:6;23237:17;23227:27;;23183:2;23311;23303:6;23300:14;23280:18;23277:38;23274:2;;;23330:18;;:::i;:::-;23274:2;23095:269;;;;:::o;23370:281::-;23453:27;23475:4;23453:27;:::i;:::-;23445:6;23441:40;23583:6;23571:10;23568:22;23547:18;23535:10;23532:34;23529:62;23526:2;;;23594:18;;:::i;:::-;23526:2;23634:10;23630:2;23623:22;23413:238;;;:::o;23657:180::-;23705:77;23702:1;23695:88;23802:4;23799:1;23792:15;23826:4;23823:1;23816:15;23843:180;23891:77;23888:1;23881:88;23988:4;23985:1;23978:15;24012:4;24009:1;24002:15;24029:180;24077:77;24074:1;24067:88;24174:4;24171:1;24164:15;24198:4;24195:1;24188:15;24215:102;24256:6;24307:2;24303:7;24298:2;24291:5;24287:14;24283:28;24273:38;;24263:54;;;:::o;24323:225::-;24463:34;24459:1;24451:6;24447:14;24440:58;24532:8;24527:2;24519:6;24515:15;24508:33;24429:119;:::o;24554:179::-;24694:31;24690:1;24682:6;24678:14;24671:55;24660:73;:::o;24739:178::-;24879:30;24875:1;24867:6;24863:14;24856:54;24845:72;:::o;24923:227::-;25063:34;25059:1;25051:6;25047:14;25040:58;25132:10;25127:2;25119:6;25115:15;25108:35;25029:121;:::o;25156:173::-;25296:25;25292:1;25284:6;25280:14;25273:49;25262:67;:::o;25335:174::-;25475:26;25471:1;25463:6;25459:14;25452:50;25441:68;:::o;25515:222::-;25655:34;25651:1;25643:6;25639:14;25632:58;25724:5;25719:2;25711:6;25707:15;25700:30;25621:116;:::o;25743:226::-;25883:34;25879:1;25871:6;25867:14;25860:58;25952:9;25947:2;25939:6;25935:15;25928:34;25849:120;:::o;25975:166::-;26115:18;26111:1;26103:6;26099:14;26092:42;26081:60;:::o;26147:170::-;26287:22;26283:1;26275:6;26271:14;26264:46;26253:64;:::o;26323:173::-;26463:25;26459:1;26451:6;26447:14;26440:49;26429:67;:::o;26502:182::-;26642:34;26638:1;26630:6;26626:14;26619:58;26608:76;:::o;26690:114::-;26796:8;:::o;26810:122::-;26883:24;26901:5;26883:24;:::i;:::-;26876:5;26873:35;26863:2;;26922:1;26919;26912:12;26863:2;26853:79;:::o;26938:116::-;27008:21;27023:5;27008:21;:::i;:::-;27001:5;26998:32;26988:2;;27044:1;27041;27034:12;26988:2;26978:76;:::o;27060:120::-;27132:23;27149:5;27132:23;:::i;:::-;27125:5;27122:34;27112:2;;27170:1;27167;27160:12;27112:2;27102:78;:::o;27186:122::-;27259:24;27277:5;27259:24;:::i;:::-;27252:5;27249:35;27239:2;;27298:1;27295;27288:12;27239:2;27229:79;:::o

Swarm Source

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