ETH Price: $3,490.37 (+2.09%)
Gas: 13 Gwei

Token

Bohemian Bulldogs (BB)
 

Overview

Max Total Supply

4,634 BB

Holders

1,615

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
atomiccoffeebro.eth
Balance
9 BB
0x022dfc5e6e5f61a50b95e3c2911045bee2fb7240
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:
BohemianBulldogs

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-15
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol



pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/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/security/Pausable.sol



pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

// File: @openzeppelin/contracts/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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/finance/PaymentSplitter.sol



pragma solidity ^0.8.0;




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

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol



pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

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

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @chainlink/contracts/src/v0.8/VRFRequestIDBase.sol


pragma solidity ^0.8.0;

contract VRFRequestIDBase {

  /**
   * @notice returns the seed which is actually input to the VRF coordinator
   *
   * @dev To prevent repetition of VRF output due to repetition of the
   * @dev user-supplied seed, that seed is combined in a hash with the
   * @dev user-specific nonce, and the address of the consuming contract. The
   * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
   * @dev the final seed, but the nonce does protect against repetition in
   * @dev requests which are included in a single block.
   *
   * @param _userSeed VRF seed input provided by user
   * @param _requester Address of the requesting contract
   * @param _nonce User-specific nonce at the time of the request
   */
  function makeVRFInputSeed(
    bytes32 _keyHash,
    uint256 _userSeed,
    address _requester,
    uint256 _nonce
  )
    internal
    pure
    returns (
      uint256
    )
  {
    return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
  }

  /**
   * @notice Returns the id for this request
   * @param _keyHash The serviceAgreement ID to be used for this request
   * @param _vRFInputSeed The seed to be passed directly to the VRF
   * @return The id for this request
   *
   * @dev Note that _vRFInputSeed is not the seed passed by the consuming
   * @dev contract, but the one generated by makeVRFInputSeed
   */
  function makeRequestId(
    bytes32 _keyHash,
    uint256 _vRFInputSeed
  )
    internal
    pure
    returns (
      bytes32
    )
  {
    return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
  }
}
// File: @chainlink/contracts/src/v0.8/interfaces/LinkTokenInterface.sol


pragma solidity ^0.8.0;

interface LinkTokenInterface {

  function allowance(
    address owner,
    address spender
  )
    external
    view
    returns (
      uint256 remaining
    );

  function approve(
    address spender,
    uint256 value
  )
    external
    returns (
      bool success
    );

  function balanceOf(
    address owner
  )
    external
    view
    returns (
      uint256 balance
    );

  function decimals()
    external
    view
    returns (
      uint8 decimalPlaces
    );

  function decreaseApproval(
    address spender,
    uint256 addedValue
  )
    external
    returns (
      bool success
    );

  function increaseApproval(
    address spender,
    uint256 subtractedValue
  ) external;

  function name()
    external
    view
    returns (
      string memory tokenName
    );

  function symbol()
    external
    view
    returns (
      string memory tokenSymbol
    );

  function totalSupply()
    external
    view
    returns (
      uint256 totalTokensIssued
    );

  function transfer(
    address to,
    uint256 value
  )
    external
    returns (
      bool success
    );

  function transferAndCall(
    address to,
    uint256 value,
    bytes calldata data
  )
    external
    returns (
      bool success
    );

  function transferFrom(
    address from,
    address to,
    uint256 value
  )
    external
    returns (
      bool success
    );

}

// File: @chainlink/contracts/src/v0.8/VRFConsumerBase.sol


pragma solidity ^0.8.0;



/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constuctor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.)
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request.
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {

  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBase expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
  function fulfillRandomness(
    bytes32 requestId,
    uint256 randomness
  )
    internal
    virtual;

  /**
   * @dev In order to keep backwards compatibility we have kept the user
   * seed field around. We remove the use of it because given that the blockhash
   * enters later, it overrides whatever randomness the used seed provides.
   * Given that it adds no security, and can easily lead to misunderstandings,
   * we have removed it from usage and can now provide a simpler API.
   */
  uint256 constant private USER_SEED_PLACEHOLDER = 0;

  /**
   * @notice requestRandomness initiates a request for VRF output given _seed
   *
   * @dev The fulfillRandomness method receives the output, once it's provided
   * @dev by the Oracle, and verified by the vrfCoordinator.
   *
   * @dev The _keyHash must already be registered with the VRFCoordinator, and
   * @dev the _fee must exceed the fee specified during registration of the
   * @dev _keyHash.
   *
   * @dev The _seed parameter is vestigial, and is kept only for API
   * @dev compatibility with older versions. It can't *hurt* to mix in some of
   * @dev your own randomness, here, but it's not necessary because the VRF
   * @dev oracle will mix the hash of the block containing your request into the
   * @dev VRF seed it ultimately uses.
   *
   * @param _keyHash ID of public key against which randomness is generated
   * @param _fee The amount of LINK to send with the request
   *
   * @return requestId unique ID for this request
   *
   * @dev The returned requestId can be used to distinguish responses to
   * @dev concurrent requests. It is passed as the first argument to
   * @dev fulfillRandomness.
   */
  function requestRandomness(
    bytes32 _keyHash,
    uint256 _fee
  )
    internal
    returns (
      bytes32 requestId
    )
  {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
    // This is the seed passed to VRFCoordinator. The oracle will mix this with
    // the hash of the block containing this request to obtain the seed/input
    // which is finally passed to the VRF cryptographic machinery.
    uint256 vRFSeed  = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
    // nonces[_keyHash] must stay in sync with
    // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
    // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
    // This provides protection against the user repeating their input seed,
    // which would result in a predictable/duplicate output, if multiple such
    // requests appeared in the same block.
    nonces[_keyHash] = nonces[_keyHash] + 1;
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface immutable internal LINK;
  address immutable private vrfCoordinator;

  // Nonces for each VRF key from which randomness has been requested.
  //
  // Must stay in sync with VRFCoordinator[_keyHash][this]
  mapping(bytes32 /* keyHash */ => uint256 /* nonce */) private nonces;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   * @param _link address of LINK token contract
   *
   * @dev https://docs.chain.link/docs/link-token-contracts
   */
  constructor(
    address _vrfCoordinator,
    address _link
  ) {
    vrfCoordinator = _vrfCoordinator;
    LINK = LinkTokenInterface(_link);
  }

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomness(
    bytes32 requestId,
    uint256 randomness
  )
    external
  {
    require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
    fulfillRandomness(requestId, randomness);
  }
}

// File: BohemianBulldogs.sol



pragma solidity 0.8.9;


// SPC Treasure Keys Contract: 0x4bc87f553fce25bd613a7c31b17d6d224a84c7bf
interface ISpacePunksTreasureKeys {
    function burnKeyForAddress(uint256 typeId, address burnTokenAddress) external;
    function balanceOf(address account, uint256 id) external view returns (uint256);
}


contract BohemianBulldogs is Ownable, ERC721Enumerable, ReentrancyGuard, ERC721URIStorage, PaymentSplitter {
   using SafeMath for uint256;
   using Counters for Counters.Counter;
    
    // Sale settings
    uint256 public constant MAX_BULLDOGS = 10000;
    uint256 public constant PRESALE_BULLDOGS_AMOUNT = 4000;
    uint256 public constant RESERVED_BULLDOGS_AMOUNT = 1000; // for SPC keys & BB team
    uint256 public MAX_BULLDOGS_PER_TRANSACTION = 20;
    
    // Starting price (for presale) is 0.05 ETH
    // The sale price is 0.09 ETH and will be switched with the switchPrice function
    uint256 public TOKEN_PRICE = 50000000000000000;
    
    // Sale & presale states
    bool public saleIsActive = false;
    bool public presaleIsActive = false;
    
    // Public URI to all the arts available
    string public _baseTokenURI = "";
    
    // Referral system related variables
    mapping(address => uint256) public _referrals;
    mapping(uint256 => address) public _referrers;
    uint256 public _referrersCount = 0;
    
    // Helpers variables to mint random token
    uint internal nonce = 0;
    uint[MAX_BULLDOGS] internal indices;
    
    // SPC x BohemianBulldogs launchpad id
    uint256 private LAUNCHPAD_PROJECT_ID = 6;
    
    // Splitting payments
    uint256[] private _teamShares = [93, 5, 2];
    address[] private _team = [0xbA5e1F929D6045d2eFb07bDAae9b6D4541055598, 0x19B5Ca7135859D3AEBD36228E0C6DE2756f1c658, 0x17895988aB2B64f041813936bF46Fb9133a6B160];

    
    constructor(string memory baseTokenURI) 
    PaymentSplitter(_team, _teamShares)
    ERC721("Bohemian Bulldogs","BB") {
        _baseTokenURI = baseTokenURI;
    }

    // *******************************************************************************************
    // Minting with SPC Treasure Keys
    address private _treasureKeys = 0x4bc87F553fcE25bd613a7C31b17d6D224A84c7bF;
    
    function setTreasureKeys(address value) external onlyOwner {
        _treasureKeys = value;
    }
    
    // Required overrides from parent contracts
    function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    // Required overrides from parent contracts
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    
    // Required overrides from parent contracts
    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function mintWithTreasureKey() external nonReentrant {

        // Checking supply numbers
        require(totalSupply() + 1 <= MAX_BULLDOGS, "Sale has already ended");
        
        ISpacePunksTreasureKeys keys = ISpacePunksTreasureKeys(_treasureKeys);
        require(keys.balanceOf(msg.sender, LAUNCHPAD_PROJECT_ID) > 0, "SPC Treasure Keys: must own at least one key");

        keys.burnKeyForAddress(LAUNCHPAD_PROJECT_ID, msg.sender);
        _mintWithRandomTokenId(msg.sender);
    }
    // *******************************************************************************************
    
    // Getting base URI
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    
    // Getting token's URI by id
    function tokenURI(uint256 _tokenId) override(ERC721, ERC721URIStorage) public view returns (string memory) {
        return string(abi.encodePacked(_baseTokenURI, Strings.toString(_tokenId)));
    }
    
    // Setting base URI
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        _baseTokenURI = _newBaseURI;
    }
    
    // Setting LAUNCHPAD_PROJECT_ID
    function setLaunchpadProjectId(uint _newID) public onlyOwner {
        LAUNCHPAD_PROJECT_ID = _newID;
    }
    
    // Setting max tokens per trasaction
    function setMaxTokensPerTransaction(uint256 _newMaxTokens) public onlyOwner {
        MAX_BULLDOGS_PER_TRANSACTION = _newMaxTokens;
    }

    // Getting list of tokens that belong to the given address
    function tokensOfOwner(address _owner) external view returns(uint256[] memory) {
        // Get list of tokens owned by given address
        
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    // Price switcher between presale and sale values
    // Price has only 2 options: 0.05 and 0.09 ETH
    function switchPrice(uint256 option) public onlyOwner {
        if (option == 1) {
            TOKEN_PRICE = 50000000000000000; // 0.05 ETH
        } else if (option == 2) {
            TOKEN_PRICE = 90000000000000000; // 0.09 ETH
        }
    }
    
    // Pick a random index to mint the token
    function randomIndex() internal returns(uint256) {
        uint256 totalSize = MAX_BULLDOGS - totalSupply();
        uint256 index = uint(keccak256(abi.encodePacked(nonce, msg.sender, block.difficulty, block.timestamp))) % totalSize;
        uint256 value = 0;
    
        if (indices[index] != 0) {
            value = indices[index];
        } else {
            value = index;
        }
    
        if (indices[totalSize - 1] == 0) {
            indices[index] = totalSize - 1;
        } else {
            indices[index] = indices[totalSize - 1];
        }
    
        nonce++;
    
        return value.add(1);
    }
    
    
    // Mint the token (internal)
   function _mintWithRandomTokenId(address _to) private {
        uint _tokenID = randomIndex();
        _safeMint(_to, _tokenID);
   }
    
   // Main minting function
   // If you weren't referred by anyone, insert an empty ETH address
   function mintBohemianBulldog(uint256 numBulldogs, address referrer) public payable nonReentrant {
       
        // Checking whether the sale or presale is active
        require(saleIsActive || presaleIsActive, "Neither sale nor presale is active at the moment");
        
        // Checking for reserved bulldogs
        require(totalSupply().add(numBulldogs) <= MAX_BULLDOGS - RESERVED_BULLDOGS_AMOUNT, "Purchase would exceed max supply of Bohemian Bulldogs");
        
        // Checking supply numbers
        require(numBulldogs > 0 && numBulldogs <= MAX_BULLDOGS_PER_TRANSACTION, "You can mint minimum 1, maximum 20 Bohemian Bulldogs");
        
        // Checking price
        require(msg.value >= TOKEN_PRICE * numBulldogs, "Ether value sent is unsufficient");

        // Minting Bulldogs
        for (uint256 i = 0; i < numBulldogs; i++) {
            _mintWithRandomTokenId(msg.sender);
        }
        
        // Adding points to referree 
        addReferral(referrer, numBulldogs);
    }
    
    // Starting/stopping the sale
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    // Starting/stopping the presale
    function flipPresaleState() public onlyOwner {
        presaleIsActive = !presaleIsActive;
    }

    // Referral points calculation
    function addReferral(address _referrer, uint256 _tokensCount) private {
        
        if (_referrals[_referrer] == 0) {
            _referrers[_referrersCount] = _referrer;
            _referrersCount += 1;
            // if referrer has never invited referrals, default bonus value is 0 in _referrals
            // then adding referrer to referrers list to find them after and increment _referrersCount index by 1
        }
       
        _referrals[_referrer] += _tokensCount;
   }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BULLDOGS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BULLDOGS_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_BULLDOGS_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_BULLDOGS_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_referrals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_referrers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_referrersCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numBulldogs","type":"uint256"},{"internalType":"address","name":"referrer","type":"address"}],"name":"mintBohemianBulldog","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintWithTreasureKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newID","type":"uint256"}],"name":"setLaunchpadProjectId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxTokens","type":"uint256"}],"name":"setMaxTokensPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"value","type":"address"}],"name":"setTreasureKeys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"option","type":"uint256"}],"name":"switchPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052601460125566b1a2bc2ec500006013556000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff02191690831515021790555060405180602001604052806000815250601590805190602001906200007192919062000801565b5060006018556000601955600661272a556040518060600160405280605d60ff168152602001600560ff168152602001600260ff1681525061272b906003620000bc92919062000892565b50604051806060016040528073ba5e1f929d6045d2efb07bdaae9b6d454105559873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017319b5ca7135859d3aebd36228e0c6de2756f1c65873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017317895988ab2b64f041813936bf46fb9133a6b16073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525061272c906003620001ab929190620008e9565b50734bc87f553fce25bd613a7c31b17d6d224a84c7bf61272d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200020f57600080fd5b506040516200667538038062006675833981810160405281019062000235919062000b34565b61272c805480602002602001604051908101604052809291908181526020018280548015620002ba57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116200026f575b505050505061272b8054806020026020016040519081016040528092919081815260200182805480156200030e57602002820191906000526020600020905b815481526020019060010190808311620002f9575b50505050506040518060400160405280601181526020017f426f68656d69616e2042756c6c646f67730000000000000000000000000000008152506040518060400160405280600281526020017f42420000000000000000000000000000000000000000000000000000000000008152506200039f62000393620004fb60201b60201c565b6200050360201b60201c565b8160019080519060200190620003b792919062000801565b508060029080519060200190620003d092919062000801565b5050506001600b81905550805182511462000422576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004199062000c0c565b60405180910390fd5b600082511162000469576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004609062000c7e565b60405180910390fd5b60005b8251811015620004d857620004c283828151811062000490576200048f62000ca0565b5b6020026020010151838381518110620004ae57620004ad62000ca0565b5b6020026020010151620005c760201b60201c565b8080620004cf9062000d08565b9150506200046c565b5050508060159080519060200190620004f392919062000801565b50506200103d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200063a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006319062000dcc565b60405180910390fd5b6000811162000680576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006779062000e3e565b60405180910390fd5b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000705576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fc9062000ed6565b60405180910390fd5b6011829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d54620007bc919062000ef8565b600d819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac8282604051620007f592919062000fab565b60405180910390a15050565b8280546200080f9062001007565b90600052602060002090601f0160209004810192826200083357600085556200087f565b82601f106200084e57805160ff19168380011785556200087f565b828001600101855582156200087f579182015b828111156200087e57825182559160200191906001019062000861565b5b5090506200088e919062000978565b5090565b828054828255906000526020600020908101928215620008d6579160200282015b82811115620008d5578251829060ff16905591602001919060010190620008b3565b5b509050620008e5919062000978565b5090565b82805482825590600052602060002090810192821562000965579160200282015b82811115620009645782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200090a565b5b50905062000974919062000978565b5090565b5b808211156200099357600081600090555060010162000979565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000a0082620009b5565b810181811067ffffffffffffffff8211171562000a225762000a21620009c6565b5b80604052505050565b600062000a3762000997565b905062000a458282620009f5565b919050565b600067ffffffffffffffff82111562000a685762000a67620009c6565b5b62000a7382620009b5565b9050602081019050919050565b60005b8381101562000aa057808201518184015260208101905062000a83565b8381111562000ab0576000848401525b50505050565b600062000acd62000ac78462000a4a565b62000a2b565b90508281526020810184848401111562000aec5762000aeb620009b0565b5b62000af984828562000a80565b509392505050565b600082601f83011262000b195762000b18620009ab565b5b815162000b2b84826020860162000ab6565b91505092915050565b60006020828403121562000b4d5762000b4c620009a1565b5b600082015167ffffffffffffffff81111562000b6e5762000b6d620009a6565b5b62000b7c8482850162000b01565b91505092915050565b600082825260208201905092915050565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b600062000bf460328362000b85565b915062000c018262000b96565b604082019050919050565b6000602082019050818103600083015262000c278162000be5565b9050919050565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b600062000c66601a8362000b85565b915062000c738262000c2e565b602082019050919050565b6000602082019050818103600083015262000c998162000c57565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b600062000d158262000cfe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000d4b5762000d4a62000ccf565b5b600182019050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600062000db4602c8362000b85565b915062000dc18262000d56565b604082019050919050565b6000602082019050818103600083015262000de78162000da5565b9050919050565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b600062000e26601d8362000b85565b915062000e338262000dee565b602082019050919050565b6000602082019050818103600083015262000e598162000e17565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b600062000ebe602b8362000b85565b915062000ecb8262000e60565b604082019050919050565b6000602082019050818103600083015262000ef18162000eaf565b9050919050565b600062000f058262000cfe565b915062000f128362000cfe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f4a5762000f4962000ccf565b5b828201905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f828262000f55565b9050919050565b62000f948162000f75565b82525050565b62000fa58162000cfe565b82525050565b600060408201905062000fc2600083018562000f89565b62000fd1602083018462000f9a565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200102057607f821691505b6020821081141562001037576200103662000fd8565b5b50919050565b615628806200104d6000396000f3fe6080604052600436106102815760003560e01c80638462151c1161014f578063ce7c2ac2116100c1578063e985e9c51161007a578063e985e9c514610a10578063eb8d244414610a4d578063f2fde38b14610a78578063f3f141bb14610aa1578063f81227d414610acc578063fc6f77e614610ae3576102c8565b8063ce7c2ac2146108fe578063cfc86f7b1461093b578063d2d8cb6714610966578063d490ec6414610991578063e33b7de3146109bc578063e401c79e146109e7576102c8565b806395d89b411161011357806395d89b41146107dc57806396fe0c23146108075780639852595c14610832578063a22cb4651461086f578063b88d4fde14610898578063c87b56dd146108c1576102c8565b80638462151c146106d1578063863bc4221461070e5780638b83209b1461074b5780638bdf74cc146107885780638da5cb5b146107b1576102c8565b80632f745c59116101f35780634f6ccce7116101ac5780634f6ccce7146105af57806355f804b3146105ec5780636352211e146106155780636dc744f81461065257806370a082311461067d578063715018a6146106ba576102c8565b80632f745c59146104c557806330f72cd41461050257806334918dfd1461052d5780633a98ef391461054457806342842e0e1461056f5780634e80619a14610598576102c8565b80631449d3e6116102455780631449d3e6146103b757806315d48d37146103e057806318160ddd1461041d578063191655871461044857806323b872dd146104715780632e0c7abb1461049a576102c8565b806301ffc9a7146102cd57806306fdde031461030a578063081812fc14610335578063095ea7b3146103725780630ca495a81461039b576102c8565b366102c8577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102af610b0c565b346040516102be9291906138b0565b60405180910390a1005b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef9190613945565b610b14565b604051610301919061398d565b60405180910390f35b34801561031657600080fd5b5061031f610b26565b60405161032c9190613a41565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190613a8f565b610bb8565b6040516103699190613abc565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190613b03565b610c3d565b005b6103b560048036038101906103b09190613b43565b610d55565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613a8f565b610f53565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613a8f565b610fd9565b6040516104149190613abc565b60405180910390f35b34801561042957600080fd5b5061043261100c565b60405161043f9190613b83565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190613bdc565b611019565b005b34801561047d57600080fd5b5061049860048036038101906104939190613c09565b611281565b005b3480156104a657600080fd5b506104af6112e1565b6040516104bc9190613b83565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190613b03565b6112e7565b6040516104f99190613b83565b60405180910390f35b34801561050e57600080fd5b5061051761138c565b604051610524919061398d565b60405180910390f35b34801561053957600080fd5b5061054261139f565b005b34801561055057600080fd5b50610559611447565b6040516105669190613b83565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190613c09565b611451565b005b3480156105a457600080fd5b506105ad611471565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190613a8f565b611692565b6040516105e39190613b83565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190613d91565b611703565b005b34801561062157600080fd5b5061063c60048036038101906106379190613a8f565b611799565b6040516106499190613abc565b60405180910390f35b34801561065e57600080fd5b5061066761184b565b6040516106749190613b83565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190613dda565b611851565b6040516106b19190613b83565b60405180910390f35b3480156106c657600080fd5b506106cf611909565b005b3480156106dd57600080fd5b506106f860048036038101906106f39190613dda565b611991565b6040516107059190613ec5565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190613dda565b611a9b565b6040516107429190613b83565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190613a8f565b611ab3565b60405161077f9190613abc565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190613a8f565b611afb565b005b3480156107bd57600080fd5b506107c6611b82565b6040516107d39190613abc565b60405180910390f35b3480156107e857600080fd5b506107f1611bab565b6040516107fe9190613a41565b60405180910390f35b34801561081357600080fd5b5061081c611c3d565b6040516108299190613b83565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613dda565b611c43565b6040516108669190613b83565b60405180910390f35b34801561087b57600080fd5b5061089660048036038101906108919190613f13565b611c8c565b005b3480156108a457600080fd5b506108bf60048036038101906108ba9190613ff4565b611e0d565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613a8f565b611e6f565b6040516108f59190613a41565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190613dda565b611ea3565b6040516109329190613b83565b60405180910390f35b34801561094757600080fd5b50610950611eec565b60405161095d9190613a41565b60405180910390f35b34801561097257600080fd5b5061097b611f7a565b6040516109889190613b83565b60405180910390f35b34801561099d57600080fd5b506109a6611f80565b6040516109b39190613b83565b60405180910390f35b3480156109c857600080fd5b506109d1611f86565b6040516109de9190613b83565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a099190613a8f565b611f90565b005b348015610a1c57600080fd5b50610a376004803603810190610a329190614077565b612045565b604051610a44919061398d565b60405180910390f35b348015610a5957600080fd5b50610a626120d9565b604051610a6f919061398d565b60405180910390f35b348015610a8457600080fd5b50610a9f6004803603810190610a9a9190613dda565b6120ec565b005b348015610aad57600080fd5b50610ab66121e4565b604051610ac39190613b83565b60405180910390f35b348015610ad857600080fd5b50610ae16121ea565b005b348015610aef57600080fd5b50610b0a6004803603810190610b059190613dda565b612292565b005b600033905090565b6000610b1f82612353565b9050919050565b606060018054610b35906140e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b61906140e6565b8015610bae5780601f10610b8357610100808354040283529160200191610bae565b820191906000526020600020905b815481529060010190602001808311610b9157829003601f168201915b5050505050905090565b6000610bc3826123cd565b610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf99061418a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c4882611799565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb09061421c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cd8610b0c565b73ffffffffffffffffffffffffffffffffffffffff161480610d075750610d0681610d01610b0c565b612045565b5b610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d906142ae565b60405180910390fd5b610d508383612439565b505050565b6002600b541415610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d929061431a565b60405180910390fd5b6002600b81905550601460009054906101000a900460ff1680610dca5750601460019054906101000a900460ff165b610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e00906143ac565b60405180910390fd5b6103e8612710610e1991906143fb565b610e3383610e2561100c565b6124f290919063ffffffff16565b1115610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b906144a1565b60405180910390fd5b600082118015610e8657506012548211155b610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90614533565b60405180910390fd5b81601354610ed39190614553565b341015610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c906145f9565b60405180910390fd5b60005b82811015610f3c57610f2933612508565b8080610f3490614619565b915050610f18565b50610f478183612522565b6001600b819055505050565b610f5b610b0c565b73ffffffffffffffffffffffffffffffffffffffff16610f79611b82565b73ffffffffffffffffffffffffffffffffffffffff1614610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc6906146ae565b60405180910390fd5b8060128190555050565b60176020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600980549050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290614740565b60405180910390fd5b6000600e54476110ab9190614760565b90506000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461113d9190614553565b61114791906147e5565b61115191906143fb565b90506000811415611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90614888565b60405180910390fd5b80601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111e29190614760565b601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e546112339190614760565b600e819055506112438382612633565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051611274929190614907565b60405180910390a1505050565b61129261128c610b0c565b82612727565b6112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c8906149a2565b60405180910390fd5b6112dc838383612805565b505050565b61271081565b60006112f283611851565b8210611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90614a34565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601460019054906101000a900460ff1681565b6113a7610b0c565b73ffffffffffffffffffffffffffffffffffffffff166113c5611b82565b73ffffffffffffffffffffffffffffffffffffffff161461141b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611412906146ae565b60405180910390fd5b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b6000600d54905090565b61146c83838360405180602001604052806000815250611e0d565b505050565b6002600b5414156114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae9061431a565b60405180910390fd5b6002600b8190555061271060016114cc61100c565b6114d69190614760565b1115611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e90614aa0565b60405180910390fd5b600061272d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1662fdd58e3361272a546040518363ffffffff1660e01b815260040161157e9291906138b0565b60206040518083038186803b15801561159657600080fd5b505afa1580156115aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ce9190614ad5565b1161160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590614b74565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166316ed917a61272a54336040518363ffffffff1660e01b815260040161164c929190614b94565b600060405180830381600087803b15801561166657600080fd5b505af115801561167a573d6000803e3d6000fd5b5050505061168733612508565b506001600b81905550565b600061169c61100c565b82106116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490614c2f565b60405180910390fd5b600982815481106116f1576116f0614c4f565b5b90600052602060002001549050919050565b61170b610b0c565b73ffffffffffffffffffffffffffffffffffffffff16611729611b82565b73ffffffffffffffffffffffffffffffffffffffff161461177f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611776906146ae565b60405180910390fd5b80601590805190602001906117959291906137b3565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990614cf0565b60405180910390fd5b80915050919050565b610fa081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b990614d82565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611911610b0c565b73ffffffffffffffffffffffffffffffffffffffff1661192f611b82565b73ffffffffffffffffffffffffffffffffffffffff1614611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c906146ae565b60405180910390fd5b61198f6000612a61565b565b6060600061199e83611851565b905060008114156119fb57600067ffffffffffffffff8111156119c4576119c3613c66565b5b6040519080825280602002602001820160405280156119f25781602001602082028036833780820191505090505b50915050611a96565b60008167ffffffffffffffff811115611a1757611a16613c66565b5b604051908082528060200260200182016040528015611a455781602001602082028036833780820191505090505b50905060005b82811015611a8f57611a5d85826112e7565b828281518110611a7057611a6f614c4f565b5b6020026020010181815250508080611a8790614619565b915050611a4b565b8193505050505b919050565b60166020528060005260406000206000915090505481565b600060118281548110611ac957611ac8614c4f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611b03610b0c565b73ffffffffffffffffffffffffffffffffffffffff16611b21611b82565b73ffffffffffffffffffffffffffffffffffffffff1614611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e906146ae565b60405180910390fd5b8061272a8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611bba906140e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611be6906140e6565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b5050505050905090565b60125481565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c94610b0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990614dee565b60405180910390fd5b8060066000611d0f610b0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dbc610b0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e01919061398d565b60405180910390a35050565b611e1e611e18610b0c565b83612727565b611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e54906149a2565b60405180910390fd5b611e6984848484612b25565b50505050565b60606015611e7c83612b81565b604051602001611e8d929190614ede565b6040516020818303038152906040529050919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60158054611ef9906140e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611f25906140e6565b8015611f725780601f10611f4757610100808354040283529160200191611f72565b820191906000526020600020905b815481529060010190602001808311611f5557829003601f168201915b505050505081565b60135481565b6103e881565b6000600e54905090565b611f98610b0c565b73ffffffffffffffffffffffffffffffffffffffff16611fb6611b82565b73ffffffffffffffffffffffffffffffffffffffff161461200c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612003906146ae565b60405180910390fd5b60018114156120285766b1a2bc2ec50000601381905550612042565b60028114156120415767013fbe85edc900006013819055505b5b50565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601460009054906101000a900460ff1681565b6120f4610b0c565b73ffffffffffffffffffffffffffffffffffffffff16612112611b82565b73ffffffffffffffffffffffffffffffffffffffff1614612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f906146ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf90614f74565b60405180910390fd5b6121e181612a61565b50565b60185481565b6121f2610b0c565b73ffffffffffffffffffffffffffffffffffffffff16612210611b82565b73ffffffffffffffffffffffffffffffffffffffff1614612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225d906146ae565b60405180910390fd5b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b61229a610b0c565b73ffffffffffffffffffffffffffffffffffffffff166122b8611b82565b73ffffffffffffffffffffffffffffffffffffffff161461230e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612305906146ae565b60405180910390fd5b8061272d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123c657506123c582612ce2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124ac83611799565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081836125009190614760565b905092915050565b6000612512612dc4565b905061251e8282612f29565b5050565b6000601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156125d9578160176000601854815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601860008282546125d19190614760565b925050819055505b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126289190614760565b925050819055505050565b80471015612676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266d90614fe0565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161269c90615031565b60006040518083038185875af1925050503d80600081146126d9576040519150601f19603f3d011682016040523d82523d6000602084013e6126de565b606091505b5050905080612722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612719906150b8565b60405180910390fd5b505050565b6000612732826123cd565b612771576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127689061514a565b60405180910390fd5b600061277c83611799565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127eb57508373ffffffffffffffffffffffffffffffffffffffff166127d384610bb8565b73ffffffffffffffffffffffffffffffffffffffff16145b806127fc57506127fb8185612045565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661282582611799565b73ffffffffffffffffffffffffffffffffffffffff161461287b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612872906151dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e29061526e565b60405180910390fd5b6128f6838383612f47565b612901600082612439565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461295191906143fb565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129a89190614760565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b30848484612805565b612b3c84848484612f57565b612b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7290615300565b60405180910390fd5b50505050565b60606000821415612bc9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cdd565b600082905060005b60008214612bfb578080612be490614619565b915050600a82612bf491906147e5565b9150612bd1565b60008167ffffffffffffffff811115612c1757612c16613c66565b5b6040519080825280601f01601f191660200182016040528015612c495781602001600182028036833780820191505090505b5090505b60008514612cd657600182612c6291906143fb565b9150600a85612c719190615320565b6030612c7d9190614760565b60f81b818381518110612c9357612c92614c4f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ccf91906147e5565b9450612c4d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612dad57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612dbd5750612dbc826130ee565b5b9050919050565b600080612dcf61100c565b612710612ddc91906143fb565b9050600081601954334442604051602001612dfa94939291906153ba565b6040516020818303038152906040528051906020012060001c612e1d9190615320565b9050600080601a836127108110612e3757612e36614c4f565b5b015414612e5c57601a826127108110612e5357612e52614c4f565b5b01549050612e60565b8190505b6000601a600185612e7191906143fb565b6127108110612e8357612e82614c4f565b5b01541415612eb757600183612e9891906143fb565b601a836127108110612ead57612eac614c4f565b5b0181905550612ef5565b601a600184612ec691906143fb565b6127108110612ed857612ed7614c4f565b5b0154601a836127108110612eef57612eee614c4f565b5b01819055505b60196000815480929190612f0890614619565b9190505550612f216001826124f290919063ffffffff16565b935050505090565b612f43828260405180602001604052806000815250613158565b5050565b612f528383836131b3565b505050565b6000612f788473ffffffffffffffffffffffffffffffffffffffff166132c7565b156130e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fa1610b0c565b8786866040518563ffffffff1660e01b8152600401612fc3949392919061545d565b602060405180830381600087803b158015612fdd57600080fd5b505af192505050801561300e57506040513d601f19601f8201168201806040525081019061300b91906154be565b60015b613091573d806000811461303e576040519150601f19603f3d011682016040523d82523d6000602084013e613043565b606091505b50600081511415613089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308090615300565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130e6565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61316283836132da565b61316f6000848484612f57565b6131ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a590615300565b60405180910390fd5b505050565b6131be8383836134a8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613201576131fc816134ad565b613240565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461323f5761323e83826134f6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132835761327e81613663565b6132c2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132c1576132c08282613734565b5b5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561334a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334190615537565b60405180910390fd5b613353816123cd565b15613393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338a906155a3565b60405180910390fd5b61339f60008383612f47565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133ef9190614760565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161350384611851565b61350d91906143fb565b90506000600860008481526020019081526020016000205490508181146135f2576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061367791906143fb565b90506000600a60008481526020019081526020016000205490506000600983815481106136a7576136a6614c4f565b5b9060005260206000200154905080600983815481106136c9576136c8614c4f565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613718576137176155c3565b5b6001900381819060005260206000200160009055905550505050565b600061373f83611851565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546137bf906140e6565b90600052602060002090601f0160209004810192826137e15760008555613828565b82601f106137fa57805160ff1916838001178555613828565b82800160010185558215613828579182015b8281111561382757825182559160200191906001019061380c565b5b5090506138359190613839565b5090565b5b8082111561385257600081600090555060010161383a565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061388182613856565b9050919050565b61389181613876565b82525050565b6000819050919050565b6138aa81613897565b82525050565b60006040820190506138c56000830185613888565b6138d260208301846138a1565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613922816138ed565b811461392d57600080fd5b50565b60008135905061393f81613919565b92915050565b60006020828403121561395b5761395a6138e3565b5b600061396984828501613930565b91505092915050565b60008115159050919050565b61398781613972565b82525050565b60006020820190506139a2600083018461397e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139e25780820151818401526020810190506139c7565b838111156139f1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a13826139a8565b613a1d81856139b3565b9350613a2d8185602086016139c4565b613a36816139f7565b840191505092915050565b60006020820190508181036000830152613a5b8184613a08565b905092915050565b613a6c81613897565b8114613a7757600080fd5b50565b600081359050613a8981613a63565b92915050565b600060208284031215613aa557613aa46138e3565b5b6000613ab384828501613a7a565b91505092915050565b6000602082019050613ad16000830184613888565b92915050565b613ae081613876565b8114613aeb57600080fd5b50565b600081359050613afd81613ad7565b92915050565b60008060408385031215613b1a57613b196138e3565b5b6000613b2885828601613aee565b9250506020613b3985828601613a7a565b9150509250929050565b60008060408385031215613b5a57613b596138e3565b5b6000613b6885828601613a7a565b9250506020613b7985828601613aee565b9150509250929050565b6000602082019050613b9860008301846138a1565b92915050565b6000613ba982613856565b9050919050565b613bb981613b9e565b8114613bc457600080fd5b50565b600081359050613bd681613bb0565b92915050565b600060208284031215613bf257613bf16138e3565b5b6000613c0084828501613bc7565b91505092915050565b600080600060608486031215613c2257613c216138e3565b5b6000613c3086828701613aee565b9350506020613c4186828701613aee565b9250506040613c5286828701613a7a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c9e826139f7565b810181811067ffffffffffffffff82111715613cbd57613cbc613c66565b5b80604052505050565b6000613cd06138d9565b9050613cdc8282613c95565b919050565b600067ffffffffffffffff821115613cfc57613cfb613c66565b5b613d05826139f7565b9050602081019050919050565b82818337600083830152505050565b6000613d34613d2f84613ce1565b613cc6565b905082815260208101848484011115613d5057613d4f613c61565b5b613d5b848285613d12565b509392505050565b600082601f830112613d7857613d77613c5c565b5b8135613d88848260208601613d21565b91505092915050565b600060208284031215613da757613da66138e3565b5b600082013567ffffffffffffffff811115613dc557613dc46138e8565b5b613dd184828501613d63565b91505092915050565b600060208284031215613df057613def6138e3565b5b6000613dfe84828501613aee565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e3c81613897565b82525050565b6000613e4e8383613e33565b60208301905092915050565b6000602082019050919050565b6000613e7282613e07565b613e7c8185613e12565b9350613e8783613e23565b8060005b83811015613eb8578151613e9f8882613e42565b9750613eaa83613e5a565b925050600181019050613e8b565b5085935050505092915050565b60006020820190508181036000830152613edf8184613e67565b905092915050565b613ef081613972565b8114613efb57600080fd5b50565b600081359050613f0d81613ee7565b92915050565b60008060408385031215613f2a57613f296138e3565b5b6000613f3885828601613aee565b9250506020613f4985828601613efe565b9150509250929050565b600067ffffffffffffffff821115613f6e57613f6d613c66565b5b613f77826139f7565b9050602081019050919050565b6000613f97613f9284613f53565b613cc6565b905082815260208101848484011115613fb357613fb2613c61565b5b613fbe848285613d12565b509392505050565b600082601f830112613fdb57613fda613c5c565b5b8135613feb848260208601613f84565b91505092915050565b6000806000806080858703121561400e5761400d6138e3565b5b600061401c87828801613aee565b945050602061402d87828801613aee565b935050604061403e87828801613a7a565b925050606085013567ffffffffffffffff81111561405f5761405e6138e8565b5b61406b87828801613fc6565b91505092959194509250565b6000806040838503121561408e5761408d6138e3565b5b600061409c85828601613aee565b92505060206140ad85828601613aee565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140fe57607f821691505b60208210811415614112576141116140b7565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614174602c836139b3565b915061417f82614118565b604082019050919050565b600060208201905081810360008301526141a381614167565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006142066021836139b3565b9150614211826141aa565b604082019050919050565b60006020820190508181036000830152614235816141f9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006142986038836139b3565b91506142a38261423c565b604082019050919050565b600060208201905081810360008301526142c78161428b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614304601f836139b3565b915061430f826142ce565b602082019050919050565b60006020820190508181036000830152614333816142f7565b9050919050565b7f4e6569746865722073616c65206e6f722070726573616c65206973206163746960008201527f766520617420746865206d6f6d656e7400000000000000000000000000000000602082015250565b60006143966030836139b3565b91506143a18261433a565b604082019050919050565b600060208201905081810360008301526143c581614389565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061440682613897565b915061441183613897565b925082821015614424576144236143cc565b5b828203905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620426f68656d69616e2042756c6c646f67730000000000000000000000602082015250565b600061448b6035836139b3565b91506144968261442f565b604082019050919050565b600060208201905081810360008301526144ba8161447e565b9050919050565b7f596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d2060008201527f323020426f68656d69616e2042756c6c646f6773000000000000000000000000602082015250565b600061451d6034836139b3565b9150614528826144c1565b604082019050919050565b6000602082019050818103600083015261454c81614510565b9050919050565b600061455e82613897565b915061456983613897565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145a2576145a16143cc565b5b828202905092915050565b7f45746865722076616c75652073656e7420697320756e73756666696369656e74600082015250565b60006145e36020836139b3565b91506145ee826145ad565b602082019050919050565b60006020820190508181036000830152614612816145d6565b9050919050565b600061462482613897565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614657576146566143cc565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146986020836139b3565b91506146a382614662565b602082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b600061472a6026836139b3565b9150614735826146ce565b604082019050919050565b600060208201905081810360008301526147598161471d565b9050919050565b600061476b82613897565b915061477683613897565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147ab576147aa6143cc565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147f082613897565b91506147fb83613897565b92508261480b5761480a6147b6565b5b828204905092915050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000614872602b836139b3565b915061487d82614816565b604082019050919050565b600060208201905081810360008301526148a181614865565b9050919050565b6000819050919050565b60006148cd6148c86148c384613856565b6148a8565b613856565b9050919050565b60006148df826148b2565b9050919050565b60006148f1826148d4565b9050919050565b614901816148e6565b82525050565b600060408201905061491c60008301856148f8565b61492960208301846138a1565b9392505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061498c6031836139b3565b915061499782614930565b604082019050919050565b600060208201905081810360008301526149bb8161497f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614a1e602b836139b3565b9150614a29826149c2565b604082019050919050565b60006020820190508181036000830152614a4d81614a11565b9050919050565b7f53616c652068617320616c726561647920656e64656400000000000000000000600082015250565b6000614a8a6016836139b3565b9150614a9582614a54565b602082019050919050565b60006020820190508181036000830152614ab981614a7d565b9050919050565b600081519050614acf81613a63565b92915050565b600060208284031215614aeb57614aea6138e3565b5b6000614af984828501614ac0565b91505092915050565b7f535043205472656173757265204b6579733a206d757374206f776e206174206c60008201527f65617374206f6e65206b65790000000000000000000000000000000000000000602082015250565b6000614b5e602c836139b3565b9150614b6982614b02565b604082019050919050565b60006020820190508181036000830152614b8d81614b51565b9050919050565b6000604082019050614ba960008301856138a1565b614bb66020830184613888565b9392505050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614c19602c836139b3565b9150614c2482614bbd565b604082019050919050565b60006020820190508181036000830152614c4881614c0c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614cda6029836139b3565b9150614ce582614c7e565b604082019050919050565b60006020820190508181036000830152614d0981614ccd565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614d6c602a836139b3565b9150614d7782614d10565b604082019050919050565b60006020820190508181036000830152614d9b81614d5f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614dd86019836139b3565b9150614de382614da2565b602082019050919050565b60006020820190508181036000830152614e0781614dcb565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614e3b816140e6565b614e458186614e0e565b94506001821660008114614e605760018114614e7157614ea4565b60ff19831686528186019350614ea4565b614e7a85614e19565b60005b83811015614e9c57815481890152600182019150602081019050614e7d565b838801955050505b50505092915050565b6000614eb8826139a8565b614ec28185614e0e565b9350614ed28185602086016139c4565b80840191505092915050565b6000614eea8285614e2e565b9150614ef68284614ead565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f5e6026836139b3565b9150614f6982614f02565b604082019050919050565b60006020820190508181036000830152614f8d81614f51565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614fca601d836139b3565b9150614fd582614f94565b602082019050919050565b60006020820190508181036000830152614ff981614fbd565b9050919050565b600081905092915050565b50565b600061501b600083615000565b91506150268261500b565b600082019050919050565b600061503c8261500e565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006150a2603a836139b3565b91506150ad82615046565b604082019050919050565b600060208201905081810360008301526150d181615095565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615134602c836139b3565b915061513f826150d8565b604082019050919050565b6000602082019050818103600083015261516381615127565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006151c66029836139b3565b91506151d18261516a565b604082019050919050565b600060208201905081810360008301526151f5816151b9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152586024836139b3565b9150615263826151fc565b604082019050919050565b600060208201905081810360008301526152878161524b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006152ea6032836139b3565b91506152f58261528e565b604082019050919050565b60006020820190508181036000830152615319816152dd565b9050919050565b600061532b82613897565b915061533683613897565b925082615346576153456147b6565b5b828206905092915050565b6000819050919050565b61536c61536782613897565b615351565b82525050565b60008160601b9050919050565b600061538a82615372565b9050919050565b600061539c8261537f565b9050919050565b6153b46153af82613876565b615391565b82525050565b60006153c6828761535b565b6020820191506153d682866153a3565b6014820191506153e6828561535b565b6020820191506153f6828461535b565b60208201915081905095945050505050565b600081519050919050565b600082825260208201905092915050565b600061542f82615408565b6154398185615413565b93506154498185602086016139c4565b615452816139f7565b840191505092915050565b60006080820190506154726000830187613888565b61547f6020830186613888565b61548c60408301856138a1565b818103606083015261549e8184615424565b905095945050505050565b6000815190506154b881613919565b92915050565b6000602082840312156154d4576154d36138e3565b5b60006154e2848285016154a9565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006155216020836139b3565b915061552c826154eb565b602082019050919050565b6000602082019050818103600083015261555081615514565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061558d601c836139b3565b915061559882615557565b602082019050919050565b600060208201905081810360008301526155bc81615580565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220f13ce26e7ec68197b7d1fcd8e0d7272720cd1da4baa86d549feb03d3f110e1dc64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102815760003560e01c80638462151c1161014f578063ce7c2ac2116100c1578063e985e9c51161007a578063e985e9c514610a10578063eb8d244414610a4d578063f2fde38b14610a78578063f3f141bb14610aa1578063f81227d414610acc578063fc6f77e614610ae3576102c8565b8063ce7c2ac2146108fe578063cfc86f7b1461093b578063d2d8cb6714610966578063d490ec6414610991578063e33b7de3146109bc578063e401c79e146109e7576102c8565b806395d89b411161011357806395d89b41146107dc57806396fe0c23146108075780639852595c14610832578063a22cb4651461086f578063b88d4fde14610898578063c87b56dd146108c1576102c8565b80638462151c146106d1578063863bc4221461070e5780638b83209b1461074b5780638bdf74cc146107885780638da5cb5b146107b1576102c8565b80632f745c59116101f35780634f6ccce7116101ac5780634f6ccce7146105af57806355f804b3146105ec5780636352211e146106155780636dc744f81461065257806370a082311461067d578063715018a6146106ba576102c8565b80632f745c59146104c557806330f72cd41461050257806334918dfd1461052d5780633a98ef391461054457806342842e0e1461056f5780634e80619a14610598576102c8565b80631449d3e6116102455780631449d3e6146103b757806315d48d37146103e057806318160ddd1461041d578063191655871461044857806323b872dd146104715780632e0c7abb1461049a576102c8565b806301ffc9a7146102cd57806306fdde031461030a578063081812fc14610335578063095ea7b3146103725780630ca495a81461039b576102c8565b366102c8577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102af610b0c565b346040516102be9291906138b0565b60405180910390a1005b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef9190613945565b610b14565b604051610301919061398d565b60405180910390f35b34801561031657600080fd5b5061031f610b26565b60405161032c9190613a41565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190613a8f565b610bb8565b6040516103699190613abc565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190613b03565b610c3d565b005b6103b560048036038101906103b09190613b43565b610d55565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613a8f565b610f53565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613a8f565b610fd9565b6040516104149190613abc565b60405180910390f35b34801561042957600080fd5b5061043261100c565b60405161043f9190613b83565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190613bdc565b611019565b005b34801561047d57600080fd5b5061049860048036038101906104939190613c09565b611281565b005b3480156104a657600080fd5b506104af6112e1565b6040516104bc9190613b83565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190613b03565b6112e7565b6040516104f99190613b83565b60405180910390f35b34801561050e57600080fd5b5061051761138c565b604051610524919061398d565b60405180910390f35b34801561053957600080fd5b5061054261139f565b005b34801561055057600080fd5b50610559611447565b6040516105669190613b83565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190613c09565b611451565b005b3480156105a457600080fd5b506105ad611471565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190613a8f565b611692565b6040516105e39190613b83565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190613d91565b611703565b005b34801561062157600080fd5b5061063c60048036038101906106379190613a8f565b611799565b6040516106499190613abc565b60405180910390f35b34801561065e57600080fd5b5061066761184b565b6040516106749190613b83565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190613dda565b611851565b6040516106b19190613b83565b60405180910390f35b3480156106c657600080fd5b506106cf611909565b005b3480156106dd57600080fd5b506106f860048036038101906106f39190613dda565b611991565b6040516107059190613ec5565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190613dda565b611a9b565b6040516107429190613b83565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190613a8f565b611ab3565b60405161077f9190613abc565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190613a8f565b611afb565b005b3480156107bd57600080fd5b506107c6611b82565b6040516107d39190613abc565b60405180910390f35b3480156107e857600080fd5b506107f1611bab565b6040516107fe9190613a41565b60405180910390f35b34801561081357600080fd5b5061081c611c3d565b6040516108299190613b83565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613dda565b611c43565b6040516108669190613b83565b60405180910390f35b34801561087b57600080fd5b5061089660048036038101906108919190613f13565b611c8c565b005b3480156108a457600080fd5b506108bf60048036038101906108ba9190613ff4565b611e0d565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613a8f565b611e6f565b6040516108f59190613a41565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190613dda565b611ea3565b6040516109329190613b83565b60405180910390f35b34801561094757600080fd5b50610950611eec565b60405161095d9190613a41565b60405180910390f35b34801561097257600080fd5b5061097b611f7a565b6040516109889190613b83565b60405180910390f35b34801561099d57600080fd5b506109a6611f80565b6040516109b39190613b83565b60405180910390f35b3480156109c857600080fd5b506109d1611f86565b6040516109de9190613b83565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a099190613a8f565b611f90565b005b348015610a1c57600080fd5b50610a376004803603810190610a329190614077565b612045565b604051610a44919061398d565b60405180910390f35b348015610a5957600080fd5b50610a626120d9565b604051610a6f919061398d565b60405180910390f35b348015610a8457600080fd5b50610a9f6004803603810190610a9a9190613dda565b6120ec565b005b348015610aad57600080fd5b50610ab66121e4565b604051610ac39190613b83565b60405180910390f35b348015610ad857600080fd5b50610ae16121ea565b005b348015610aef57600080fd5b50610b0a6004803603810190610b059190613dda565b612292565b005b600033905090565b6000610b1f82612353565b9050919050565b606060018054610b35906140e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b61906140e6565b8015610bae5780601f10610b8357610100808354040283529160200191610bae565b820191906000526020600020905b815481529060010190602001808311610b9157829003601f168201915b5050505050905090565b6000610bc3826123cd565b610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf99061418a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c4882611799565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb09061421c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cd8610b0c565b73ffffffffffffffffffffffffffffffffffffffff161480610d075750610d0681610d01610b0c565b612045565b5b610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d906142ae565b60405180910390fd5b610d508383612439565b505050565b6002600b541415610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d929061431a565b60405180910390fd5b6002600b81905550601460009054906101000a900460ff1680610dca5750601460019054906101000a900460ff165b610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e00906143ac565b60405180910390fd5b6103e8612710610e1991906143fb565b610e3383610e2561100c565b6124f290919063ffffffff16565b1115610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b906144a1565b60405180910390fd5b600082118015610e8657506012548211155b610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90614533565b60405180910390fd5b81601354610ed39190614553565b341015610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c906145f9565b60405180910390fd5b60005b82811015610f3c57610f2933612508565b8080610f3490614619565b915050610f18565b50610f478183612522565b6001600b819055505050565b610f5b610b0c565b73ffffffffffffffffffffffffffffffffffffffff16610f79611b82565b73ffffffffffffffffffffffffffffffffffffffff1614610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc6906146ae565b60405180910390fd5b8060128190555050565b60176020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600980549050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290614740565b60405180910390fd5b6000600e54476110ab9190614760565b90506000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461113d9190614553565b61114791906147e5565b61115191906143fb565b90506000811415611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90614888565b60405180910390fd5b80601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111e29190614760565b601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e546112339190614760565b600e819055506112438382612633565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051611274929190614907565b60405180910390a1505050565b61129261128c610b0c565b82612727565b6112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c8906149a2565b60405180910390fd5b6112dc838383612805565b505050565b61271081565b60006112f283611851565b8210611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90614a34565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601460019054906101000a900460ff1681565b6113a7610b0c565b73ffffffffffffffffffffffffffffffffffffffff166113c5611b82565b73ffffffffffffffffffffffffffffffffffffffff161461141b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611412906146ae565b60405180910390fd5b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b6000600d54905090565b61146c83838360405180602001604052806000815250611e0d565b505050565b6002600b5414156114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae9061431a565b60405180910390fd5b6002600b8190555061271060016114cc61100c565b6114d69190614760565b1115611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e90614aa0565b60405180910390fd5b600061272d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1662fdd58e3361272a546040518363ffffffff1660e01b815260040161157e9291906138b0565b60206040518083038186803b15801561159657600080fd5b505afa1580156115aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ce9190614ad5565b1161160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590614b74565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166316ed917a61272a54336040518363ffffffff1660e01b815260040161164c929190614b94565b600060405180830381600087803b15801561166657600080fd5b505af115801561167a573d6000803e3d6000fd5b5050505061168733612508565b506001600b81905550565b600061169c61100c565b82106116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490614c2f565b60405180910390fd5b600982815481106116f1576116f0614c4f565b5b90600052602060002001549050919050565b61170b610b0c565b73ffffffffffffffffffffffffffffffffffffffff16611729611b82565b73ffffffffffffffffffffffffffffffffffffffff161461177f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611776906146ae565b60405180910390fd5b80601590805190602001906117959291906137b3565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990614cf0565b60405180910390fd5b80915050919050565b610fa081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b990614d82565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611911610b0c565b73ffffffffffffffffffffffffffffffffffffffff1661192f611b82565b73ffffffffffffffffffffffffffffffffffffffff1614611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c906146ae565b60405180910390fd5b61198f6000612a61565b565b6060600061199e83611851565b905060008114156119fb57600067ffffffffffffffff8111156119c4576119c3613c66565b5b6040519080825280602002602001820160405280156119f25781602001602082028036833780820191505090505b50915050611a96565b60008167ffffffffffffffff811115611a1757611a16613c66565b5b604051908082528060200260200182016040528015611a455781602001602082028036833780820191505090505b50905060005b82811015611a8f57611a5d85826112e7565b828281518110611a7057611a6f614c4f565b5b6020026020010181815250508080611a8790614619565b915050611a4b565b8193505050505b919050565b60166020528060005260406000206000915090505481565b600060118281548110611ac957611ac8614c4f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611b03610b0c565b73ffffffffffffffffffffffffffffffffffffffff16611b21611b82565b73ffffffffffffffffffffffffffffffffffffffff1614611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e906146ae565b60405180910390fd5b8061272a8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611bba906140e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611be6906140e6565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b5050505050905090565b60125481565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c94610b0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990614dee565b60405180910390fd5b8060066000611d0f610b0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dbc610b0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e01919061398d565b60405180910390a35050565b611e1e611e18610b0c565b83612727565b611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e54906149a2565b60405180910390fd5b611e6984848484612b25565b50505050565b60606015611e7c83612b81565b604051602001611e8d929190614ede565b6040516020818303038152906040529050919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60158054611ef9906140e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611f25906140e6565b8015611f725780601f10611f4757610100808354040283529160200191611f72565b820191906000526020600020905b815481529060010190602001808311611f5557829003601f168201915b505050505081565b60135481565b6103e881565b6000600e54905090565b611f98610b0c565b73ffffffffffffffffffffffffffffffffffffffff16611fb6611b82565b73ffffffffffffffffffffffffffffffffffffffff161461200c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612003906146ae565b60405180910390fd5b60018114156120285766b1a2bc2ec50000601381905550612042565b60028114156120415767013fbe85edc900006013819055505b5b50565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601460009054906101000a900460ff1681565b6120f4610b0c565b73ffffffffffffffffffffffffffffffffffffffff16612112611b82565b73ffffffffffffffffffffffffffffffffffffffff1614612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f906146ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf90614f74565b60405180910390fd5b6121e181612a61565b50565b60185481565b6121f2610b0c565b73ffffffffffffffffffffffffffffffffffffffff16612210611b82565b73ffffffffffffffffffffffffffffffffffffffff1614612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225d906146ae565b60405180910390fd5b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b61229a610b0c565b73ffffffffffffffffffffffffffffffffffffffff166122b8611b82565b73ffffffffffffffffffffffffffffffffffffffff161461230e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612305906146ae565b60405180910390fd5b8061272d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123c657506123c582612ce2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124ac83611799565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081836125009190614760565b905092915050565b6000612512612dc4565b905061251e8282612f29565b5050565b6000601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156125d9578160176000601854815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601860008282546125d19190614760565b925050819055505b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126289190614760565b925050819055505050565b80471015612676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266d90614fe0565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161269c90615031565b60006040518083038185875af1925050503d80600081146126d9576040519150601f19603f3d011682016040523d82523d6000602084013e6126de565b606091505b5050905080612722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612719906150b8565b60405180910390fd5b505050565b6000612732826123cd565b612771576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127689061514a565b60405180910390fd5b600061277c83611799565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127eb57508373ffffffffffffffffffffffffffffffffffffffff166127d384610bb8565b73ffffffffffffffffffffffffffffffffffffffff16145b806127fc57506127fb8185612045565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661282582611799565b73ffffffffffffffffffffffffffffffffffffffff161461287b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612872906151dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e29061526e565b60405180910390fd5b6128f6838383612f47565b612901600082612439565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461295191906143fb565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129a89190614760565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b30848484612805565b612b3c84848484612f57565b612b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7290615300565b60405180910390fd5b50505050565b60606000821415612bc9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cdd565b600082905060005b60008214612bfb578080612be490614619565b915050600a82612bf491906147e5565b9150612bd1565b60008167ffffffffffffffff811115612c1757612c16613c66565b5b6040519080825280601f01601f191660200182016040528015612c495781602001600182028036833780820191505090505b5090505b60008514612cd657600182612c6291906143fb565b9150600a85612c719190615320565b6030612c7d9190614760565b60f81b818381518110612c9357612c92614c4f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ccf91906147e5565b9450612c4d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612dad57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612dbd5750612dbc826130ee565b5b9050919050565b600080612dcf61100c565b612710612ddc91906143fb565b9050600081601954334442604051602001612dfa94939291906153ba565b6040516020818303038152906040528051906020012060001c612e1d9190615320565b9050600080601a836127108110612e3757612e36614c4f565b5b015414612e5c57601a826127108110612e5357612e52614c4f565b5b01549050612e60565b8190505b6000601a600185612e7191906143fb565b6127108110612e8357612e82614c4f565b5b01541415612eb757600183612e9891906143fb565b601a836127108110612ead57612eac614c4f565b5b0181905550612ef5565b601a600184612ec691906143fb565b6127108110612ed857612ed7614c4f565b5b0154601a836127108110612eef57612eee614c4f565b5b01819055505b60196000815480929190612f0890614619565b9190505550612f216001826124f290919063ffffffff16565b935050505090565b612f43828260405180602001604052806000815250613158565b5050565b612f528383836131b3565b505050565b6000612f788473ffffffffffffffffffffffffffffffffffffffff166132c7565b156130e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fa1610b0c565b8786866040518563ffffffff1660e01b8152600401612fc3949392919061545d565b602060405180830381600087803b158015612fdd57600080fd5b505af192505050801561300e57506040513d601f19601f8201168201806040525081019061300b91906154be565b60015b613091573d806000811461303e576040519150601f19603f3d011682016040523d82523d6000602084013e613043565b606091505b50600081511415613089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308090615300565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130e6565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61316283836132da565b61316f6000848484612f57565b6131ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a590615300565b60405180910390fd5b505050565b6131be8383836134a8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613201576131fc816134ad565b613240565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461323f5761323e83826134f6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132835761327e81613663565b6132c2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132c1576132c08282613734565b5b5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561334a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334190615537565b60405180910390fd5b613353816123cd565b15613393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338a906155a3565b60405180910390fd5b61339f60008383612f47565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133ef9190614760565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161350384611851565b61350d91906143fb565b90506000600860008481526020019081526020016000205490508181146135f2576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061367791906143fb565b90506000600a60008481526020019081526020016000205490506000600983815481106136a7576136a6614c4f565b5b9060005260206000200154905080600983815481106136c9576136c8614c4f565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613718576137176155c3565b5b6001900381819060005260206000200160009055905550505050565b600061373f83611851565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546137bf906140e6565b90600052602060002090601f0160209004810192826137e15760008555613828565b82601f106137fa57805160ff1916838001178555613828565b82800160010185558215613828579182015b8281111561382757825182559160200191906001019061380c565b5b5090506138359190613839565b5090565b5b8082111561385257600081600090555060010161383a565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061388182613856565b9050919050565b61389181613876565b82525050565b6000819050919050565b6138aa81613897565b82525050565b60006040820190506138c56000830185613888565b6138d260208301846138a1565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613922816138ed565b811461392d57600080fd5b50565b60008135905061393f81613919565b92915050565b60006020828403121561395b5761395a6138e3565b5b600061396984828501613930565b91505092915050565b60008115159050919050565b61398781613972565b82525050565b60006020820190506139a2600083018461397e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139e25780820151818401526020810190506139c7565b838111156139f1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a13826139a8565b613a1d81856139b3565b9350613a2d8185602086016139c4565b613a36816139f7565b840191505092915050565b60006020820190508181036000830152613a5b8184613a08565b905092915050565b613a6c81613897565b8114613a7757600080fd5b50565b600081359050613a8981613a63565b92915050565b600060208284031215613aa557613aa46138e3565b5b6000613ab384828501613a7a565b91505092915050565b6000602082019050613ad16000830184613888565b92915050565b613ae081613876565b8114613aeb57600080fd5b50565b600081359050613afd81613ad7565b92915050565b60008060408385031215613b1a57613b196138e3565b5b6000613b2885828601613aee565b9250506020613b3985828601613a7a565b9150509250929050565b60008060408385031215613b5a57613b596138e3565b5b6000613b6885828601613a7a565b9250506020613b7985828601613aee565b9150509250929050565b6000602082019050613b9860008301846138a1565b92915050565b6000613ba982613856565b9050919050565b613bb981613b9e565b8114613bc457600080fd5b50565b600081359050613bd681613bb0565b92915050565b600060208284031215613bf257613bf16138e3565b5b6000613c0084828501613bc7565b91505092915050565b600080600060608486031215613c2257613c216138e3565b5b6000613c3086828701613aee565b9350506020613c4186828701613aee565b9250506040613c5286828701613a7a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c9e826139f7565b810181811067ffffffffffffffff82111715613cbd57613cbc613c66565b5b80604052505050565b6000613cd06138d9565b9050613cdc8282613c95565b919050565b600067ffffffffffffffff821115613cfc57613cfb613c66565b5b613d05826139f7565b9050602081019050919050565b82818337600083830152505050565b6000613d34613d2f84613ce1565b613cc6565b905082815260208101848484011115613d5057613d4f613c61565b5b613d5b848285613d12565b509392505050565b600082601f830112613d7857613d77613c5c565b5b8135613d88848260208601613d21565b91505092915050565b600060208284031215613da757613da66138e3565b5b600082013567ffffffffffffffff811115613dc557613dc46138e8565b5b613dd184828501613d63565b91505092915050565b600060208284031215613df057613def6138e3565b5b6000613dfe84828501613aee565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e3c81613897565b82525050565b6000613e4e8383613e33565b60208301905092915050565b6000602082019050919050565b6000613e7282613e07565b613e7c8185613e12565b9350613e8783613e23565b8060005b83811015613eb8578151613e9f8882613e42565b9750613eaa83613e5a565b925050600181019050613e8b565b5085935050505092915050565b60006020820190508181036000830152613edf8184613e67565b905092915050565b613ef081613972565b8114613efb57600080fd5b50565b600081359050613f0d81613ee7565b92915050565b60008060408385031215613f2a57613f296138e3565b5b6000613f3885828601613aee565b9250506020613f4985828601613efe565b9150509250929050565b600067ffffffffffffffff821115613f6e57613f6d613c66565b5b613f77826139f7565b9050602081019050919050565b6000613f97613f9284613f53565b613cc6565b905082815260208101848484011115613fb357613fb2613c61565b5b613fbe848285613d12565b509392505050565b600082601f830112613fdb57613fda613c5c565b5b8135613feb848260208601613f84565b91505092915050565b6000806000806080858703121561400e5761400d6138e3565b5b600061401c87828801613aee565b945050602061402d87828801613aee565b935050604061403e87828801613a7a565b925050606085013567ffffffffffffffff81111561405f5761405e6138e8565b5b61406b87828801613fc6565b91505092959194509250565b6000806040838503121561408e5761408d6138e3565b5b600061409c85828601613aee565b92505060206140ad85828601613aee565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140fe57607f821691505b60208210811415614112576141116140b7565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614174602c836139b3565b915061417f82614118565b604082019050919050565b600060208201905081810360008301526141a381614167565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006142066021836139b3565b9150614211826141aa565b604082019050919050565b60006020820190508181036000830152614235816141f9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006142986038836139b3565b91506142a38261423c565b604082019050919050565b600060208201905081810360008301526142c78161428b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614304601f836139b3565b915061430f826142ce565b602082019050919050565b60006020820190508181036000830152614333816142f7565b9050919050565b7f4e6569746865722073616c65206e6f722070726573616c65206973206163746960008201527f766520617420746865206d6f6d656e7400000000000000000000000000000000602082015250565b60006143966030836139b3565b91506143a18261433a565b604082019050919050565b600060208201905081810360008301526143c581614389565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061440682613897565b915061441183613897565b925082821015614424576144236143cc565b5b828203905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620426f68656d69616e2042756c6c646f67730000000000000000000000602082015250565b600061448b6035836139b3565b91506144968261442f565b604082019050919050565b600060208201905081810360008301526144ba8161447e565b9050919050565b7f596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d2060008201527f323020426f68656d69616e2042756c6c646f6773000000000000000000000000602082015250565b600061451d6034836139b3565b9150614528826144c1565b604082019050919050565b6000602082019050818103600083015261454c81614510565b9050919050565b600061455e82613897565b915061456983613897565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145a2576145a16143cc565b5b828202905092915050565b7f45746865722076616c75652073656e7420697320756e73756666696369656e74600082015250565b60006145e36020836139b3565b91506145ee826145ad565b602082019050919050565b60006020820190508181036000830152614612816145d6565b9050919050565b600061462482613897565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614657576146566143cc565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146986020836139b3565b91506146a382614662565b602082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b600061472a6026836139b3565b9150614735826146ce565b604082019050919050565b600060208201905081810360008301526147598161471d565b9050919050565b600061476b82613897565b915061477683613897565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147ab576147aa6143cc565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147f082613897565b91506147fb83613897565b92508261480b5761480a6147b6565b5b828204905092915050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000614872602b836139b3565b915061487d82614816565b604082019050919050565b600060208201905081810360008301526148a181614865565b9050919050565b6000819050919050565b60006148cd6148c86148c384613856565b6148a8565b613856565b9050919050565b60006148df826148b2565b9050919050565b60006148f1826148d4565b9050919050565b614901816148e6565b82525050565b600060408201905061491c60008301856148f8565b61492960208301846138a1565b9392505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061498c6031836139b3565b915061499782614930565b604082019050919050565b600060208201905081810360008301526149bb8161497f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614a1e602b836139b3565b9150614a29826149c2565b604082019050919050565b60006020820190508181036000830152614a4d81614a11565b9050919050565b7f53616c652068617320616c726561647920656e64656400000000000000000000600082015250565b6000614a8a6016836139b3565b9150614a9582614a54565b602082019050919050565b60006020820190508181036000830152614ab981614a7d565b9050919050565b600081519050614acf81613a63565b92915050565b600060208284031215614aeb57614aea6138e3565b5b6000614af984828501614ac0565b91505092915050565b7f535043205472656173757265204b6579733a206d757374206f776e206174206c60008201527f65617374206f6e65206b65790000000000000000000000000000000000000000602082015250565b6000614b5e602c836139b3565b9150614b6982614b02565b604082019050919050565b60006020820190508181036000830152614b8d81614b51565b9050919050565b6000604082019050614ba960008301856138a1565b614bb66020830184613888565b9392505050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614c19602c836139b3565b9150614c2482614bbd565b604082019050919050565b60006020820190508181036000830152614c4881614c0c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614cda6029836139b3565b9150614ce582614c7e565b604082019050919050565b60006020820190508181036000830152614d0981614ccd565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614d6c602a836139b3565b9150614d7782614d10565b604082019050919050565b60006020820190508181036000830152614d9b81614d5f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614dd86019836139b3565b9150614de382614da2565b602082019050919050565b60006020820190508181036000830152614e0781614dcb565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614e3b816140e6565b614e458186614e0e565b94506001821660008114614e605760018114614e7157614ea4565b60ff19831686528186019350614ea4565b614e7a85614e19565b60005b83811015614e9c57815481890152600182019150602081019050614e7d565b838801955050505b50505092915050565b6000614eb8826139a8565b614ec28185614e0e565b9350614ed28185602086016139c4565b80840191505092915050565b6000614eea8285614e2e565b9150614ef68284614ead565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f5e6026836139b3565b9150614f6982614f02565b604082019050919050565b60006020820190508181036000830152614f8d81614f51565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614fca601d836139b3565b9150614fd582614f94565b602082019050919050565b60006020820190508181036000830152614ff981614fbd565b9050919050565b600081905092915050565b50565b600061501b600083615000565b91506150268261500b565b600082019050919050565b600061503c8261500e565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006150a2603a836139b3565b91506150ad82615046565b604082019050919050565b600060208201905081810360008301526150d181615095565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615134602c836139b3565b915061513f826150d8565b604082019050919050565b6000602082019050818103600083015261516381615127565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006151c66029836139b3565b91506151d18261516a565b604082019050919050565b600060208201905081810360008301526151f5816151b9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152586024836139b3565b9150615263826151fc565b604082019050919050565b600060208201905081810360008301526152878161524b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006152ea6032836139b3565b91506152f58261528e565b604082019050919050565b60006020820190508181036000830152615319816152dd565b9050919050565b600061532b82613897565b915061533683613897565b925082615346576153456147b6565b5b828206905092915050565b6000819050919050565b61536c61536782613897565b615351565b82525050565b60008160601b9050919050565b600061538a82615372565b9050919050565b600061539c8261537f565b9050919050565b6153b46153af82613876565b615391565b82525050565b60006153c6828761535b565b6020820191506153d682866153a3565b6014820191506153e6828561535b565b6020820191506153f6828461535b565b60208201915081905095945050505050565b600081519050919050565b600082825260208201905092915050565b600061542f82615408565b6154398185615413565b93506154498185602086016139c4565b615452816139f7565b840191505092915050565b60006080820190506154726000830187613888565b61547f6020830186613888565b61548c60408301856138a1565b818103606083015261549e8184615424565b905095945050505050565b6000815190506154b881613919565b92915050565b6000602082840312156154d4576154d36138e3565b5b60006154e2848285016154a9565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006155216020836139b3565b915061552c826154eb565b602082019050919050565b6000602082019050818103600083015261555081615514565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061558d601c836139b3565b915061559882615557565b602082019050919050565b600060208201905081810360008301526155bc81615580565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220f13ce26e7ec68197b7d1fcd8e0d7272720cd1da4baa86d549feb03d3f110e1dc64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseTokenURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

77265:8104:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29291:40;29307:12;:10;:12::i;:::-;29321:9;29291:40;;;;;;;:::i;:::-;;;;;;;;77265:8104;;;;;79789:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43357:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44916:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44439:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83509:1031;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81326:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78236:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58029:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30497:613;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45806:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77480:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57697:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78004:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84587:89;;;;;;;;;;;;;:::i;:::-;;29422:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46216:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79968:502;;;;;;;;;;;;;:::i;:::-;;58219:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81004:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43051:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77531:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42781:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17910:94;;;;;;;;;;;;;:::i;:::-;;81537:603;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78184:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30197:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81163:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17259:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43526:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77680:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29997:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45209:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46472:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80767:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29793:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78097:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77876:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77592:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29607:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82259:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45575:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77965:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18159:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78288:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84726:98;;;;;;;;;;;;;:::i;:::-;;79207:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13787:98;13840:7;13867:10;13860:17;;13787:98;:::o;79789:171::-;79892:4;79916:36;79940:11;79916:23;:36::i;:::-;79909:43;;79789:171;;;:::o;43357:100::-;43411:13;43444:5;43437:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43357:100;:::o;44916:221::-;44992:7;45020:16;45028:7;45020;:16::i;:::-;45012:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45105:15;:24;45121:7;45105:24;;;;;;;;;;;;;;;;;;;;;45098:31;;44916:221;;;:::o;44439:411::-;44520:13;44536:23;44551:7;44536:14;:23::i;:::-;44520:39;;44584:5;44578:11;;:2;:11;;;;44570:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44678:5;44662:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44687:37;44704:5;44711:12;:10;:12::i;:::-;44687:16;:37::i;:::-;44662:62;44640:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;44821:21;44830:2;44834:7;44821:8;:21::i;:::-;44509:341;44439:411;;:::o;83509:1031::-;3190:1;3786:7;;:19;;3778:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3190:1;3919:7;:18;;;;83692:12:::1;;;;;;;;;;;:31;;;;83708:15;;;;;;;;;;;83692:31;83684:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;77643:4;77519:5;83882:39;;;;:::i;:::-;83848:30;83866:11;83848:13;:11;:13::i;:::-;:17;;:30;;;;:::i;:::-;:73;;83840:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;84058:1;84044:11;:15;:62;;;;;84078:28;;84063:11;:43;;84044:62;84036:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;84246:11;84232;;:25;;;;:::i;:::-;84219:9;:38;;84211:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;84341:9;84336:103;84360:11;84356:1;:15;84336:103;;;84393:34;84416:10;84393:22;:34::i;:::-;84373:3;;;;;:::i;:::-;;;;84336:103;;;;84498:34;84510:8;84520:11;84498;:34::i;:::-;3146:1:::0;4098:7;:22;;;;83509:1031;;:::o;81326:139::-;17490:12;:10;:12::i;:::-;17479:23;;:7;:5;:7::i;:::-;:23;;;17471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81444:13:::1;81413:28;:44;;;;81326:139:::0;:::o;78236:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;58029:113::-;58090:7;58117:10;:17;;;;58110:24;;58029:113;:::o;30497:613::-;30592:1;30573:7;:16;30581:7;30573:16;;;;;;;;;;;;;;;;:20;30565:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30649:21;30697:14;;30673:21;:38;;;;:::i;:::-;30649:62;;30722:15;30792:9;:18;30802:7;30792:18;;;;;;;;;;;;;;;;30777:12;;30757:7;:16;30765:7;30757:16;;;;;;;;;;;;;;;;30741:13;:32;;;;:::i;:::-;30740:49;;;;:::i;:::-;:70;;;;:::i;:::-;30722:88;;30842:1;30831:7;:12;;30823:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30946:7;30925:9;:18;30935:7;30925:18;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;30904:9;:18;30914:7;30904:18;;;;;;;;;;;;;;;:49;;;;30998:7;30981:14;;:24;;;;:::i;:::-;30964:14;:41;;;;31018:35;31036:7;31045;31018:17;:35::i;:::-;31069:33;31085:7;31094;31069:33;;;;;;;:::i;:::-;;;;;;;;30554:556;;30497:613;:::o;45806:339::-;46001:41;46020:12;:10;:12::i;:::-;46034:7;46001:18;:41::i;:::-;45993:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;46109:28;46119:4;46125:2;46129:7;46109:9;:28::i;:::-;45806:339;;;:::o;77480:44::-;77519:5;77480:44;:::o;57697:256::-;57794:7;57830:23;57847:5;57830:16;:23::i;:::-;57822:5;:31;57814:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;57919:12;:19;57932:5;57919:19;;;;;;;;;;;;;;;:26;57939:5;57919:26;;;;;;;;;;;;57912:33;;57697:256;;;;:::o;78004:35::-;;;;;;;;;;;;;:::o;84587:89::-;17490:12;:10;:12::i;:::-;17479:23;;:7;:5;:7::i;:::-;:23;;;17471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;84656:12:::1;;;;;;;;;;;84655:13;84640:12;;:28;;;;;;;;;;;;;;;;;;84587:89::o:0;29422:91::-;29466:7;29493:12;;29486:19;;29422:91;:::o;46216:185::-;46354:39;46371:4;46377:2;46381:7;46354:39;;;;;;;;;;;;:16;:39::i;:::-;46216:185;;;:::o;79968:502::-;3190:1;3786:7;;:19;;3778:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3190:1;3919:7;:18;;;;77519:5:::1;80094:1;80078:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:33;;80070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80159:28;80214:13;;;;;;;;;;;80159:69;;80298:1;80247:4;:14;;;80262:10;80274:20;;80247:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:52;80239:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;80361:4;:22;;;80384:20;;80406:10;80361:56;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;80428:34;80451:10;80428:22;:34::i;:::-;80021:449;3146:1:::0;4098:7;:22;;;;79968:502::o;58219:233::-;58294:7;58330:30;:28;:30::i;:::-;58322:5;:38;58314:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;58427:10;58438:5;58427:17;;;;;;;;:::i;:::-;;;;;;;;;;58420:24;;58219:233;;;:::o;81004:110::-;17490:12;:10;:12::i;:::-;17479:23;;:7;:5;:7::i;:::-;:23;;;17471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81095:11:::1;81079:13;:27;;;;;;;;;;;;:::i;:::-;;81004:110:::0;:::o;43051:239::-;43123:7;43143:13;43159:7;:16;43167:7;43159:16;;;;;;;;;;;;;;;;;;;;;43143:32;;43211:1;43194:19;;:5;:19;;;;43186:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43277:5;43270:12;;;43051:239;;;:::o;77531:54::-;77581:4;77531:54;:::o;42781:208::-;42853:7;42898:1;42881:19;;:5;:19;;;;42873:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42965:9;:16;42975:5;42965:16;;;;;;;;;;;;;;;;42958:23;;42781:208;;;:::o;17910:94::-;17490:12;:10;:12::i;:::-;17479:23;;:7;:5;:7::i;:::-;:23;;;17471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17975:21:::1;17993:1;17975:9;:21::i;:::-;17910:94::o:0;81537:603::-;81598:16;81691:18;81712:17;81722:6;81712:9;:17::i;:::-;81691:38;;81758:1;81744:10;:15;81740:393;;;81835:1;81821:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81814:23;;;;;81740:393;81870:23;81910:10;81896:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81870:51;;81936:13;81964:130;81988:10;81980:5;:18;81964:130;;;82044:34;82064:6;82072:5;82044:19;:34::i;:::-;82028:6;82035:5;82028:13;;;;;;;;:::i;:::-;;;;;;;:50;;;;;82000:7;;;;;:::i;:::-;;;;81964:130;;;82115:6;82108:13;;;;;81537:603;;;;:::o;78184:45::-;;;;;;;;;;;;;;;;;:::o;30197:100::-;30248:7;30275;30283:5;30275:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30268:21;;30197:100;;;:::o;81163:109::-;17490:12;:10;:12::i;:::-;17479:23;;:7;:5;:7::i;:::-;:23;;;17471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81258:6:::1;81235:20;:29;;;;81163:109:::0;:::o;17259:87::-;17305:7;17332:6;;;;;;;;;;;17325:13;;17259:87;:::o;43526:104::-;43582:13;43615:7;43608:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43526:104;:::o;77680:48::-;;;;:::o;29997:109::-;30053:7;30080:9;:18;30090:7;30080:18;;;;;;;;;;;;;;;;30073:25;;29997:109;;;:::o;45209:295::-;45324:12;:10;:12::i;:::-;45312:24;;:8;:24;;;;45304:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45424:8;45379:18;:32;45398:12;:10;:12::i;:::-;45379:32;;;;;;;;;;;;;;;:42;45412:8;45379:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45477:8;45448:48;;45463:12;:10;:12::i;:::-;45448:48;;;45487:8;45448:48;;;;;;:::i;:::-;;;;;;;;45209:295;;:::o;46472:328::-;46647:41;46666:12;:10;:12::i;:::-;46680:7;46647:18;:41::i;:::-;46639:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;46753:39;46767:4;46773:2;46777:7;46786:5;46753:13;:39::i;:::-;46472:328;;;;:::o;80767:200::-;80859:13;80916;80931:26;80948:8;80931:16;:26::i;:::-;80899:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80885:74;;80767:200;;;:::o;29793:105::-;29847:7;29874;:16;29882:7;29874:16;;;;;;;;;;;;;;;;29867:23;;29793:105;;;:::o;78097:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;77876:46::-;;;;:::o;77592:55::-;77643:4;77592:55;:::o;29607:95::-;29653:7;29680:14;;29673:21;;29607:95;:::o;82259:252::-;17490:12;:10;:12::i;:::-;17479:23;;:7;:5;:7::i;:::-;:23;;;17471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;82338:1:::1;82328:6;:11;82324:180;;;82370:17;82356:11;:31;;;;82324:180;;;82431:1;82421:6;:11;82417:87;;;82463:17;82449:11;:31;;;;82417:87;82324:180;82259:252:::0;:::o;45575:164::-;45672:4;45696:18;:25;45715:5;45696:25;;;;;;;;;;;;;;;:35;45722:8;45696:35;;;;;;;;;;;;;;;;;;;;;;;;;45689:42;;45575:164;;;;:::o;77965:32::-;;;;;;;;;;;;;:::o;18159:192::-;17490:12;:10;:12::i;:::-;17479:23;;:7;:5;:7::i;:::-;:23;;;17471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18268:1:::1;18248:22;;:8;:22;;;;18240:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18324:19;18334:8;18324:9;:19::i;:::-;18159:192:::0;:::o;78288:34::-;;;;:::o;84726:98::-;17490:12;:10;:12::i;:::-;17479:23;;:7;:5;:7::i;:::-;:23;;;17471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;84801:15:::1;;;;;;;;;;;84800:16;84782:15;;:34;;;;;;;;;;;;;;;;;;84726:98::o:0;79207:99::-;17490:12;:10;:12::i;:::-;17479:23;;:7;:5;:7::i;:::-;:23;;;17471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79293:5:::1;79277:13;;:21;;;;;;;;;;;;;;;;;;79207:99:::0;:::o;57389:224::-;57491:4;57530:35;57515:50;;;:11;:50;;;;:90;;;;57569:36;57593:11;57569:23;:36::i;:::-;57515:90;57508:97;;57389:224;;;:::o;48310:127::-;48375:4;48427:1;48399:30;;:7;:16;48407:7;48399:16;;;;;;;;;;;;;;;;;;;;;:30;;;;48392:37;;48310:127;;;:::o;52292:174::-;52394:2;52367:15;:24;52383:7;52367:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52450:7;52446:2;52412:46;;52421:23;52436:7;52421:14;:23::i;:::-;52412:46;;;;;;;;;;;;52292:174;;:::o;6927:98::-;6985:7;7016:1;7012;:5;;;;:::i;:::-;7005:12;;6927:98;;;;:::o;83264:135::-;83328:13;83344;:11;:13::i;:::-;83328:29;;83368:24;83378:3;83383:8;83368:9;:24::i;:::-;83317:82;83264:135;:::o;84868:498::-;84988:1;84963:10;:21;84974:9;84963:21;;;;;;;;;;;;;;;;:26;84959:344;;;85036:9;85006:10;:27;85017:15;;85006:27;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;85079:1;85060:15;;:20;;;;;;;:::i;:::-;;;;;;;;84959:344;85347:12;85322:10;:21;85333:9;85322:21;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;84868:498;;:::o;20627:317::-;20742:6;20717:21;:31;;20709:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20796:12;20814:9;:14;;20836:6;20814:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20795:52;;;20866:7;20858:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;20698:246;20627:317;;:::o;48604:348::-;48697:4;48722:16;48730:7;48722;:16::i;:::-;48714:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48798:13;48814:23;48829:7;48814:14;:23::i;:::-;48798:39;;48867:5;48856:16;;:7;:16;;;:51;;;;48900:7;48876:31;;:20;48888:7;48876:11;:20::i;:::-;:31;;;48856:51;:87;;;;48911:32;48928:5;48935:7;48911:16;:32::i;:::-;48856:87;48848:96;;;48604:348;;;;:::o;51596:578::-;51755:4;51728:31;;:23;51743:7;51728:14;:23::i;:::-;:31;;;51720:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51838:1;51824:16;;:2;:16;;;;51816:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51894:39;51915:4;51921:2;51925:7;51894:20;:39::i;:::-;51998:29;52015:1;52019:7;51998:8;:29::i;:::-;52059:1;52040:9;:15;52050:4;52040:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;52088:1;52071:9;:13;52081:2;52071:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;52119:2;52100:7;:16;52108:7;52100:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;52158:7;52154:2;52139:27;;52148:4;52139:27;;;;;;;;;;;;51596:578;;;:::o;18359:173::-;18415:16;18434:6;;;;;;;;;;;18415:25;;18460:8;18451:6;;:17;;;;;;;;;;;;;;;;;;18515:8;18484:40;;18505:8;18484:40;;;;;;;;;;;;18404:128;18359:173;:::o;47682:315::-;47839:28;47849:4;47855:2;47859:7;47839:9;:28::i;:::-;47886:48;47909:4;47915:2;47919:7;47928:5;47886:22;:48::i;:::-;47878:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;47682:315;;;;:::o;11403:723::-;11459:13;11689:1;11680:5;:10;11676:53;;;11707:10;;;;;;;;;;;;;;;;;;;;;11676:53;11739:12;11754:5;11739:20;;11770:14;11795:78;11810:1;11802:4;:9;11795:78;;11828:8;;;;;:::i;:::-;;;;11859:2;11851:10;;;;;:::i;:::-;;;11795:78;;;11883:19;11915:6;11905:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11883:39;;11933:154;11949:1;11940:5;:10;11933:154;;11977:1;11967:11;;;;;:::i;:::-;;;12044:2;12036:5;:10;;;;:::i;:::-;12023:2;:24;;;;:::i;:::-;12010:39;;11993:6;12000;11993:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;12073:2;12064:11;;;;;:::i;:::-;;;11933:154;;;12111:6;12097:21;;;;;11403:723;;;;:::o;42412:305::-;42514:4;42566:25;42551:40;;;:11;:40;;;;:105;;;;42623:33;42608:48;;;:11;:48;;;;42551:105;:158;;;;42673:36;42697:11;42673:23;:36::i;:::-;42551:158;42531:178;;42412:305;;;:::o;82569:644::-;82609:7;82629:17;82664:13;:11;:13::i;:::-;77519:5;82649:28;;;;:::i;:::-;82629:48;;82688:13;82794:9;82736:5;;82743:10;82755:16;82773:15;82719:70;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82709:81;;;;;;82704:87;;:99;;;;:::i;:::-;82688:115;;82814:13;82870:1;82852:7;82860:5;82852:14;;;;;;;:::i;:::-;;;;:19;82848:120;;82896:7;82904:5;82896:14;;;;;;;:::i;:::-;;;;82888:22;;82848:120;;;82951:5;82943:13;;82848:120;83014:1;82988:7;83008:1;82996:9;:13;;;;:::i;:::-;82988:22;;;;;;;:::i;:::-;;;;:27;82984:162;;;83061:1;83049:9;:13;;;;:::i;:::-;83032:7;83040:5;83032:14;;;;;;;:::i;:::-;;;:30;;;;82984:162;;;83112:7;83132:1;83120:9;:13;;;;:::i;:::-;83112:22;;;;;;;:::i;:::-;;;;83095:7;83103:5;83095:14;;;;;;;:::i;:::-;;;:39;;;;82984:162;83162:5;;:7;;;;;;;;;:::i;:::-;;;;;;83193:12;83203:1;83193:5;:9;;:12;;;;:::i;:::-;83186:19;;;;;82569:644;:::o;49294:110::-;49370:26;49380:2;49384:7;49370:26;;;;;;;;;;;;:9;:26::i;:::-;49294:110;;:::o;79547:181::-;79675:45;79702:4;79708:2;79712:7;79675:26;:45::i;:::-;79547:181;;;:::o;53031:799::-;53186:4;53207:15;:2;:13;;;:15::i;:::-;53203:620;;;53259:2;53243:36;;;53280:12;:10;:12::i;:::-;53294:4;53300:7;53309:5;53243:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53239:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53502:1;53485:6;:13;:18;53481:272;;;53528:60;;;;;;;;;;:::i;:::-;;;;;;;;53481:272;53703:6;53697:13;53688:6;53684:2;53680:15;53673:38;53239:529;53376:41;;;53366:51;;;:6;:51;;;;53359:58;;;;;53203:620;53807:4;53800:11;;53031:799;;;;;;;:::o;34391:157::-;34476:4;34515:25;34500:40;;;:11;:40;;;;34493:47;;34391:157;;;:::o;49631:321::-;49761:18;49767:2;49771:7;49761:5;:18::i;:::-;49812:54;49843:1;49847:2;49851:7;49860:5;49812:22;:54::i;:::-;49790:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;49631:321;;;:::o;59065:589::-;59209:45;59236:4;59242:2;59246:7;59209:26;:45::i;:::-;59287:1;59271:18;;:4;:18;;;59267:187;;;59306:40;59338:7;59306:31;:40::i;:::-;59267:187;;;59376:2;59368:10;;:4;:10;;;59364:90;;59395:47;59428:4;59434:7;59395:32;:47::i;:::-;59364:90;59267:187;59482:1;59468:16;;:2;:16;;;59464:183;;;59501:45;59538:7;59501:36;:45::i;:::-;59464:183;;;59574:4;59568:10;;:2;:10;;;59564:83;;59595:40;59623:2;59627:7;59595:27;:40::i;:::-;59564:83;59464:183;59065:589;;;:::o;19305:387::-;19365:4;19573:12;19640:7;19628:20;19620:28;;19683:1;19676:4;:8;19669:15;;;19305:387;;;:::o;50288:382::-;50382:1;50368:16;;:2;:16;;;;50360:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;50441:16;50449:7;50441;:16::i;:::-;50440:17;50432:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50503:45;50532:1;50536:2;50540:7;50503:20;:45::i;:::-;50578:1;50561:9;:13;50571:2;50561:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;50609:2;50590:7;:16;50598:7;50590:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50654:7;50650:2;50629:33;;50646:1;50629:33;;;;;;;;;;;;50288:382;;:::o;54402:126::-;;;;:::o;60377:164::-;60481:10;:17;;;;60454:15;:24;60470:7;60454:24;;;;;;;;;;;:44;;;;60509:10;60525:7;60509:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60377:164;:::o;61168:988::-;61434:22;61484:1;61459:22;61476:4;61459:16;:22::i;:::-;:26;;;;:::i;:::-;61434:51;;61496:18;61517:17;:26;61535:7;61517:26;;;;;;;;;;;;61496:47;;61664:14;61650:10;:28;61646:328;;61695:19;61717:12;:18;61730:4;61717:18;;;;;;;;;;;;;;;:34;61736:14;61717:34;;;;;;;;;;;;61695:56;;61801:11;61768:12;:18;61781:4;61768:18;;;;;;;;;;;;;;;:30;61787:10;61768:30;;;;;;;;;;;:44;;;;61918:10;61885:17;:30;61903:11;61885:30;;;;;;;;;;;:43;;;;61680:294;61646:328;62070:17;:26;62088:7;62070:26;;;;;;;;;;;62063:33;;;62114:12;:18;62127:4;62114:18;;;;;;;;;;;;;;;:34;62133:14;62114:34;;;;;;;;;;;62107:41;;;61249:907;;61168:988;;:::o;62451:1079::-;62704:22;62749:1;62729:10;:17;;;;:21;;;;:::i;:::-;62704:46;;62761:18;62782:15;:24;62798:7;62782:24;;;;;;;;;;;;62761:45;;63133:19;63155:10;63166:14;63155:26;;;;;;;;:::i;:::-;;;;;;;;;;63133:48;;63219:11;63194:10;63205;63194:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;63330:10;63299:15;:28;63315:11;63299:28;;;;;;;;;;;:41;;;;63471:15;:24;63487:7;63471:24;;;;;;;;;;;63464:31;;;63506:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;62522:1008;;;62451:1079;:::o;59955:221::-;60040:14;60057:20;60074:2;60057:16;:20::i;:::-;60040:37;;60115:7;60088:12;:16;60101:2;60088:16;;;;;;;;;;;;;;;:24;60105:6;60088:24;;;;;;;;;;;:34;;;;60162:6;60133:17;:26;60151:7;60133:26;;;;;;;;;;;:35;;;;60029:147;59955:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:77::-;402:7;431:5;420:16;;365:77;;;:::o;448:118::-;535:24;553:5;535:24;:::i;:::-;530:3;523:37;448:118;;:::o;572:332::-;693:4;731:2;720:9;716:18;708:26;;744:71;812:1;801:9;797:17;788:6;744:71;:::i;:::-;825:72;893:2;882:9;878:18;869:6;825:72;:::i;:::-;572:332;;;;;:::o;910:75::-;943:6;976:2;970:9;960:19;;910:75;:::o;991:117::-;1100:1;1097;1090:12;1114:117;1223:1;1220;1213:12;1237:149;1273:7;1313:66;1306:5;1302:78;1291:89;;1237:149;;;:::o;1392:120::-;1464:23;1481:5;1464:23;:::i;:::-;1457:5;1454:34;1444:62;;1502:1;1499;1492:12;1444:62;1392:120;:::o;1518:137::-;1563:5;1601:6;1588:20;1579:29;;1617:32;1643:5;1617:32;:::i;:::-;1518:137;;;;:::o;1661:327::-;1719:6;1768:2;1756:9;1747:7;1743:23;1739:32;1736:119;;;1774:79;;:::i;:::-;1736:119;1894:1;1919:52;1963:7;1954:6;1943:9;1939:22;1919:52;:::i;:::-;1909:62;;1865:116;1661:327;;;;:::o;1994:90::-;2028:7;2071:5;2064:13;2057:21;2046:32;;1994:90;;;:::o;2090:109::-;2171:21;2186:5;2171:21;:::i;:::-;2166:3;2159:34;2090:109;;:::o;2205:210::-;2292:4;2330:2;2319:9;2315:18;2307:26;;2343:65;2405:1;2394:9;2390:17;2381:6;2343:65;:::i;:::-;2205:210;;;;:::o;2421:99::-;2473:6;2507:5;2501:12;2491:22;;2421:99;;;:::o;2526:169::-;2610:11;2644:6;2639:3;2632:19;2684:4;2679:3;2675:14;2660:29;;2526:169;;;;:::o;2701:307::-;2769:1;2779:113;2793:6;2790:1;2787:13;2779:113;;;2878:1;2873:3;2869:11;2863:18;2859:1;2854:3;2850:11;2843:39;2815:2;2812:1;2808:10;2803:15;;2779:113;;;2910:6;2907:1;2904:13;2901:101;;;2990:1;2981:6;2976:3;2972:16;2965:27;2901:101;2750:258;2701:307;;;:::o;3014:102::-;3055:6;3106:2;3102:7;3097:2;3090:5;3086:14;3082:28;3072:38;;3014:102;;;:::o;3122:364::-;3210:3;3238:39;3271:5;3238:39;:::i;:::-;3293:71;3357:6;3352:3;3293:71;:::i;:::-;3286:78;;3373:52;3418:6;3413:3;3406:4;3399:5;3395:16;3373:52;:::i;:::-;3450:29;3472:6;3450:29;:::i;:::-;3445:3;3441:39;3434:46;;3214:272;3122:364;;;;:::o;3492:313::-;3605:4;3643:2;3632:9;3628:18;3620:26;;3692:9;3686:4;3682:20;3678:1;3667:9;3663:17;3656:47;3720:78;3793:4;3784:6;3720:78;:::i;:::-;3712:86;;3492:313;;;;:::o;3811:122::-;3884:24;3902:5;3884:24;:::i;:::-;3877:5;3874:35;3864:63;;3923:1;3920;3913:12;3864:63;3811:122;:::o;3939:139::-;3985:5;4023:6;4010:20;4001:29;;4039:33;4066:5;4039:33;:::i;:::-;3939:139;;;;:::o;4084:329::-;4143:6;4192:2;4180:9;4171:7;4167:23;4163:32;4160:119;;;4198:79;;:::i;:::-;4160:119;4318:1;4343:53;4388:7;4379:6;4368:9;4364:22;4343:53;:::i;:::-;4333:63;;4289:117;4084:329;;;;:::o;4419:222::-;4512:4;4550:2;4539:9;4535:18;4527:26;;4563:71;4631:1;4620:9;4616:17;4607:6;4563:71;:::i;:::-;4419:222;;;;:::o;4647:122::-;4720:24;4738:5;4720:24;:::i;:::-;4713:5;4710:35;4700:63;;4759:1;4756;4749:12;4700:63;4647:122;:::o;4775:139::-;4821:5;4859:6;4846:20;4837:29;;4875:33;4902:5;4875:33;:::i;:::-;4775:139;;;;:::o;4920:474::-;4988:6;4996;5045:2;5033:9;5024:7;5020:23;5016:32;5013:119;;;5051:79;;:::i;:::-;5013:119;5171:1;5196:53;5241:7;5232:6;5221:9;5217:22;5196:53;:::i;:::-;5186:63;;5142:117;5298:2;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5269:118;4920:474;;;;;:::o;5400:::-;5468:6;5476;5525:2;5513:9;5504:7;5500:23;5496:32;5493:119;;;5531:79;;:::i;:::-;5493:119;5651:1;5676:53;5721:7;5712:6;5701:9;5697:22;5676:53;:::i;:::-;5666:63;;5622:117;5778:2;5804:53;5849:7;5840:6;5829:9;5825:22;5804:53;:::i;:::-;5794:63;;5749:118;5400:474;;;;;:::o;5880:222::-;5973:4;6011:2;6000:9;5996:18;5988:26;;6024:71;6092:1;6081:9;6077:17;6068:6;6024:71;:::i;:::-;5880:222;;;;:::o;6108:104::-;6153:7;6182:24;6200:5;6182:24;:::i;:::-;6171:35;;6108:104;;;:::o;6218:138::-;6299:32;6325:5;6299:32;:::i;:::-;6292:5;6289:43;6279:71;;6346:1;6343;6336:12;6279:71;6218:138;:::o;6362:155::-;6416:5;6454:6;6441:20;6432:29;;6470:41;6505:5;6470:41;:::i;:::-;6362:155;;;;:::o;6523:345::-;6590:6;6639:2;6627:9;6618:7;6614:23;6610:32;6607:119;;;6645:79;;:::i;:::-;6607:119;6765:1;6790:61;6843:7;6834:6;6823:9;6819:22;6790:61;:::i;:::-;6780:71;;6736:125;6523:345;;;;:::o;6874:619::-;6951:6;6959;6967;7016:2;7004:9;6995:7;6991:23;6987:32;6984:119;;;7022:79;;:::i;:::-;6984:119;7142:1;7167:53;7212:7;7203:6;7192:9;7188:22;7167:53;:::i;:::-;7157:63;;7113:117;7269:2;7295:53;7340:7;7331:6;7320:9;7316:22;7295:53;:::i;:::-;7285:63;;7240:118;7397:2;7423:53;7468:7;7459:6;7448:9;7444:22;7423:53;:::i;:::-;7413:63;;7368:118;6874:619;;;;;:::o;7499:117::-;7608:1;7605;7598:12;7622:117;7731:1;7728;7721:12;7745:180;7793:77;7790:1;7783:88;7890:4;7887:1;7880:15;7914:4;7911:1;7904:15;7931:281;8014:27;8036:4;8014:27;:::i;:::-;8006:6;8002:40;8144:6;8132:10;8129:22;8108:18;8096:10;8093:34;8090:62;8087:88;;;8155:18;;:::i;:::-;8087:88;8195:10;8191:2;8184:22;7974:238;7931:281;;:::o;8218:129::-;8252:6;8279:20;;:::i;:::-;8269:30;;8308:33;8336:4;8328:6;8308:33;:::i;:::-;8218:129;;;:::o;8353:308::-;8415:4;8505:18;8497:6;8494:30;8491:56;;;8527:18;;:::i;:::-;8491:56;8565:29;8587:6;8565:29;:::i;:::-;8557:37;;8649:4;8643;8639:15;8631:23;;8353:308;;;:::o;8667:154::-;8751:6;8746:3;8741;8728:30;8813:1;8804:6;8799:3;8795:16;8788:27;8667:154;;;:::o;8827:412::-;8905:5;8930:66;8946:49;8988:6;8946:49;:::i;:::-;8930:66;:::i;:::-;8921:75;;9019:6;9012:5;9005:21;9057:4;9050:5;9046:16;9095:3;9086:6;9081:3;9077:16;9074:25;9071:112;;;9102:79;;:::i;:::-;9071:112;9192:41;9226:6;9221:3;9216;9192:41;:::i;:::-;8911:328;8827:412;;;;;:::o;9259:340::-;9315:5;9364:3;9357:4;9349:6;9345:17;9341:27;9331:122;;9372:79;;:::i;:::-;9331:122;9489:6;9476:20;9514:79;9589:3;9581:6;9574:4;9566:6;9562:17;9514:79;:::i;:::-;9505:88;;9321:278;9259:340;;;;:::o;9605:509::-;9674:6;9723:2;9711:9;9702:7;9698:23;9694:32;9691:119;;;9729:79;;:::i;:::-;9691:119;9877:1;9866:9;9862:17;9849:31;9907:18;9899:6;9896:30;9893:117;;;9929:79;;:::i;:::-;9893:117;10034:63;10089:7;10080:6;10069:9;10065:22;10034:63;:::i;:::-;10024:73;;9820:287;9605:509;;;;:::o;10120:329::-;10179:6;10228:2;10216:9;10207:7;10203:23;10199:32;10196:119;;;10234:79;;:::i;:::-;10196:119;10354:1;10379:53;10424:7;10415:6;10404:9;10400:22;10379:53;:::i;:::-;10369:63;;10325:117;10120:329;;;;:::o;10455:114::-;10522:6;10556:5;10550:12;10540:22;;10455:114;;;:::o;10575:184::-;10674:11;10708:6;10703:3;10696:19;10748:4;10743:3;10739:14;10724:29;;10575:184;;;;:::o;10765:132::-;10832:4;10855:3;10847:11;;10885:4;10880:3;10876:14;10868:22;;10765:132;;;:::o;10903:108::-;10980:24;10998:5;10980:24;:::i;:::-;10975:3;10968:37;10903:108;;:::o;11017:179::-;11086:10;11107:46;11149:3;11141:6;11107:46;:::i;:::-;11185:4;11180:3;11176:14;11162:28;;11017:179;;;;:::o;11202:113::-;11272:4;11304;11299:3;11295:14;11287:22;;11202:113;;;:::o;11351:732::-;11470:3;11499:54;11547:5;11499:54;:::i;:::-;11569:86;11648:6;11643:3;11569:86;:::i;:::-;11562:93;;11679:56;11729:5;11679:56;:::i;:::-;11758:7;11789:1;11774:284;11799:6;11796:1;11793:13;11774:284;;;11875:6;11869:13;11902:63;11961:3;11946:13;11902:63;:::i;:::-;11895:70;;11988:60;12041:6;11988:60;:::i;:::-;11978:70;;11834:224;11821:1;11818;11814:9;11809:14;;11774:284;;;11778:14;12074:3;12067:10;;11475:608;;;11351:732;;;;:::o;12089:373::-;12232:4;12270:2;12259:9;12255:18;12247:26;;12319:9;12313:4;12309:20;12305:1;12294:9;12290:17;12283:47;12347:108;12450:4;12441:6;12347:108;:::i;:::-;12339:116;;12089:373;;;;:::o;12468:116::-;12538:21;12553:5;12538:21;:::i;:::-;12531:5;12528:32;12518:60;;12574:1;12571;12564:12;12518:60;12468:116;:::o;12590:133::-;12633:5;12671:6;12658:20;12649:29;;12687:30;12711:5;12687:30;:::i;:::-;12590:133;;;;:::o;12729:468::-;12794:6;12802;12851:2;12839:9;12830:7;12826:23;12822:32;12819:119;;;12857:79;;:::i;:::-;12819:119;12977:1;13002:53;13047:7;13038:6;13027:9;13023:22;13002:53;:::i;:::-;12992:63;;12948:117;13104:2;13130:50;13172:7;13163:6;13152:9;13148:22;13130:50;:::i;:::-;13120:60;;13075:115;12729:468;;;;;:::o;13203:307::-;13264:4;13354:18;13346:6;13343:30;13340:56;;;13376:18;;:::i;:::-;13340:56;13414:29;13436:6;13414:29;:::i;:::-;13406:37;;13498:4;13492;13488:15;13480:23;;13203:307;;;:::o;13516:410::-;13593:5;13618:65;13634:48;13675:6;13634:48;:::i;:::-;13618:65;:::i;:::-;13609:74;;13706:6;13699:5;13692:21;13744:4;13737:5;13733:16;13782:3;13773:6;13768:3;13764:16;13761:25;13758:112;;;13789:79;;:::i;:::-;13758:112;13879:41;13913:6;13908:3;13903;13879:41;:::i;:::-;13599:327;13516:410;;;;;:::o;13945:338::-;14000:5;14049:3;14042:4;14034:6;14030:17;14026:27;14016:122;;14057:79;;:::i;:::-;14016:122;14174:6;14161:20;14199:78;14273:3;14265:6;14258:4;14250:6;14246:17;14199:78;:::i;:::-;14190:87;;14006:277;13945:338;;;;:::o;14289:943::-;14384:6;14392;14400;14408;14457:3;14445:9;14436:7;14432:23;14428:33;14425:120;;;14464:79;;:::i;:::-;14425:120;14584:1;14609:53;14654:7;14645:6;14634:9;14630:22;14609:53;:::i;:::-;14599:63;;14555:117;14711:2;14737:53;14782:7;14773:6;14762:9;14758:22;14737:53;:::i;:::-;14727:63;;14682:118;14839:2;14865:53;14910:7;14901:6;14890:9;14886:22;14865:53;:::i;:::-;14855:63;;14810:118;14995:2;14984:9;14980:18;14967:32;15026:18;15018:6;15015:30;15012:117;;;15048:79;;:::i;:::-;15012:117;15153:62;15207:7;15198:6;15187:9;15183:22;15153:62;:::i;:::-;15143:72;;14938:287;14289:943;;;;;;;:::o;15238:474::-;15306:6;15314;15363:2;15351:9;15342:7;15338:23;15334:32;15331:119;;;15369:79;;:::i;:::-;15331:119;15489:1;15514:53;15559:7;15550:6;15539:9;15535:22;15514:53;:::i;:::-;15504:63;;15460:117;15616:2;15642:53;15687:7;15678:6;15667:9;15663:22;15642:53;:::i;:::-;15632:63;;15587:118;15238:474;;;;;:::o;15718:180::-;15766:77;15763:1;15756:88;15863:4;15860:1;15853:15;15887:4;15884:1;15877:15;15904:320;15948:6;15985:1;15979:4;15975:12;15965:22;;16032:1;16026:4;16022:12;16053:18;16043:81;;16109:4;16101:6;16097:17;16087:27;;16043:81;16171:2;16163:6;16160:14;16140:18;16137:38;16134:84;;;16190:18;;:::i;:::-;16134:84;15955:269;15904:320;;;:::o;16230:231::-;16370:34;16366:1;16358:6;16354:14;16347:58;16439:14;16434:2;16426:6;16422:15;16415:39;16230:231;:::o;16467:366::-;16609:3;16630:67;16694:2;16689:3;16630:67;:::i;:::-;16623:74;;16706:93;16795:3;16706:93;:::i;:::-;16824:2;16819:3;16815:12;16808:19;;16467:366;;;:::o;16839:419::-;17005:4;17043:2;17032:9;17028:18;17020:26;;17092:9;17086:4;17082:20;17078:1;17067:9;17063:17;17056:47;17120:131;17246:4;17120:131;:::i;:::-;17112:139;;16839:419;;;:::o;17264:220::-;17404:34;17400:1;17392:6;17388:14;17381:58;17473:3;17468:2;17460:6;17456:15;17449:28;17264:220;:::o;17490:366::-;17632:3;17653:67;17717:2;17712:3;17653:67;:::i;:::-;17646:74;;17729:93;17818:3;17729:93;:::i;:::-;17847:2;17842:3;17838:12;17831:19;;17490:366;;;:::o;17862:419::-;18028:4;18066:2;18055:9;18051:18;18043:26;;18115:9;18109:4;18105:20;18101:1;18090:9;18086:17;18079:47;18143:131;18269:4;18143:131;:::i;:::-;18135:139;;17862:419;;;:::o;18287:243::-;18427:34;18423:1;18415:6;18411:14;18404:58;18496:26;18491:2;18483:6;18479:15;18472:51;18287:243;:::o;18536:366::-;18678:3;18699:67;18763:2;18758:3;18699:67;:::i;:::-;18692:74;;18775:93;18864:3;18775:93;:::i;:::-;18893:2;18888:3;18884:12;18877:19;;18536:366;;;:::o;18908:419::-;19074:4;19112:2;19101:9;19097:18;19089:26;;19161:9;19155:4;19151:20;19147:1;19136:9;19132:17;19125:47;19189:131;19315:4;19189:131;:::i;:::-;19181:139;;18908:419;;;:::o;19333:181::-;19473:33;19469:1;19461:6;19457:14;19450:57;19333:181;:::o;19520:366::-;19662:3;19683:67;19747:2;19742:3;19683:67;:::i;:::-;19676:74;;19759:93;19848:3;19759:93;:::i;:::-;19877:2;19872:3;19868:12;19861:19;;19520:366;;;:::o;19892:419::-;20058:4;20096:2;20085:9;20081:18;20073:26;;20145:9;20139:4;20135:20;20131:1;20120:9;20116:17;20109:47;20173:131;20299:4;20173:131;:::i;:::-;20165:139;;19892:419;;;:::o;20317:235::-;20457:34;20453:1;20445:6;20441:14;20434:58;20526:18;20521:2;20513:6;20509:15;20502:43;20317:235;:::o;20558:366::-;20700:3;20721:67;20785:2;20780:3;20721:67;:::i;:::-;20714:74;;20797:93;20886:3;20797:93;:::i;:::-;20915:2;20910:3;20906:12;20899:19;;20558:366;;;:::o;20930:419::-;21096:4;21134:2;21123:9;21119:18;21111:26;;21183:9;21177:4;21173:20;21169:1;21158:9;21154:17;21147:47;21211:131;21337:4;21211:131;:::i;:::-;21203:139;;20930:419;;;:::o;21355:180::-;21403:77;21400:1;21393:88;21500:4;21497:1;21490:15;21524:4;21521:1;21514:15;21541:191;21581:4;21601:20;21619:1;21601:20;:::i;:::-;21596:25;;21635:20;21653:1;21635:20;:::i;:::-;21630:25;;21674:1;21671;21668:8;21665:34;;;21679:18;;:::i;:::-;21665:34;21724:1;21721;21717:9;21709:17;;21541:191;;;;:::o;21738:240::-;21878:34;21874:1;21866:6;21862:14;21855:58;21947:23;21942:2;21934:6;21930:15;21923:48;21738:240;:::o;21984:366::-;22126:3;22147:67;22211:2;22206:3;22147:67;:::i;:::-;22140:74;;22223:93;22312:3;22223:93;:::i;:::-;22341:2;22336:3;22332:12;22325:19;;21984:366;;;:::o;22356:419::-;22522:4;22560:2;22549:9;22545:18;22537:26;;22609:9;22603:4;22599:20;22595:1;22584:9;22580:17;22573:47;22637:131;22763:4;22637:131;:::i;:::-;22629:139;;22356:419;;;:::o;22781:239::-;22921:34;22917:1;22909:6;22905:14;22898:58;22990:22;22985:2;22977:6;22973:15;22966:47;22781:239;:::o;23026:366::-;23168:3;23189:67;23253:2;23248:3;23189:67;:::i;:::-;23182:74;;23265:93;23354:3;23265:93;:::i;:::-;23383:2;23378:3;23374:12;23367:19;;23026:366;;;:::o;23398:419::-;23564:4;23602:2;23591:9;23587:18;23579:26;;23651:9;23645:4;23641:20;23637:1;23626:9;23622:17;23615:47;23679:131;23805:4;23679:131;:::i;:::-;23671:139;;23398:419;;;:::o;23823:348::-;23863:7;23886:20;23904:1;23886:20;:::i;:::-;23881:25;;23920:20;23938:1;23920:20;:::i;:::-;23915:25;;24108:1;24040:66;24036:74;24033:1;24030:81;24025:1;24018:9;24011:17;24007:105;24004:131;;;24115:18;;:::i;:::-;24004:131;24163:1;24160;24156:9;24145:20;;23823:348;;;;:::o;24177:182::-;24317:34;24313:1;24305:6;24301:14;24294:58;24177:182;:::o;24365:366::-;24507:3;24528:67;24592:2;24587:3;24528:67;:::i;:::-;24521:74;;24604:93;24693:3;24604:93;:::i;:::-;24722:2;24717:3;24713:12;24706:19;;24365:366;;;:::o;24737:419::-;24903:4;24941:2;24930:9;24926:18;24918:26;;24990:9;24984:4;24980:20;24976:1;24965:9;24961:17;24954:47;25018:131;25144:4;25018:131;:::i;:::-;25010:139;;24737:419;;;:::o;25162:233::-;25201:3;25224:24;25242:5;25224:24;:::i;:::-;25215:33;;25270:66;25263:5;25260:77;25257:103;;;25340:18;;:::i;:::-;25257:103;25387:1;25380:5;25376:13;25369:20;;25162:233;;;:::o;25401:182::-;25541:34;25537:1;25529:6;25525:14;25518:58;25401:182;:::o;25589:366::-;25731:3;25752:67;25816:2;25811:3;25752:67;:::i;:::-;25745:74;;25828:93;25917:3;25828:93;:::i;:::-;25946:2;25941:3;25937:12;25930:19;;25589:366;;;:::o;25961:419::-;26127:4;26165:2;26154:9;26150:18;26142:26;;26214:9;26208:4;26204:20;26200:1;26189:9;26185:17;26178:47;26242:131;26368:4;26242:131;:::i;:::-;26234:139;;25961:419;;;:::o;26386:225::-;26526:34;26522:1;26514:6;26510:14;26503:58;26595:8;26590:2;26582:6;26578:15;26571:33;26386:225;:::o;26617:366::-;26759:3;26780:67;26844:2;26839:3;26780:67;:::i;:::-;26773:74;;26856:93;26945:3;26856:93;:::i;:::-;26974:2;26969:3;26965:12;26958:19;;26617:366;;;:::o;26989:419::-;27155:4;27193:2;27182:9;27178:18;27170:26;;27242:9;27236:4;27232:20;27228:1;27217:9;27213:17;27206:47;27270:131;27396:4;27270:131;:::i;:::-;27262:139;;26989:419;;;:::o;27414:305::-;27454:3;27473:20;27491:1;27473:20;:::i;:::-;27468:25;;27507:20;27525:1;27507:20;:::i;:::-;27502:25;;27661:1;27593:66;27589:74;27586:1;27583:81;27580:107;;;27667:18;;:::i;:::-;27580:107;27711:1;27708;27704:9;27697:16;;27414:305;;;;:::o;27725:180::-;27773:77;27770:1;27763:88;27870:4;27867:1;27860:15;27894:4;27891:1;27884:15;27911:185;27951:1;27968:20;27986:1;27968:20;:::i;:::-;27963:25;;28002:20;28020:1;28002:20;:::i;:::-;27997:25;;28041:1;28031:35;;28046:18;;:::i;:::-;28031:35;28088:1;28085;28081:9;28076:14;;27911:185;;;;:::o;28102:230::-;28242:34;28238:1;28230:6;28226:14;28219:58;28311:13;28306:2;28298:6;28294:15;28287:38;28102:230;:::o;28338:366::-;28480:3;28501:67;28565:2;28560:3;28501:67;:::i;:::-;28494:74;;28577:93;28666:3;28577:93;:::i;:::-;28695:2;28690:3;28686:12;28679:19;;28338:366;;;:::o;28710:419::-;28876:4;28914:2;28903:9;28899:18;28891:26;;28963:9;28957:4;28953:20;28949:1;28938:9;28934:17;28927:47;28991:131;29117:4;28991:131;:::i;:::-;28983:139;;28710:419;;;:::o;29135:60::-;29163:3;29184:5;29177:12;;29135:60;;;:::o;29201:142::-;29251:9;29284:53;29302:34;29311:24;29329:5;29311:24;:::i;:::-;29302:34;:::i;:::-;29284:53;:::i;:::-;29271:66;;29201:142;;;:::o;29349:126::-;29399:9;29432:37;29463:5;29432:37;:::i;:::-;29419:50;;29349:126;;;:::o;29481:134::-;29539:9;29572:37;29603:5;29572:37;:::i;:::-;29559:50;;29481:134;;;:::o;29621:147::-;29716:45;29755:5;29716:45;:::i;:::-;29711:3;29704:58;29621:147;;:::o;29774:348::-;29903:4;29941:2;29930:9;29926:18;29918:26;;29954:79;30030:1;30019:9;30015:17;30006:6;29954:79;:::i;:::-;30043:72;30111:2;30100:9;30096:18;30087:6;30043:72;:::i;:::-;29774:348;;;;;:::o;30128:236::-;30268:34;30264:1;30256:6;30252:14;30245:58;30337:19;30332:2;30324:6;30320:15;30313:44;30128:236;:::o;30370:366::-;30512:3;30533:67;30597:2;30592:3;30533:67;:::i;:::-;30526:74;;30609:93;30698:3;30609:93;:::i;:::-;30727:2;30722:3;30718:12;30711:19;;30370:366;;;:::o;30742:419::-;30908:4;30946:2;30935:9;30931:18;30923:26;;30995:9;30989:4;30985:20;30981:1;30970:9;30966:17;30959:47;31023:131;31149:4;31023:131;:::i;:::-;31015:139;;30742:419;;;:::o;31167:230::-;31307:34;31303:1;31295:6;31291:14;31284:58;31376:13;31371:2;31363:6;31359:15;31352:38;31167:230;:::o;31403:366::-;31545:3;31566:67;31630:2;31625:3;31566:67;:::i;:::-;31559:74;;31642:93;31731:3;31642:93;:::i;:::-;31760:2;31755:3;31751:12;31744:19;;31403:366;;;:::o;31775:419::-;31941:4;31979:2;31968:9;31964:18;31956:26;;32028:9;32022:4;32018:20;32014:1;32003:9;31999:17;31992:47;32056:131;32182:4;32056:131;:::i;:::-;32048:139;;31775:419;;;:::o;32200:172::-;32340:24;32336:1;32328:6;32324:14;32317:48;32200:172;:::o;32378:366::-;32520:3;32541:67;32605:2;32600:3;32541:67;:::i;:::-;32534:74;;32617:93;32706:3;32617:93;:::i;:::-;32735:2;32730:3;32726:12;32719:19;;32378:366;;;:::o;32750:419::-;32916:4;32954:2;32943:9;32939:18;32931:26;;33003:9;32997:4;32993:20;32989:1;32978:9;32974:17;32967:47;33031:131;33157:4;33031:131;:::i;:::-;33023:139;;32750:419;;;:::o;33175:143::-;33232:5;33263:6;33257:13;33248:22;;33279:33;33306:5;33279:33;:::i;:::-;33175:143;;;;:::o;33324:351::-;33394:6;33443:2;33431:9;33422:7;33418:23;33414:32;33411:119;;;33449:79;;:::i;:::-;33411:119;33569:1;33594:64;33650:7;33641:6;33630:9;33626:22;33594:64;:::i;:::-;33584:74;;33540:128;33324:351;;;;:::o;33681:231::-;33821:34;33817:1;33809:6;33805:14;33798:58;33890:14;33885:2;33877:6;33873:15;33866:39;33681:231;:::o;33918:366::-;34060:3;34081:67;34145:2;34140:3;34081:67;:::i;:::-;34074:74;;34157:93;34246:3;34157:93;:::i;:::-;34275:2;34270:3;34266:12;34259:19;;33918:366;;;:::o;34290:419::-;34456:4;34494:2;34483:9;34479:18;34471:26;;34543:9;34537:4;34533:20;34529:1;34518:9;34514:17;34507:47;34571:131;34697:4;34571:131;:::i;:::-;34563:139;;34290:419;;;:::o;34715:332::-;34836:4;34874:2;34863:9;34859:18;34851:26;;34887:71;34955:1;34944:9;34940:17;34931:6;34887:71;:::i;:::-;34968:72;35036:2;35025:9;35021:18;35012:6;34968:72;:::i;:::-;34715:332;;;;;:::o;35053:231::-;35193:34;35189:1;35181:6;35177:14;35170:58;35262:14;35257:2;35249:6;35245:15;35238:39;35053:231;:::o;35290:366::-;35432:3;35453:67;35517:2;35512:3;35453:67;:::i;:::-;35446:74;;35529:93;35618:3;35529:93;:::i;:::-;35647:2;35642:3;35638:12;35631:19;;35290:366;;;:::o;35662:419::-;35828:4;35866:2;35855:9;35851:18;35843:26;;35915:9;35909:4;35905:20;35901:1;35890:9;35886:17;35879:47;35943:131;36069:4;35943:131;:::i;:::-;35935:139;;35662:419;;;:::o;36087:180::-;36135:77;36132:1;36125:88;36232:4;36229:1;36222:15;36256:4;36253:1;36246:15;36273:228;36413:34;36409:1;36401:6;36397:14;36390:58;36482:11;36477:2;36469:6;36465:15;36458:36;36273:228;:::o;36507:366::-;36649:3;36670:67;36734:2;36729:3;36670:67;:::i;:::-;36663:74;;36746:93;36835:3;36746:93;:::i;:::-;36864:2;36859:3;36855:12;36848:19;;36507:366;;;:::o;36879:419::-;37045:4;37083:2;37072:9;37068:18;37060:26;;37132:9;37126:4;37122:20;37118:1;37107:9;37103:17;37096:47;37160:131;37286:4;37160:131;:::i;:::-;37152:139;;36879:419;;;:::o;37304:229::-;37444:34;37440:1;37432:6;37428:14;37421:58;37513:12;37508:2;37500:6;37496:15;37489:37;37304:229;:::o;37539:366::-;37681:3;37702:67;37766:2;37761:3;37702:67;:::i;:::-;37695:74;;37778:93;37867:3;37778:93;:::i;:::-;37896:2;37891:3;37887:12;37880:19;;37539:366;;;:::o;37911:419::-;38077:4;38115:2;38104:9;38100:18;38092:26;;38164:9;38158:4;38154:20;38150:1;38139:9;38135:17;38128:47;38192:131;38318:4;38192:131;:::i;:::-;38184:139;;37911:419;;;:::o;38336:175::-;38476:27;38472:1;38464:6;38460:14;38453:51;38336:175;:::o;38517:366::-;38659:3;38680:67;38744:2;38739:3;38680:67;:::i;:::-;38673:74;;38756:93;38845:3;38756:93;:::i;:::-;38874:2;38869:3;38865:12;38858:19;;38517:366;;;:::o;38889:419::-;39055:4;39093:2;39082:9;39078:18;39070:26;;39142:9;39136:4;39132:20;39128:1;39117:9;39113:17;39106:47;39170:131;39296:4;39170:131;:::i;:::-;39162:139;;38889:419;;;:::o;39314:148::-;39416:11;39453:3;39438:18;;39314:148;;;;:::o;39468:141::-;39517:4;39540:3;39532:11;;39563:3;39560:1;39553:14;39597:4;39594:1;39584:18;39576:26;;39468:141;;;:::o;39639:845::-;39742:3;39779:5;39773:12;39808:36;39834:9;39808:36;:::i;:::-;39860:89;39942:6;39937:3;39860:89;:::i;:::-;39853:96;;39980:1;39969:9;39965:17;39996:1;39991:137;;;;40142:1;40137:341;;;;39958:520;;39991:137;40075:4;40071:9;40060;40056:25;40051:3;40044:38;40111:6;40106:3;40102:16;40095:23;;39991:137;;40137:341;40204:38;40236:5;40204:38;:::i;:::-;40264:1;40278:154;40292:6;40289:1;40286:13;40278:154;;;40366:7;40360:14;40356:1;40351:3;40347:11;40340:35;40416:1;40407:7;40403:15;40392:26;;40314:4;40311:1;40307:12;40302:17;;40278:154;;;40461:6;40456:3;40452:16;40445:23;;40144:334;;39958:520;;39746:738;;39639:845;;;;:::o;40490:377::-;40596:3;40624:39;40657:5;40624:39;:::i;:::-;40679:89;40761:6;40756:3;40679:89;:::i;:::-;40672:96;;40777:52;40822:6;40817:3;40810:4;40803:5;40799:16;40777:52;:::i;:::-;40854:6;40849:3;40845:16;40838:23;;40600:267;40490:377;;;;:::o;40873:429::-;41050:3;41072:92;41160:3;41151:6;41072:92;:::i;:::-;41065:99;;41181:95;41272:3;41263:6;41181:95;:::i;:::-;41174:102;;41293:3;41286:10;;40873:429;;;;;:::o;41308:225::-;41448:34;41444:1;41436:6;41432:14;41425:58;41517:8;41512:2;41504:6;41500:15;41493:33;41308:225;:::o;41539:366::-;41681:3;41702:67;41766:2;41761:3;41702:67;:::i;:::-;41695:74;;41778:93;41867:3;41778:93;:::i;:::-;41896:2;41891:3;41887:12;41880:19;;41539:366;;;:::o;41911:419::-;42077:4;42115:2;42104:9;42100:18;42092:26;;42164:9;42158:4;42154:20;42150:1;42139:9;42135:17;42128:47;42192:131;42318:4;42192:131;:::i;:::-;42184:139;;41911:419;;;:::o;42336:179::-;42476:31;42472:1;42464:6;42460:14;42453:55;42336:179;:::o;42521:366::-;42663:3;42684:67;42748:2;42743:3;42684:67;:::i;:::-;42677:74;;42760:93;42849:3;42760:93;:::i;:::-;42878:2;42873:3;42869:12;42862:19;;42521:366;;;:::o;42893:419::-;43059:4;43097:2;43086:9;43082:18;43074:26;;43146:9;43140:4;43136:20;43132:1;43121:9;43117:17;43110:47;43174:131;43300:4;43174:131;:::i;:::-;43166:139;;42893:419;;;:::o;43318:147::-;43419:11;43456:3;43441:18;;43318:147;;;;:::o;43471:114::-;;:::o;43591:398::-;43750:3;43771:83;43852:1;43847:3;43771:83;:::i;:::-;43764:90;;43863:93;43952:3;43863:93;:::i;:::-;43981:1;43976:3;43972:11;43965:18;;43591:398;;;:::o;43995:379::-;44179:3;44201:147;44344:3;44201:147;:::i;:::-;44194:154;;44365:3;44358:10;;43995:379;;;:::o;44380:245::-;44520:34;44516:1;44508:6;44504:14;44497:58;44589:28;44584:2;44576:6;44572:15;44565:53;44380:245;:::o;44631:366::-;44773:3;44794:67;44858:2;44853:3;44794:67;:::i;:::-;44787:74;;44870:93;44959:3;44870:93;:::i;:::-;44988:2;44983:3;44979:12;44972:19;;44631:366;;;:::o;45003:419::-;45169:4;45207:2;45196:9;45192:18;45184:26;;45256:9;45250:4;45246:20;45242:1;45231:9;45227:17;45220:47;45284:131;45410:4;45284:131;:::i;:::-;45276:139;;45003:419;;;:::o;45428:231::-;45568:34;45564:1;45556:6;45552:14;45545:58;45637:14;45632:2;45624:6;45620:15;45613:39;45428:231;:::o;45665:366::-;45807:3;45828:67;45892:2;45887:3;45828:67;:::i;:::-;45821:74;;45904:93;45993:3;45904:93;:::i;:::-;46022:2;46017:3;46013:12;46006:19;;45665:366;;;:::o;46037:419::-;46203:4;46241:2;46230:9;46226:18;46218:26;;46290:9;46284:4;46280:20;46276:1;46265:9;46261:17;46254:47;46318:131;46444:4;46318:131;:::i;:::-;46310:139;;46037:419;;;:::o;46462:228::-;46602:34;46598:1;46590:6;46586:14;46579:58;46671:11;46666:2;46658:6;46654:15;46647:36;46462:228;:::o;46696:366::-;46838:3;46859:67;46923:2;46918:3;46859:67;:::i;:::-;46852:74;;46935:93;47024:3;46935:93;:::i;:::-;47053:2;47048:3;47044:12;47037:19;;46696:366;;;:::o;47068:419::-;47234:4;47272:2;47261:9;47257:18;47249:26;;47321:9;47315:4;47311:20;47307:1;47296:9;47292:17;47285:47;47349:131;47475:4;47349:131;:::i;:::-;47341:139;;47068:419;;;:::o;47493:223::-;47633:34;47629:1;47621:6;47617:14;47610:58;47702:6;47697:2;47689:6;47685:15;47678:31;47493:223;:::o;47722:366::-;47864:3;47885:67;47949:2;47944:3;47885:67;:::i;:::-;47878:74;;47961:93;48050:3;47961:93;:::i;:::-;48079:2;48074:3;48070:12;48063:19;;47722:366;;;:::o;48094:419::-;48260:4;48298:2;48287:9;48283:18;48275:26;;48347:9;48341:4;48337:20;48333:1;48322:9;48318:17;48311:47;48375:131;48501:4;48375:131;:::i;:::-;48367:139;;48094:419;;;:::o;48519:237::-;48659:34;48655:1;48647:6;48643:14;48636:58;48728:20;48723:2;48715:6;48711:15;48704:45;48519:237;:::o;48762:366::-;48904:3;48925:67;48989:2;48984:3;48925:67;:::i;:::-;48918:74;;49001:93;49090:3;49001:93;:::i;:::-;49119:2;49114:3;49110:12;49103:19;;48762:366;;;:::o;49134:419::-;49300:4;49338:2;49327:9;49323:18;49315:26;;49387:9;49381:4;49377:20;49373:1;49362:9;49358:17;49351:47;49415:131;49541:4;49415:131;:::i;:::-;49407:139;;49134:419;;;:::o;49559:176::-;49591:1;49608:20;49626:1;49608:20;:::i;:::-;49603:25;;49642:20;49660:1;49642:20;:::i;:::-;49637:25;;49681:1;49671:35;;49686:18;;:::i;:::-;49671:35;49727:1;49724;49720:9;49715:14;;49559:176;;;;:::o;49741:79::-;49780:7;49809:5;49798:16;;49741:79;;;:::o;49826:157::-;49931:45;49951:24;49969:5;49951:24;:::i;:::-;49931:45;:::i;:::-;49926:3;49919:58;49826:157;;:::o;49989:94::-;50022:8;50070:5;50066:2;50062:14;50041:35;;49989:94;;;:::o;50089:::-;50128:7;50157:20;50171:5;50157:20;:::i;:::-;50146:31;;50089:94;;;:::o;50189:100::-;50228:7;50257:26;50277:5;50257:26;:::i;:::-;50246:37;;50189:100;;;:::o;50295:157::-;50400:45;50420:24;50438:5;50420:24;:::i;:::-;50400:45;:::i;:::-;50395:3;50388:58;50295:157;;:::o;50458:679::-;50654:3;50669:75;50740:3;50731:6;50669:75;:::i;:::-;50769:2;50764:3;50760:12;50753:19;;50782:75;50853:3;50844:6;50782:75;:::i;:::-;50882:2;50877:3;50873:12;50866:19;;50895:75;50966:3;50957:6;50895:75;:::i;:::-;50995:2;50990:3;50986:12;50979:19;;51008:75;51079:3;51070:6;51008:75;:::i;:::-;51108:2;51103:3;51099:12;51092:19;;51128:3;51121:10;;50458:679;;;;;;;:::o;51143:98::-;51194:6;51228:5;51222:12;51212:22;;51143:98;;;:::o;51247:168::-;51330:11;51364:6;51359:3;51352:19;51404:4;51399:3;51395:14;51380:29;;51247:168;;;;:::o;51421:360::-;51507:3;51535:38;51567:5;51535:38;:::i;:::-;51589:70;51652:6;51647:3;51589:70;:::i;:::-;51582:77;;51668:52;51713:6;51708:3;51701:4;51694:5;51690:16;51668:52;:::i;:::-;51745:29;51767:6;51745:29;:::i;:::-;51740:3;51736:39;51729:46;;51511:270;51421:360;;;;:::o;51787:640::-;51982:4;52020:3;52009:9;52005:19;51997:27;;52034:71;52102:1;52091:9;52087:17;52078:6;52034:71;:::i;:::-;52115:72;52183:2;52172:9;52168:18;52159:6;52115:72;:::i;:::-;52197;52265:2;52254:9;52250:18;52241:6;52197:72;:::i;:::-;52316:9;52310:4;52306:20;52301:2;52290:9;52286:18;52279:48;52344:76;52415:4;52406:6;52344:76;:::i;:::-;52336:84;;51787:640;;;;;;;:::o;52433:141::-;52489:5;52520:6;52514:13;52505:22;;52536:32;52562:5;52536:32;:::i;:::-;52433:141;;;;:::o;52580:349::-;52649:6;52698:2;52686:9;52677:7;52673:23;52669:32;52666:119;;;52704:79;;:::i;:::-;52666:119;52824:1;52849:63;52904:7;52895:6;52884:9;52880:22;52849:63;:::i;:::-;52839:73;;52795:127;52580:349;;;;:::o;52935:182::-;53075:34;53071:1;53063:6;53059:14;53052:58;52935:182;:::o;53123:366::-;53265:3;53286:67;53350:2;53345:3;53286:67;:::i;:::-;53279:74;;53362:93;53451:3;53362:93;:::i;:::-;53480:2;53475:3;53471:12;53464:19;;53123:366;;;:::o;53495:419::-;53661:4;53699:2;53688:9;53684:18;53676:26;;53748:9;53742:4;53738:20;53734:1;53723:9;53719:17;53712:47;53776:131;53902:4;53776:131;:::i;:::-;53768:139;;53495:419;;;:::o;53920:178::-;54060:30;54056:1;54048:6;54044:14;54037:54;53920:178;:::o;54104:366::-;54246:3;54267:67;54331:2;54326:3;54267:67;:::i;:::-;54260:74;;54343:93;54432:3;54343:93;:::i;:::-;54461:2;54456:3;54452:12;54445:19;;54104:366;;;:::o;54476:419::-;54642:4;54680:2;54669:9;54665:18;54657:26;;54729:9;54723:4;54719:20;54715:1;54704:9;54700:17;54693:47;54757:131;54883:4;54757:131;:::i;:::-;54749:139;;54476:419;;;:::o;54901:180::-;54949:77;54946:1;54939:88;55046:4;55043:1;55036:15;55070:4;55067:1;55060:15

Swarm Source

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