ETH Price: $2,594.58 (+0.74%)

Token

Trump Dick (DICK)
 

Overview

Max Total Supply

10,000,000,010,000,000,000 DICK

Holders

32

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100,000,000 DICK

Value
$0.00
0x0E9a2dE8Cff1C83856C8D914d546c20DAe77C9fF
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xA4dd3FDc...dd8Bb0534
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
trumpdick

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-15
*/

// Telegram: https://t.me/trumpdicketh

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: lzDoge/erc20.sol


pragma solidity ^0.8.10;



pragma solidity >=0.5.0;

interface ILayerZeroUserApplicationConfig {
    function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external;
    function setSendVersion(uint16 _version) external;
    function setReceiveVersion(uint16 _version) external;
    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
}
pragma solidity >=0.5.0;
interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
    function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;
    function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external;
    function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64);
    function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64);
    function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee);
    function getChainId() external view returns (uint16);
    function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external;
    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);
    function getSendLibraryAddress(address _userApplication) external view returns (address);
    function getReceiveLibraryAddress(address _userApplication) external view returns (address);
    function isSendingPayload() external view returns (bool);
    function isReceivingPayload() external view returns (bool);
    function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory);
    function getSendVersion(address _userApplication) external view returns (uint16);
    function getReceiveVersion(address _userApplication) external view returns (uint16);
}
pragma solidity >=0.5.0;
interface ILayerZeroReceiver {
    function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external;
}
abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {
    ILayerZeroEndpoint internal endpoint;
    struct FailedMessages {
        uint payloadLength;
        bytes32 payloadHash;
    }
    mapping(uint16 => mapping(bytes => mapping(uint => FailedMessages))) public failedMessages;
    mapping(uint16 => bytes) public trustedRemoteLookup;
    event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload);
    function lzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) external override {
        require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security
        require(_srcAddress.length == trustedRemoteLookup[_srcChainId].length && keccak256(_srcAddress) == keccak256(trustedRemoteLookup[_srcChainId]), 
            "NonblockingReceiver: invalid source sending contract");
        try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) {
        } catch {
            failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(_payload.length, keccak256(_payload));
            emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload);
        }
    }

    function onLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) public {
        require(msg.sender == address(this), "NonblockingReceiver: caller must be Bridge.");
        _LzReceive( _srcChainId, _srcAddress, _nonce, _payload);
    }
    function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) virtual internal;
    function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _txParam) internal {
        endpoint.send{value: msg.value}(_dstChainId, trustedRemoteLookup[_dstChainId], _payload, _refundAddress, _zroPaymentAddress, _txParam);
    }

    function retryMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes calldata _payload) external payable {
        FailedMessages storage failedMsg = failedMessages[_srcChainId][_srcAddress][_nonce];
        require(failedMsg.payloadHash != bytes32(0), "NonblockingReceiver: no stored message");
        require(_payload.length == failedMsg.payloadLength && keccak256(_payload) == failedMsg.payloadHash, "LayerZero: invalid payload");
        failedMsg.payloadLength = 0;
        failedMsg.payloadHash = bytes32(0);
        this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    function setMultipleTrustedRemotes(uint16[] calldata _chainIds, bytes[] calldata _trustedRemotes) external onlyOwner {
        require(_chainIds.length == _trustedRemotes.length, "Chain IDs and remotes length mismatch");

        for (uint i = 0; i < _chainIds.length; i++) {
            trustedRemoteLookup[_chainIds[i]] = _trustedRemotes[i];
        }
    }
}
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {    
    function WETH() external pure returns (address);
}
contract trumpdick is ERC20, ERC20Burnable, Ownable, NonblockingReceiver{
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    uint256 public _totalSupply = 10000000000 * 10 ** decimals();
    uint256 public maxWalletLimit = (_totalSupply / 100) * 5;  // Maksimum %5 of total supply
    bool public swapEnabled = false;

    uint gasForDestinationLzReceive = 350000;
    uint256 public chainID;
    constructor(address _layerZeroEndpoint , uint256 _chainID) ERC20("Trump Dick", "DICK"){
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        chainID = _chainID;
        _mint(msg.sender , _totalSupply);
    }
    function _transfer(address from, address to, uint256 amount) internal override{
        if (from != owner() && to != uniswapV2Pair && to != address(uniswapV2Router)) {
            require(balanceOf(to) + amount <= maxWalletLimit, "Exceeds maximum wallet token amount");
        }
        super._transfer(from, to, amount);
    }
    function estimateFeesView(uint16 _chainId , uint256 value) public view returns (uint) {
        bytes memory payload = abi.encode(msg.sender , value);

        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(version, gasForDestinationLzReceive);

        (uint messageFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);
        return messageFee;
    }
    function traverseOtherChains(uint16 _chainId , uint256 value) public payable {
        require(msg.value >= estimateFeesView(_chainId , value));
        require(balanceOf(msg.sender) >= value);
        _burn(msg.sender , value);
        require(trustedRemoteLookup[_chainId].length > 0, "This chain is currently unavailable for travel");
        
        // abi.encode() the payload with the values to send
        bytes memory payload = abi.encode(msg.sender , value);

        // encode adapterParams to specify more gas for the destination
        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(version, gasForDestinationLzReceive);

        // get the fees we need to pay to LayerZero + Relayer to cover message delivery
        // you will be refunded for extra gas paid
        (uint messageFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);
        
        require(msg.value >= messageFee, "LD: msg.value not enough to cover messageFee. Send gas for message fees");

        endpoint.send{value: msg.value}(
            _chainId,                           // destination chainId
            trustedRemoteLookup[_chainId],      // destination address of nft contract
            payload,                            // abi.encoded()'ed bytes
            payable(msg.sender),                // refund address
            address(0x0),                       // 'zroPaymentAddress' unused for this
            adapterParams                       // txParameters 
        );

    }  
    function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) override internal {
        // decode
        (address toAddr , uint256 value) = abi.decode(_payload, (address , uint256));

        // mint the tokens back into existence on destination chain
        _mint(toAddr, value);
    }  
    function createPair(address _uniswapV2Router, address _uniswapV2Factory) external onlyOwner{
        uniswapV2Router = IUniswapV2Router02(_uniswapV2Router);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Factory).createPair(address(this), uniswapV2Router.WETH());
    }
    function setMaxWallet(uint256 val) external onlyOwner{
        maxWalletLimit = val;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_layerZeroEndpoint","type":"address"},{"internalType":"uint256","name":"_chainID","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"chainID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Router","type":"address"},{"internalType":"address","name":"_uniswapV2Factory","type":"address"}],"name":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"estimateFeesView","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16[]","name":"_chainIds","type":"uint16[]"},{"internalType":"bytes[]","name":"_trustedRemotes","type":"bytes[]"}],"name":"setMultipleTrustedRemotes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"traverseOtherChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526100126101a660201b60201c565b600a61001e919061054d565b6402540be40061002e9190610597565b600b5560056064600b546100429190610605565b61004c9190610597565b600c555f600d5f6101000a81548160ff02191690831515021790555062055730600e5534801561007a575f80fd5b50604051614a11380380614a11833981810160405281019061009c91906106bd565b6040518060400160405280600a81526020017f5472756d70204469636b000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4449434b000000000000000000000000000000000000000000000000000000008152508160039081610117919061092c565b508060049081610127919061092c565b50505061014661013b6101ae60201b60201c565b6101b560201b60201c565b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f8190555061019f33600b5461027860201b60201c565b5050610ace565b5f6012905090565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102dd90610a55565b60405180910390fd5b6102f75f83836103d260201b60201c565b8060025f8282546103089190610a73565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103b59190610ab5565b60405180910390a36103ce5f83836103d760201b60201c565b5050565b505050565b505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561045e5780860481111561043a576104396103dc565b5b60018516156104495780820291505b808102905061045785610409565b945061041e565b94509492505050565b5f826104765760019050610531565b81610483575f9050610531565b816001811461049957600281146104a3576104d2565b6001915050610531565b60ff8411156104b5576104b46103dc565b5b8360020a9150848211156104cc576104cb6103dc565b5b50610531565b5060208310610133831016604e8410600b84101617156105075782820a905083811115610502576105016103dc565b5b610531565b6105148484846001610415565b9250905081840481111561052b5761052a6103dc565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f61055782610538565b915061056283610541565b925061058f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610467565b905092915050565b5f6105a182610538565b91506105ac83610538565b92508282026105ba81610538565b915082820484148315176105d1576105d06103dc565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61060f82610538565b915061061a83610538565b92508261062a576106296105d8565b5b828204905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61066282610639565b9050919050565b61067281610658565b811461067c575f80fd5b50565b5f8151905061068d81610669565b92915050565b61069c81610538565b81146106a6575f80fd5b50565b5f815190506106b781610693565b92915050565b5f80604083850312156106d3576106d2610635565b5b5f6106e08582860161067f565b92505060206106f1858286016106a9565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061077657607f821691505b60208210810361078957610788610732565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026107eb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826107b0565b6107f586836107b0565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61083061082b61082684610538565b61080d565b610538565b9050919050565b5f819050919050565b61084983610816565b61085d61085582610837565b8484546107bc565b825550505050565b5f90565b610871610865565b61087c818484610840565b505050565b5b8181101561089f576108945f82610869565b600181019050610882565b5050565b601f8211156108e4576108b58161078f565b6108be846107a1565b810160208510156108cd578190505b6108e16108d9856107a1565b830182610881565b50505b505050565b5f82821c905092915050565b5f6109045f19846008026108e9565b1980831691505092915050565b5f61091c83836108f5565b9150826002028217905092915050565b610935826106fb565b67ffffffffffffffff81111561094e5761094d610705565b5b610958825461075f565b6109638282856108a3565b5f60209050601f831160018114610994575f8415610982578287015190505b61098c8582610911565b8655506109f3565b601f1984166109a28661078f565b5f5b828110156109c9578489015182556001820191506020850194506020810190506109a4565b868310156109e657848901516109e2601f8916826108f5565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610a3f601f836109fb565b9150610a4a82610a0b565b602082019050919050565b5f6020820190508181035f830152610a6c81610a33565b9050919050565b5f610a7d82610538565b9150610a8883610538565b9250828201905080821115610aa057610a9f6103dc565b5b92915050565b610aaf81610538565b82525050565b5f602082019050610ac85f830184610aa6565b92915050565b613f3680610adb5f395ff3fe6080604052600436106101e1575f3560e01c806370a0823111610101578063a457c2d711610094578063d1deba1f11610063578063d1deba1f146106f2578063d2fcb6d51461070e578063dd62ed3e14610736578063f2fde38b14610772576101e1565b8063a457c2d714610628578063a9059cbb14610664578063adc879e9146106a0578063c9c65396146106ca576101e1565b80638cef430d116100d05780638cef430d1461057b5780638da5cb5b146105975780638ee74912146105c157806395d89b41146105fe576101e1565b806370a08231146104c5578063715018a6146105015780637533d7881461051757806379cc679014610553576101e1565b806339509351116101795780635b30d081116101485780635b30d0811461040d5780635d0044ca1461044957806366a88d96146104715780636ddd17131461049b576101e1565b806339509351146103555780633eaaf86b1461039157806342966c68146103bb57806349bd5a5e146103e3576101e1565b806318160ddd116101b557806318160ddd1461029d5780631c37a822146102c757806323b872dd146102ef578063313ce5671461032b576101e1565b80621d3567146101e557806306fdde031461020d578063095ea7b3146102375780631694505e14610273575b5f80fd5b3480156101f0575f80fd5b5061020b600480360381019061020691906123ac565b61079a565b005b348015610218575f80fd5b506102216109cd565b60405161022e91906124a8565b60405180910390f35b348015610242575f80fd5b5061025d60048036038101906102589190612555565b610a5d565b60405161026a91906125ad565b60405180910390f35b34801561027e575f80fd5b50610287610a7f565b6040516102949190612621565b60405180910390f35b3480156102a8575f80fd5b506102b1610aa4565b6040516102be9190612649565b60405180910390f35b3480156102d2575f80fd5b506102ed60048036038101906102e891906123ac565b610aad565b005b3480156102fa575f80fd5b5061031560048036038101906103109190612662565b610b2d565b60405161032291906125ad565b60405180910390f35b348015610336575f80fd5b5061033f610b5b565b60405161034c91906126cd565b60405180910390f35b348015610360575f80fd5b5061037b60048036038101906103769190612555565b610b63565b60405161038891906125ad565b60405180910390f35b34801561039c575f80fd5b506103a5610b99565b6040516103b29190612649565b60405180910390f35b3480156103c6575f80fd5b506103e160048036038101906103dc91906126e6565b610b9f565b005b3480156103ee575f80fd5b506103f7610bb3565b6040516104049190612720565b60405180910390f35b348015610418575f80fd5b50610433600480360381019061042e9190612739565b610bd8565b6040516104409190612649565b60405180910390f35b348015610454575f80fd5b5061046f600480360381019061046a91906126e6565b610cdb565b005b34801561047c575f80fd5b50610485610ced565b6040516104929190612649565b60405180910390f35b3480156104a6575f80fd5b506104af610cf3565b6040516104bc91906125ad565b60405180910390f35b3480156104d0575f80fd5b506104eb60048036038101906104e69190612777565b610d05565b6040516104f89190612649565b60405180910390f35b34801561050c575f80fd5b50610515610d4a565b005b348015610522575f80fd5b5061053d600480360381019061053891906127a2565b610d5d565b60405161054a919061281f565b60405180910390f35b34801561055e575f80fd5b5061057960048036038101906105749190612555565b610df8565b005b61059560048036038101906105909190612739565b610e18565b005b3480156105a2575f80fd5b506105ab61109d565b6040516105b89190612720565b60405180910390f35b3480156105cc575f80fd5b506105e760048036038101906105e2919061283f565b6110c5565b6040516105f59291906128c3565b60405180910390f35b348015610609575f80fd5b50610612611113565b60405161061f91906124a8565b60405180910390f35b348015610633575f80fd5b5061064e60048036038101906106499190612555565b6111a3565b60405161065b91906125ad565b60405180910390f35b34801561066f575f80fd5b5061068a60048036038101906106859190612555565b611218565b60405161069791906125ad565b60405180910390f35b3480156106ab575f80fd5b506106b461123a565b6040516106c19190612649565b60405180910390f35b3480156106d5575f80fd5b506106f060048036038101906106eb91906128ea565b611240565b005b61070c60048036038101906107079190612985565b6113d3565b005b348015610719575f80fd5b50610734600480360381019061072f9190612acf565b611563565b005b348015610741575f80fd5b5061075c600480360381019061075791906128ea565b611647565b6040516107699190612649565b60405180910390f35b34801561077d575f80fd5b5061079860048036038101906107939190612777565b6116c9565b005b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107f2575f80fd5b60085f8561ffff1661ffff1681526020019081526020015f20805461081690612b7a565b9050835114801561085a575060085f8561ffff1661ffff1681526020019081526020015f206040516108489190612c46565b60405180910390208380519060200120145b610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090612ccc565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b81526004016108d89493929190612d08565b5f604051808303815f87803b1580156108ef575f80fd5b505af1925050508015610900575060015b6109c657604051806040016040528082518152602001828051906020012081525060075f8661ffff1661ffff1681526020019081526020015f20846040516109489190612d89565b90815260200160405180910390205f8467ffffffffffffffff1681526020019081526020015f205f820151815f0155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d848484846040516109b99493929190612d08565b60405180910390a16109c7565b5b50505050565b6060600380546109dc90612b7a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890612b7a565b8015610a535780601f10610a2a57610100808354040283529160200191610a53565b820191905f5260205f20905b815481529060010190602001808311610a3657829003601f168201915b5050505050905090565b5f80610a6761174b565b9050610a74818585611752565b600191505092915050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1290612e0f565b60405180910390fd5b610b2784848484611915565b50505050565b5f80610b3761174b565b9050610b44858285611941565b610b4f8585856119cc565b60019150509392505050565b5f6012905090565b5f80610b6d61174b565b9050610b8e818585610b7f8589611647565b610b899190612e5a565b611752565b600191505092915050565b600b5481565b610bb0610baa61174b565b82611b23565b50565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f803383604051602001610bed929190612e8d565b60405160208183030381529060405290505f600190505f81600e54604051602001610c19929190612f08565b60405160208183030381529060405290505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108830875f876040518663ffffffff1660e01b8152600401610c8d959493929190612f33565b6040805180830381865afa158015610ca7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ccb9190612fa6565b5090508094505050505092915050565b610ce3611ce6565b80600c8190555050565b600c5481565b600d5f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d52611ce6565b610d5b5f611d64565b565b6008602052805f5260405f205f915090508054610d7990612b7a565b80601f0160208091040260200160405190810160405280929190818152602001828054610da590612b7a565b8015610df05780601f10610dc757610100808354040283529160200191610df0565b820191905f5260205f20905b815481529060010190602001808311610dd357829003601f168201915b505050505081565b610e0a82610e0461174b565b83611941565b610e148282611b23565b5050565b610e228282610bd8565b341015610e2d575f80fd5b80610e3733610d05565b1015610e41575f80fd5b610e4b3382611b23565b5f60085f8461ffff1661ffff1681526020019081526020015f208054610e7090612b7a565b905011610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990613054565b60405180910390fd5b5f3382604051602001610ec6929190612e8d565b60405160208183030381529060405290505f600190505f81600e54604051602001610ef2929190612f08565b60405160208183030381529060405290505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730875f876040518663ffffffff1660e01b8152600401610f66959493929190612f33565b6040805180830381865afa158015610f80573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fa49190612fa6565b50905080341015610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190613108565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c5803100348860085f8b61ffff1661ffff1681526020019081526020015f2088335f896040518863ffffffff1660e01b8152600401611067969594939291906131c7565b5f604051808303818588803b15801561107e575f80fd5b505af1158015611090573d5f803e3d5ffd5b5050505050505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6007602052825f5260405f2082805160208101820180518482526020830160208501208183528095505050505050602052805f5260405f205f925092505050805f0154908060010154905082565b60606004805461112290612b7a565b80601f016020809104026020016040519081016040528092919081815260200182805461114e90612b7a565b80156111995780601f1061117057610100808354040283529160200191611199565b820191905f5260205f20905b81548152906001019060200180831161117c57829003601f168201915b5050505050905090565b5f806111ad61174b565b90505f6111ba8286611647565b9050838110156111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f6906132ab565b60405180910390fd5b61120c8286868403611752565b60019250505092915050565b5f8061122261174b565b905061122f8185856119cc565b600191505092915050565b600f5481565b611248611ce6565b8160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c9c653963060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561130f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061133391906132dd565b6040518363ffffffff1660e01b8152600401611350929190613308565b6020604051808303815f875af115801561136c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139091906132dd565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f60075f8761ffff1661ffff1681526020019081526020015f20856040516113fb9190612d89565b90815260200160405180910390205f8567ffffffffffffffff1681526020019081526020015f2090505f801b81600101540361146c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114639061339f565b60405180910390fd5b805f01548383905014801561149b5750806001015483836040516114919291906133e1565b6040518091039020145b6114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190613443565b60405180910390fd5b5f815f01819055505f801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b815260040161152e95949392919061348d565b5f604051808303815f87803b158015611545575f80fd5b505af1158015611557573d5f803e3d5ffd5b50505050505050505050565b61156b611ce6565b8181905084849050146115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90613550565b60405180910390fd5b5f5b84849050811015611640578282828181106115d3576115d261356e565b5b90506020028101906115e591906135a7565b60085f8888868181106115fb576115fa61356e565b5b905060200201602081019061161091906127a2565b61ffff1661ffff1681526020019081526020015f209182611632929190613795565b5080806001019150506115b5565b5050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6116d1611ce6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906138d2565b60405180910390fd5b61174881611d64565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790613960565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611825906139ee565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119089190612649565b60405180910390a3505050565b5f808280602001905181019061192b9190613a36565b915091506119398282611e27565b505050505050565b5f61194c8484611647565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119c657818110156119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90613abe565b60405180910390fd5b6119c58484848403611752565b5b50505050565b6119d461109d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a5c5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ab5575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611b1357600c5481611ac784610d05565b611ad19190612e5a565b1115611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0990613b4c565b60405180910390fd5b5b611b1e838383611f75565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890613bda565b60405180910390fd5b611b9c825f836121e1565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690613c68565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cce9190612649565b60405180910390a3611ce1835f846121e6565b505050565b611cee61174b565b73ffffffffffffffffffffffffffffffffffffffff16611d0c61109d565b73ffffffffffffffffffffffffffffffffffffffff1614611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990613cd0565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c90613d38565b60405180910390fd5b611ea05f83836121e1565b8060025f828254611eb19190612e5a565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611f5e9190612649565b60405180910390a3611f715f83836121e6565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fda90613dc6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204890613e54565b60405180910390fd5b61205c8383836121e1565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d690613ee2565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121c89190612649565b60405180910390a36121db8484846121e6565b50505050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f61ffff82169050919050565b612212816121fc565b811461221c575f80fd5b50565b5f8135905061222d81612209565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6122818261223b565b810181811067ffffffffffffffff821117156122a05761229f61224b565b5b80604052505050565b5f6122b26121eb565b90506122be8282612278565b919050565b5f67ffffffffffffffff8211156122dd576122dc61224b565b5b6122e68261223b565b9050602081019050919050565b828183375f83830152505050565b5f61231361230e846122c3565b6122a9565b90508281526020810184848401111561232f5761232e612237565b5b61233a8482856122f3565b509392505050565b5f82601f83011261235657612355612233565b5b8135612366848260208601612301565b91505092915050565b5f67ffffffffffffffff82169050919050565b61238b8161236f565b8114612395575f80fd5b50565b5f813590506123a681612382565b92915050565b5f805f80608085870312156123c4576123c36121f4565b5b5f6123d18782880161221f565b945050602085013567ffffffffffffffff8111156123f2576123f16121f8565b5b6123fe87828801612342565b935050604061240f87828801612398565b925050606085013567ffffffffffffffff8111156124305761242f6121f8565b5b61243c87828801612342565b91505092959194509250565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f61247a82612448565b6124848185612452565b9350612494818560208601612462565b61249d8161223b565b840191505092915050565b5f6020820190508181035f8301526124c08184612470565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124f1826124c8565b9050919050565b612501816124e7565b811461250b575f80fd5b50565b5f8135905061251c816124f8565b92915050565b5f819050919050565b61253481612522565b811461253e575f80fd5b50565b5f8135905061254f8161252b565b92915050565b5f806040838503121561256b5761256a6121f4565b5b5f6125788582860161250e565b925050602061258985828601612541565b9150509250929050565b5f8115159050919050565b6125a781612593565b82525050565b5f6020820190506125c05f83018461259e565b92915050565b5f819050919050565b5f6125e96125e46125df846124c8565b6125c6565b6124c8565b9050919050565b5f6125fa826125cf565b9050919050565b5f61260b826125f0565b9050919050565b61261b81612601565b82525050565b5f6020820190506126345f830184612612565b92915050565b61264381612522565b82525050565b5f60208201905061265c5f83018461263a565b92915050565b5f805f60608486031215612679576126786121f4565b5b5f6126868682870161250e565b93505060206126978682870161250e565b92505060406126a886828701612541565b9150509250925092565b5f60ff82169050919050565b6126c7816126b2565b82525050565b5f6020820190506126e05f8301846126be565b92915050565b5f602082840312156126fb576126fa6121f4565b5b5f61270884828501612541565b91505092915050565b61271a816124e7565b82525050565b5f6020820190506127335f830184612711565b92915050565b5f806040838503121561274f5761274e6121f4565b5b5f61275c8582860161221f565b925050602061276d85828601612541565b9150509250929050565b5f6020828403121561278c5761278b6121f4565b5b5f6127998482850161250e565b91505092915050565b5f602082840312156127b7576127b66121f4565b5b5f6127c48482850161221f565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f6127f1826127cd565b6127fb81856127d7565b935061280b818560208601612462565b6128148161223b565b840191505092915050565b5f6020820190508181035f83015261283781846127e7565b905092915050565b5f805f60608486031215612856576128556121f4565b5b5f6128638682870161221f565b935050602084013567ffffffffffffffff811115612884576128836121f8565b5b61289086828701612342565b92505060406128a186828701612541565b9150509250925092565b5f819050919050565b6128bd816128ab565b82525050565b5f6040820190506128d65f83018561263a565b6128e360208301846128b4565b9392505050565b5f8060408385031215612900576128ff6121f4565b5b5f61290d8582860161250e565b925050602061291e8582860161250e565b9150509250929050565b5f80fd5b5f80fd5b5f8083601f84011261294557612944612233565b5b8235905067ffffffffffffffff81111561296257612961612928565b5b60208301915083600182028301111561297e5761297d61292c565b5b9250929050565b5f805f805f6080868803121561299e5761299d6121f4565b5b5f6129ab8882890161221f565b955050602086013567ffffffffffffffff8111156129cc576129cb6121f8565b5b6129d888828901612342565b94505060406129e988828901612398565b935050606086013567ffffffffffffffff811115612a0a57612a096121f8565b5b612a1688828901612930565b92509250509295509295909350565b5f8083601f840112612a3a57612a39612233565b5b8235905067ffffffffffffffff811115612a5757612a56612928565b5b602083019150836020820283011115612a7357612a7261292c565b5b9250929050565b5f8083601f840112612a8f57612a8e612233565b5b8235905067ffffffffffffffff811115612aac57612aab612928565b5b602083019150836020820283011115612ac857612ac761292c565b5b9250929050565b5f805f8060408587031215612ae757612ae66121f4565b5b5f85013567ffffffffffffffff811115612b0457612b036121f8565b5b612b1087828801612a25565b9450945050602085013567ffffffffffffffff811115612b3357612b326121f8565b5b612b3f87828801612a7a565b925092505092959194509250565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612b9157607f821691505b602082108103612ba457612ba3612b4d565b5b50919050565b5f81905092915050565b5f819050815f5260205f209050919050565b5f8154612bd281612b7a565b612bdc8186612baa565b9450600182165f8114612bf65760018114612c0b57612c3d565b60ff1983168652811515820286019350612c3d565b612c1485612bb4565b5f5b83811015612c3557815481890152600182019150602081019050612c16565b838801955050505b50505092915050565b5f612c518284612bc6565b915081905092915050565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f755f8201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b5f612cb6603483612452565b9150612cc182612c5c565b604082019050919050565b5f6020820190508181035f830152612ce381612caa565b9050919050565b612cf3816121fc565b82525050565b612d028161236f565b82525050565b5f608082019050612d1b5f830187612cea565b8181036020830152612d2d81866127e7565b9050612d3c6040830185612cf9565b8181036060830152612d4e81846127e7565b905095945050505050565b5f612d63826127cd565b612d6d8185612baa565b9350612d7d818560208601612462565b80840191505092915050565b5f612d948284612d59565b915081905092915050565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d7573745f8201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b5f612df9602b83612452565b9150612e0482612d9f565b604082019050919050565b5f6020820190508181035f830152612e2681612ded565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612e6482612522565b9150612e6f83612522565b9250828201905080821115612e8757612e86612e2d565b5b92915050565b5f604082019050612ea05f830185612711565b612ead602083018461263a565b9392505050565b5f8160f01b9050919050565b5f612eca82612eb4565b9050919050565b612ee2612edd826121fc565b612ec0565b82525050565b5f819050919050565b612f02612efd82612522565b612ee8565b82525050565b5f612f138285612ed1565b600282019150612f238284612ef1565b6020820191508190509392505050565b5f60a082019050612f465f830188612cea565b612f536020830187612711565b8181036040830152612f6581866127e7565b9050612f74606083018561259e565b8181036080830152612f8681846127e7565b90509695505050505050565b5f81519050612fa08161252b565b92915050565b5f8060408385031215612fbc57612fbb6121f4565b5b5f612fc985828601612f92565b9250506020612fda85828601612f92565b9150509250929050565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c615f8201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b5f61303e602e83612452565b915061304982612fe4565b604082019050919050565b5f6020820190508181035f83015261306b81613032565b9050919050565b7f4c443a206d73672e76616c7565206e6f7420656e6f75676820746f20636f76655f8201527f72206d6573736167654665652e2053656e642067617320666f72206d6573736160208201527f6765206665657300000000000000000000000000000000000000000000000000604082015250565b5f6130f2604783612452565b91506130fd82613072565b606082019050919050565b5f6020820190508181035f83015261311f816130e6565b9050919050565b5f815461313281612b7a565b61313c81866127d7565b9450600182165f8114613156576001811461316c5761319e565b60ff19831686528115156020028601935061319e565b61317585612bb4565b5f5b8381101561319657815481890152600182019150602081019050613177565b808801955050505b50505092915050565b5f6131b1826124c8565b9050919050565b6131c1816131a7565b82525050565b5f60c0820190506131da5f830189612cea565b81810360208301526131ec8188613126565b9050818103604083015261320081876127e7565b905061320f60608301866131b8565b61321c6080830185612711565b81810360a083015261322e81846127e7565b9050979650505050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613295602583612452565b91506132a08261323b565b604082019050919050565b5f6020820190508181035f8301526132c281613289565b9050919050565b5f815190506132d7816124f8565b92915050565b5f602082840312156132f2576132f16121f4565b5b5f6132ff848285016132c9565b91505092915050565b5f60408201905061331b5f830185612711565b6133286020830184612711565b9392505050565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d5f8201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b5f613389602683612452565b91506133948261332f565b604082019050919050565b5f6020820190508181035f8301526133b68161337d565b9050919050565b5f6133c88385612baa565b93506133d58385846122f3565b82840190509392505050565b5f6133ed8284866133bd565b91508190509392505050565b7f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000005f82015250565b5f61342d601a83612452565b9150613438826133f9565b602082019050919050565b5f6020820190508181035f83015261345a81613421565b9050919050565b5f61346c83856127d7565b93506134798385846122f3565b6134828361223b565b840190509392505050565b5f6080820190506134a05f830188612cea565b81810360208301526134b281876127e7565b90506134c16040830186612cf9565b81810360608301526134d4818486613461565b90509695505050505050565b7f436861696e2049447320616e642072656d6f746573206c656e677468206d69735f8201527f6d61746368000000000000000000000000000000000000000000000000000000602082015250565b5f61353a602583612452565b9150613545826134e0565b604082019050919050565b5f6020820190508181035f8301526135678161352e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f80fd5b5f80fd5b5f80fd5b5f80833560016020038436030381126135c3576135c261359b565b5b80840192508235915067ffffffffffffffff8211156135e5576135e461359f565b5b602083019250600182023603831315613601576136006135a3565b5b509250929050565b5f82905092915050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261365d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613622565b6136678683613622565b95508019841693508086168417925050509392505050565b5f61369961369461368f84612522565b6125c6565b612522565b9050919050565b5f819050919050565b6136b28361367f565b6136c66136be826136a0565b84845461362e565b825550505050565b5f90565b6136da6136ce565b6136e58184846136a9565b505050565b5b81811015613708576136fd5f826136d2565b6001810190506136eb565b5050565b601f82111561374d5761371e81612bb4565b61372784613613565b81016020851015613736578190505b61374a61374285613613565b8301826136ea565b50505b505050565b5f82821c905092915050565b5f61376d5f1984600802613752565b1980831691505092915050565b5f613785838361375e565b9150826002028217905092915050565b61379f8383613609565b67ffffffffffffffff8111156137b8576137b761224b565b5b6137c28254612b7a565b6137cd82828561370c565b5f601f8311600181146137fa575f84156137e8578287013590505b6137f2858261377a565b865550613859565b601f19841661380886612bb4565b5f5b8281101561382f5784890135825560018201915060208501945060208101905061380a565b8683101561384c5784890135613848601f89168261375e565b8355505b6001600288020188555050505b50505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6138bc602683612452565b91506138c782613862565b604082019050919050565b5f6020820190508181035f8301526138e9816138b0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61394a602483612452565b9150613955826138f0565b604082019050919050565b5f6020820190508181035f8301526139778161393e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6139d8602283612452565b91506139e38261397e565b604082019050919050565b5f6020820190508181035f830152613a05816139cc565b9050919050565b613a15816131a7565b8114613a1f575f80fd5b50565b5f81519050613a3081613a0c565b92915050565b5f8060408385031215613a4c57613a4b6121f4565b5b5f613a5985828601613a22565b9250506020613a6a85828601612f92565b9150509250929050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613aa8601d83612452565b9150613ab382613a74565b602082019050919050565b5f6020820190508181035f830152613ad581613a9c565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f5f8201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b5f613b36602383612452565b9150613b4182613adc565b604082019050919050565b5f6020820190508181035f830152613b6381613b2a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f613bc4602183612452565b9150613bcf82613b6a565b604082019050919050565b5f6020820190508181035f830152613bf181613bb8565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f613c52602283612452565b9150613c5d82613bf8565b604082019050919050565b5f6020820190508181035f830152613c7f81613c46565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613cba602083612452565b9150613cc582613c86565b602082019050919050565b5f6020820190508181035f830152613ce781613cae565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f613d22601f83612452565b9150613d2d82613cee565b602082019050919050565b5f6020820190508181035f830152613d4f81613d16565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613db0602583612452565b9150613dbb82613d56565b604082019050919050565b5f6020820190508181035f830152613ddd81613da4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613e3e602383612452565b9150613e4982613de4565b604082019050919050565b5f6020820190508181035f830152613e6b81613e32565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613ecc602683612452565b9150613ed782613e72565b604082019050919050565b5f6020820190508181035f830152613ef981613ec0565b905091905056fea2646970667358221220643c3e87025631d11949055489420be474d5702a9cc4a62350606d9c68a2ce7964736f6c634300081a003300000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000065

Deployed Bytecode

0x6080604052600436106101e1575f3560e01c806370a0823111610101578063a457c2d711610094578063d1deba1f11610063578063d1deba1f146106f2578063d2fcb6d51461070e578063dd62ed3e14610736578063f2fde38b14610772576101e1565b8063a457c2d714610628578063a9059cbb14610664578063adc879e9146106a0578063c9c65396146106ca576101e1565b80638cef430d116100d05780638cef430d1461057b5780638da5cb5b146105975780638ee74912146105c157806395d89b41146105fe576101e1565b806370a08231146104c5578063715018a6146105015780637533d7881461051757806379cc679014610553576101e1565b806339509351116101795780635b30d081116101485780635b30d0811461040d5780635d0044ca1461044957806366a88d96146104715780636ddd17131461049b576101e1565b806339509351146103555780633eaaf86b1461039157806342966c68146103bb57806349bd5a5e146103e3576101e1565b806318160ddd116101b557806318160ddd1461029d5780631c37a822146102c757806323b872dd146102ef578063313ce5671461032b576101e1565b80621d3567146101e557806306fdde031461020d578063095ea7b3146102375780631694505e14610273575b5f80fd5b3480156101f0575f80fd5b5061020b600480360381019061020691906123ac565b61079a565b005b348015610218575f80fd5b506102216109cd565b60405161022e91906124a8565b60405180910390f35b348015610242575f80fd5b5061025d60048036038101906102589190612555565b610a5d565b60405161026a91906125ad565b60405180910390f35b34801561027e575f80fd5b50610287610a7f565b6040516102949190612621565b60405180910390f35b3480156102a8575f80fd5b506102b1610aa4565b6040516102be9190612649565b60405180910390f35b3480156102d2575f80fd5b506102ed60048036038101906102e891906123ac565b610aad565b005b3480156102fa575f80fd5b5061031560048036038101906103109190612662565b610b2d565b60405161032291906125ad565b60405180910390f35b348015610336575f80fd5b5061033f610b5b565b60405161034c91906126cd565b60405180910390f35b348015610360575f80fd5b5061037b60048036038101906103769190612555565b610b63565b60405161038891906125ad565b60405180910390f35b34801561039c575f80fd5b506103a5610b99565b6040516103b29190612649565b60405180910390f35b3480156103c6575f80fd5b506103e160048036038101906103dc91906126e6565b610b9f565b005b3480156103ee575f80fd5b506103f7610bb3565b6040516104049190612720565b60405180910390f35b348015610418575f80fd5b50610433600480360381019061042e9190612739565b610bd8565b6040516104409190612649565b60405180910390f35b348015610454575f80fd5b5061046f600480360381019061046a91906126e6565b610cdb565b005b34801561047c575f80fd5b50610485610ced565b6040516104929190612649565b60405180910390f35b3480156104a6575f80fd5b506104af610cf3565b6040516104bc91906125ad565b60405180910390f35b3480156104d0575f80fd5b506104eb60048036038101906104e69190612777565b610d05565b6040516104f89190612649565b60405180910390f35b34801561050c575f80fd5b50610515610d4a565b005b348015610522575f80fd5b5061053d600480360381019061053891906127a2565b610d5d565b60405161054a919061281f565b60405180910390f35b34801561055e575f80fd5b5061057960048036038101906105749190612555565b610df8565b005b61059560048036038101906105909190612739565b610e18565b005b3480156105a2575f80fd5b506105ab61109d565b6040516105b89190612720565b60405180910390f35b3480156105cc575f80fd5b506105e760048036038101906105e2919061283f565b6110c5565b6040516105f59291906128c3565b60405180910390f35b348015610609575f80fd5b50610612611113565b60405161061f91906124a8565b60405180910390f35b348015610633575f80fd5b5061064e60048036038101906106499190612555565b6111a3565b60405161065b91906125ad565b60405180910390f35b34801561066f575f80fd5b5061068a60048036038101906106859190612555565b611218565b60405161069791906125ad565b60405180910390f35b3480156106ab575f80fd5b506106b461123a565b6040516106c19190612649565b60405180910390f35b3480156106d5575f80fd5b506106f060048036038101906106eb91906128ea565b611240565b005b61070c60048036038101906107079190612985565b6113d3565b005b348015610719575f80fd5b50610734600480360381019061072f9190612acf565b611563565b005b348015610741575f80fd5b5061075c600480360381019061075791906128ea565b611647565b6040516107699190612649565b60405180910390f35b34801561077d575f80fd5b5061079860048036038101906107939190612777565b6116c9565b005b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107f2575f80fd5b60085f8561ffff1661ffff1681526020019081526020015f20805461081690612b7a565b9050835114801561085a575060085f8561ffff1661ffff1681526020019081526020015f206040516108489190612c46565b60405180910390208380519060200120145b610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090612ccc565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b81526004016108d89493929190612d08565b5f604051808303815f87803b1580156108ef575f80fd5b505af1925050508015610900575060015b6109c657604051806040016040528082518152602001828051906020012081525060075f8661ffff1661ffff1681526020019081526020015f20846040516109489190612d89565b90815260200160405180910390205f8467ffffffffffffffff1681526020019081526020015f205f820151815f0155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d848484846040516109b99493929190612d08565b60405180910390a16109c7565b5b50505050565b6060600380546109dc90612b7a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890612b7a565b8015610a535780601f10610a2a57610100808354040283529160200191610a53565b820191905f5260205f20905b815481529060010190602001808311610a3657829003601f168201915b5050505050905090565b5f80610a6761174b565b9050610a74818585611752565b600191505092915050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1290612e0f565b60405180910390fd5b610b2784848484611915565b50505050565b5f80610b3761174b565b9050610b44858285611941565b610b4f8585856119cc565b60019150509392505050565b5f6012905090565b5f80610b6d61174b565b9050610b8e818585610b7f8589611647565b610b899190612e5a565b611752565b600191505092915050565b600b5481565b610bb0610baa61174b565b82611b23565b50565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f803383604051602001610bed929190612e8d565b60405160208183030381529060405290505f600190505f81600e54604051602001610c19929190612f08565b60405160208183030381529060405290505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108830875f876040518663ffffffff1660e01b8152600401610c8d959493929190612f33565b6040805180830381865afa158015610ca7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ccb9190612fa6565b5090508094505050505092915050565b610ce3611ce6565b80600c8190555050565b600c5481565b600d5f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d52611ce6565b610d5b5f611d64565b565b6008602052805f5260405f205f915090508054610d7990612b7a565b80601f0160208091040260200160405190810160405280929190818152602001828054610da590612b7a565b8015610df05780601f10610dc757610100808354040283529160200191610df0565b820191905f5260205f20905b815481529060010190602001808311610dd357829003601f168201915b505050505081565b610e0a82610e0461174b565b83611941565b610e148282611b23565b5050565b610e228282610bd8565b341015610e2d575f80fd5b80610e3733610d05565b1015610e41575f80fd5b610e4b3382611b23565b5f60085f8461ffff1661ffff1681526020019081526020015f208054610e7090612b7a565b905011610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990613054565b60405180910390fd5b5f3382604051602001610ec6929190612e8d565b60405160208183030381529060405290505f600190505f81600e54604051602001610ef2929190612f08565b60405160208183030381529060405290505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730875f876040518663ffffffff1660e01b8152600401610f66959493929190612f33565b6040805180830381865afa158015610f80573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fa49190612fa6565b50905080341015610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190613108565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c5803100348860085f8b61ffff1661ffff1681526020019081526020015f2088335f896040518863ffffffff1660e01b8152600401611067969594939291906131c7565b5f604051808303818588803b15801561107e575f80fd5b505af1158015611090573d5f803e3d5ffd5b5050505050505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6007602052825f5260405f2082805160208101820180518482526020830160208501208183528095505050505050602052805f5260405f205f925092505050805f0154908060010154905082565b60606004805461112290612b7a565b80601f016020809104026020016040519081016040528092919081815260200182805461114e90612b7a565b80156111995780601f1061117057610100808354040283529160200191611199565b820191905f5260205f20905b81548152906001019060200180831161117c57829003601f168201915b5050505050905090565b5f806111ad61174b565b90505f6111ba8286611647565b9050838110156111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f6906132ab565b60405180910390fd5b61120c8286868403611752565b60019250505092915050565b5f8061122261174b565b905061122f8185856119cc565b600191505092915050565b600f5481565b611248611ce6565b8160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c9c653963060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561130f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061133391906132dd565b6040518363ffffffff1660e01b8152600401611350929190613308565b6020604051808303815f875af115801561136c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139091906132dd565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f60075f8761ffff1661ffff1681526020019081526020015f20856040516113fb9190612d89565b90815260200160405180910390205f8567ffffffffffffffff1681526020019081526020015f2090505f801b81600101540361146c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114639061339f565b60405180910390fd5b805f01548383905014801561149b5750806001015483836040516114919291906133e1565b6040518091039020145b6114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190613443565b60405180910390fd5b5f815f01819055505f801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b815260040161152e95949392919061348d565b5f604051808303815f87803b158015611545575f80fd5b505af1158015611557573d5f803e3d5ffd5b50505050505050505050565b61156b611ce6565b8181905084849050146115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90613550565b60405180910390fd5b5f5b84849050811015611640578282828181106115d3576115d261356e565b5b90506020028101906115e591906135a7565b60085f8888868181106115fb576115fa61356e565b5b905060200201602081019061161091906127a2565b61ffff1661ffff1681526020019081526020015f209182611632929190613795565b5080806001019150506115b5565b5050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6116d1611ce6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906138d2565b60405180910390fd5b61174881611d64565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790613960565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611825906139ee565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119089190612649565b60405180910390a3505050565b5f808280602001905181019061192b9190613a36565b915091506119398282611e27565b505050505050565b5f61194c8484611647565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119c657818110156119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90613abe565b60405180910390fd5b6119c58484848403611752565b5b50505050565b6119d461109d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a5c5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ab5575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611b1357600c5481611ac784610d05565b611ad19190612e5a565b1115611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0990613b4c565b60405180910390fd5b5b611b1e838383611f75565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890613bda565b60405180910390fd5b611b9c825f836121e1565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690613c68565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cce9190612649565b60405180910390a3611ce1835f846121e6565b505050565b611cee61174b565b73ffffffffffffffffffffffffffffffffffffffff16611d0c61109d565b73ffffffffffffffffffffffffffffffffffffffff1614611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990613cd0565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c90613d38565b60405180910390fd5b611ea05f83836121e1565b8060025f828254611eb19190612e5a565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611f5e9190612649565b60405180910390a3611f715f83836121e6565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fda90613dc6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204890613e54565b60405180910390fd5b61205c8383836121e1565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d690613ee2565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121c89190612649565b60405180910390a36121db8484846121e6565b50505050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f61ffff82169050919050565b612212816121fc565b811461221c575f80fd5b50565b5f8135905061222d81612209565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6122818261223b565b810181811067ffffffffffffffff821117156122a05761229f61224b565b5b80604052505050565b5f6122b26121eb565b90506122be8282612278565b919050565b5f67ffffffffffffffff8211156122dd576122dc61224b565b5b6122e68261223b565b9050602081019050919050565b828183375f83830152505050565b5f61231361230e846122c3565b6122a9565b90508281526020810184848401111561232f5761232e612237565b5b61233a8482856122f3565b509392505050565b5f82601f83011261235657612355612233565b5b8135612366848260208601612301565b91505092915050565b5f67ffffffffffffffff82169050919050565b61238b8161236f565b8114612395575f80fd5b50565b5f813590506123a681612382565b92915050565b5f805f80608085870312156123c4576123c36121f4565b5b5f6123d18782880161221f565b945050602085013567ffffffffffffffff8111156123f2576123f16121f8565b5b6123fe87828801612342565b935050604061240f87828801612398565b925050606085013567ffffffffffffffff8111156124305761242f6121f8565b5b61243c87828801612342565b91505092959194509250565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f61247a82612448565b6124848185612452565b9350612494818560208601612462565b61249d8161223b565b840191505092915050565b5f6020820190508181035f8301526124c08184612470565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124f1826124c8565b9050919050565b612501816124e7565b811461250b575f80fd5b50565b5f8135905061251c816124f8565b92915050565b5f819050919050565b61253481612522565b811461253e575f80fd5b50565b5f8135905061254f8161252b565b92915050565b5f806040838503121561256b5761256a6121f4565b5b5f6125788582860161250e565b925050602061258985828601612541565b9150509250929050565b5f8115159050919050565b6125a781612593565b82525050565b5f6020820190506125c05f83018461259e565b92915050565b5f819050919050565b5f6125e96125e46125df846124c8565b6125c6565b6124c8565b9050919050565b5f6125fa826125cf565b9050919050565b5f61260b826125f0565b9050919050565b61261b81612601565b82525050565b5f6020820190506126345f830184612612565b92915050565b61264381612522565b82525050565b5f60208201905061265c5f83018461263a565b92915050565b5f805f60608486031215612679576126786121f4565b5b5f6126868682870161250e565b93505060206126978682870161250e565b92505060406126a886828701612541565b9150509250925092565b5f60ff82169050919050565b6126c7816126b2565b82525050565b5f6020820190506126e05f8301846126be565b92915050565b5f602082840312156126fb576126fa6121f4565b5b5f61270884828501612541565b91505092915050565b61271a816124e7565b82525050565b5f6020820190506127335f830184612711565b92915050565b5f806040838503121561274f5761274e6121f4565b5b5f61275c8582860161221f565b925050602061276d85828601612541565b9150509250929050565b5f6020828403121561278c5761278b6121f4565b5b5f6127998482850161250e565b91505092915050565b5f602082840312156127b7576127b66121f4565b5b5f6127c48482850161221f565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f6127f1826127cd565b6127fb81856127d7565b935061280b818560208601612462565b6128148161223b565b840191505092915050565b5f6020820190508181035f83015261283781846127e7565b905092915050565b5f805f60608486031215612856576128556121f4565b5b5f6128638682870161221f565b935050602084013567ffffffffffffffff811115612884576128836121f8565b5b61289086828701612342565b92505060406128a186828701612541565b9150509250925092565b5f819050919050565b6128bd816128ab565b82525050565b5f6040820190506128d65f83018561263a565b6128e360208301846128b4565b9392505050565b5f8060408385031215612900576128ff6121f4565b5b5f61290d8582860161250e565b925050602061291e8582860161250e565b9150509250929050565b5f80fd5b5f80fd5b5f8083601f84011261294557612944612233565b5b8235905067ffffffffffffffff81111561296257612961612928565b5b60208301915083600182028301111561297e5761297d61292c565b5b9250929050565b5f805f805f6080868803121561299e5761299d6121f4565b5b5f6129ab8882890161221f565b955050602086013567ffffffffffffffff8111156129cc576129cb6121f8565b5b6129d888828901612342565b94505060406129e988828901612398565b935050606086013567ffffffffffffffff811115612a0a57612a096121f8565b5b612a1688828901612930565b92509250509295509295909350565b5f8083601f840112612a3a57612a39612233565b5b8235905067ffffffffffffffff811115612a5757612a56612928565b5b602083019150836020820283011115612a7357612a7261292c565b5b9250929050565b5f8083601f840112612a8f57612a8e612233565b5b8235905067ffffffffffffffff811115612aac57612aab612928565b5b602083019150836020820283011115612ac857612ac761292c565b5b9250929050565b5f805f8060408587031215612ae757612ae66121f4565b5b5f85013567ffffffffffffffff811115612b0457612b036121f8565b5b612b1087828801612a25565b9450945050602085013567ffffffffffffffff811115612b3357612b326121f8565b5b612b3f87828801612a7a565b925092505092959194509250565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612b9157607f821691505b602082108103612ba457612ba3612b4d565b5b50919050565b5f81905092915050565b5f819050815f5260205f209050919050565b5f8154612bd281612b7a565b612bdc8186612baa565b9450600182165f8114612bf65760018114612c0b57612c3d565b60ff1983168652811515820286019350612c3d565b612c1485612bb4565b5f5b83811015612c3557815481890152600182019150602081019050612c16565b838801955050505b50505092915050565b5f612c518284612bc6565b915081905092915050565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f755f8201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b5f612cb6603483612452565b9150612cc182612c5c565b604082019050919050565b5f6020820190508181035f830152612ce381612caa565b9050919050565b612cf3816121fc565b82525050565b612d028161236f565b82525050565b5f608082019050612d1b5f830187612cea565b8181036020830152612d2d81866127e7565b9050612d3c6040830185612cf9565b8181036060830152612d4e81846127e7565b905095945050505050565b5f612d63826127cd565b612d6d8185612baa565b9350612d7d818560208601612462565b80840191505092915050565b5f612d948284612d59565b915081905092915050565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d7573745f8201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b5f612df9602b83612452565b9150612e0482612d9f565b604082019050919050565b5f6020820190508181035f830152612e2681612ded565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612e6482612522565b9150612e6f83612522565b9250828201905080821115612e8757612e86612e2d565b5b92915050565b5f604082019050612ea05f830185612711565b612ead602083018461263a565b9392505050565b5f8160f01b9050919050565b5f612eca82612eb4565b9050919050565b612ee2612edd826121fc565b612ec0565b82525050565b5f819050919050565b612f02612efd82612522565b612ee8565b82525050565b5f612f138285612ed1565b600282019150612f238284612ef1565b6020820191508190509392505050565b5f60a082019050612f465f830188612cea565b612f536020830187612711565b8181036040830152612f6581866127e7565b9050612f74606083018561259e565b8181036080830152612f8681846127e7565b90509695505050505050565b5f81519050612fa08161252b565b92915050565b5f8060408385031215612fbc57612fbb6121f4565b5b5f612fc985828601612f92565b9250506020612fda85828601612f92565b9150509250929050565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c615f8201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b5f61303e602e83612452565b915061304982612fe4565b604082019050919050565b5f6020820190508181035f83015261306b81613032565b9050919050565b7f4c443a206d73672e76616c7565206e6f7420656e6f75676820746f20636f76655f8201527f72206d6573736167654665652e2053656e642067617320666f72206d6573736160208201527f6765206665657300000000000000000000000000000000000000000000000000604082015250565b5f6130f2604783612452565b91506130fd82613072565b606082019050919050565b5f6020820190508181035f83015261311f816130e6565b9050919050565b5f815461313281612b7a565b61313c81866127d7565b9450600182165f8114613156576001811461316c5761319e565b60ff19831686528115156020028601935061319e565b61317585612bb4565b5f5b8381101561319657815481890152600182019150602081019050613177565b808801955050505b50505092915050565b5f6131b1826124c8565b9050919050565b6131c1816131a7565b82525050565b5f60c0820190506131da5f830189612cea565b81810360208301526131ec8188613126565b9050818103604083015261320081876127e7565b905061320f60608301866131b8565b61321c6080830185612711565b81810360a083015261322e81846127e7565b9050979650505050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613295602583612452565b91506132a08261323b565b604082019050919050565b5f6020820190508181035f8301526132c281613289565b9050919050565b5f815190506132d7816124f8565b92915050565b5f602082840312156132f2576132f16121f4565b5b5f6132ff848285016132c9565b91505092915050565b5f60408201905061331b5f830185612711565b6133286020830184612711565b9392505050565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d5f8201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b5f613389602683612452565b91506133948261332f565b604082019050919050565b5f6020820190508181035f8301526133b68161337d565b9050919050565b5f6133c88385612baa565b93506133d58385846122f3565b82840190509392505050565b5f6133ed8284866133bd565b91508190509392505050565b7f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000005f82015250565b5f61342d601a83612452565b9150613438826133f9565b602082019050919050565b5f6020820190508181035f83015261345a81613421565b9050919050565b5f61346c83856127d7565b93506134798385846122f3565b6134828361223b565b840190509392505050565b5f6080820190506134a05f830188612cea565b81810360208301526134b281876127e7565b90506134c16040830186612cf9565b81810360608301526134d4818486613461565b90509695505050505050565b7f436861696e2049447320616e642072656d6f746573206c656e677468206d69735f8201527f6d61746368000000000000000000000000000000000000000000000000000000602082015250565b5f61353a602583612452565b9150613545826134e0565b604082019050919050565b5f6020820190508181035f8301526135678161352e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f80fd5b5f80fd5b5f80fd5b5f80833560016020038436030381126135c3576135c261359b565b5b80840192508235915067ffffffffffffffff8211156135e5576135e461359f565b5b602083019250600182023603831315613601576136006135a3565b5b509250929050565b5f82905092915050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261365d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613622565b6136678683613622565b95508019841693508086168417925050509392505050565b5f61369961369461368f84612522565b6125c6565b612522565b9050919050565b5f819050919050565b6136b28361367f565b6136c66136be826136a0565b84845461362e565b825550505050565b5f90565b6136da6136ce565b6136e58184846136a9565b505050565b5b81811015613708576136fd5f826136d2565b6001810190506136eb565b5050565b601f82111561374d5761371e81612bb4565b61372784613613565b81016020851015613736578190505b61374a61374285613613565b8301826136ea565b50505b505050565b5f82821c905092915050565b5f61376d5f1984600802613752565b1980831691505092915050565b5f613785838361375e565b9150826002028217905092915050565b61379f8383613609565b67ffffffffffffffff8111156137b8576137b761224b565b5b6137c28254612b7a565b6137cd82828561370c565b5f601f8311600181146137fa575f84156137e8578287013590505b6137f2858261377a565b865550613859565b601f19841661380886612bb4565b5f5b8281101561382f5784890135825560018201915060208501945060208101905061380a565b8683101561384c5784890135613848601f89168261375e565b8355505b6001600288020188555050505b50505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6138bc602683612452565b91506138c782613862565b604082019050919050565b5f6020820190508181035f8301526138e9816138b0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61394a602483612452565b9150613955826138f0565b604082019050919050565b5f6020820190508181035f8301526139778161393e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6139d8602283612452565b91506139e38261397e565b604082019050919050565b5f6020820190508181035f830152613a05816139cc565b9050919050565b613a15816131a7565b8114613a1f575f80fd5b50565b5f81519050613a3081613a0c565b92915050565b5f8060408385031215613a4c57613a4b6121f4565b5b5f613a5985828601613a22565b9250506020613a6a85828601612f92565b9150509250929050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613aa8601d83612452565b9150613ab382613a74565b602082019050919050565b5f6020820190508181035f830152613ad581613a9c565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f5f8201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b5f613b36602383612452565b9150613b4182613adc565b604082019050919050565b5f6020820190508181035f830152613b6381613b2a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f613bc4602183612452565b9150613bcf82613b6a565b604082019050919050565b5f6020820190508181035f830152613bf181613bb8565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f613c52602283612452565b9150613c5d82613bf8565b604082019050919050565b5f6020820190508181035f830152613c7f81613c46565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613cba602083612452565b9150613cc582613c86565b602082019050919050565b5f6020820190508181035f830152613ce781613cae565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f613d22601f83612452565b9150613d2d82613cee565b602082019050919050565b5f6020820190508181035f830152613d4f81613d16565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613db0602583612452565b9150613dbb82613d56565b604082019050919050565b5f6020820190508181035f830152613ddd81613da4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613e3e602383612452565b9150613e4982613de4565b604082019050919050565b5f6020820190508181035f830152613e6b81613e32565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613ecc602683612452565b9150613ed782613e72565b604082019050919050565b5f6020820190508181035f830152613ef981613ec0565b905091905056fea2646970667358221220643c3e87025631d11949055489420be474d5702a9cc4a62350606d9c68a2ce7964736f6c634300081a0033

Deployed Bytecode Sourcemap

27017:3746:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24293:775;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9244:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11604:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27096:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10373:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25076:280;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12385:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10215:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13055:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27179:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20820:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27144:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28028:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30668:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27246:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27341:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10544:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2699:103;;;;;;;;;;;;;:::i;:::-;;24139:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21230:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28456:1575;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2058:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24042:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;9463:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13796:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10877:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27428:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30385:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25802:618;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26428:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11133:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2957:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24293:775;24455:8;;;;;;;;;;;24433:31;;:10;:31;;;24425:40;;;;;;24576:19;:32;24596:11;24576:32;;;;;;;;;;;;;;;:39;;;;;:::i;:::-;;;24554:11;:18;:61;:134;;;;;24655:19;:32;24675:11;24655:32;;;;;;;;;;;;;;;24645:43;;;;;;:::i;:::-;;;;;;;;24629:11;24619:22;;;;;;:69;24554:134;24546:213;;;;;;;;;;;;:::i;:::-;;;;;;;;;24774:4;:16;;;24791:11;24804;24817:6;24825:8;24774:60;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24770:291;;24920:52;;;;;;;;24935:8;:15;24920:52;;;;24962:8;24952:19;;;;;;24920:52;;;24869:14;:27;24884:11;24869:27;;;;;;;;;;;;;;;24897:11;24869:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;24910:6;24869:48;;;;;;;;;;;;;:103;;;;;;;;;;;;;;;;;;;24992:57;25006:11;25019;25032:6;25040:8;24992:57;;;;;;;;;:::i;:::-;;;;;;;;24770:291;;;;24293:775;;;;:::o;9244:100::-;9298:13;9331:5;9324:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9244:100;:::o;11604:201::-;11687:4;11704:13;11720:12;:10;:12::i;:::-;11704:28;;11743:32;11752:5;11759:7;11768:6;11743:8;:32::i;:::-;11793:4;11786:11;;;11604:201;;;;:::o;27096:41::-;;;;;;;;;;;;;:::o;10373:108::-;10434:7;10461:12;;10454:19;;10373:108;:::o;25076:280::-;25229:4;25207:27;;:10;:27;;;25199:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;25293:55;25305:11;25318;25331:6;25339:8;25293:10;:55::i;:::-;25076:280;;;;:::o;12385:261::-;12482:4;12499:15;12517:12;:10;:12::i;:::-;12499:30;;12540:38;12556:4;12562:7;12571:6;12540:15;:38::i;:::-;12589:27;12599:4;12605:2;12609:6;12589:9;:27::i;:::-;12634:4;12627:11;;;12385:261;;;;;:::o;10215:93::-;10273:5;10298:2;10291:9;;10215:93;:::o;13055:238::-;13143:4;13160:13;13176:12;:10;:12::i;:::-;13160:28;;13199:64;13208:5;13215:7;13252:10;13224:25;13234:5;13241:7;13224:9;:25::i;:::-;:38;;;;:::i;:::-;13199:8;:64::i;:::-;13281:4;13274:11;;;13055:238;;;;:::o;27179:60::-;;;;:::o;20820:91::-;20876:27;20882:12;:10;:12::i;:::-;20896:6;20876:5;:27::i;:::-;20820:91;:::o;27144:28::-;;;;;;;;;;;;;:::o;28028:422::-;28108:4;28125:20;28159:10;28172:5;28148:30;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28125:53;;28191:14;28208:1;28191:18;;28220:26;28266:7;28275:26;;28249:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28220:82;;28316:15;28337:8;;;;;;;;;;;:21;;;28359:8;28377:4;28384:7;28393:5;28400:13;28337:77;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28315:99;;;28432:10;28425:17;;;;;;28028:422;;;;:::o;30668:92::-;1944:13;:11;:13::i;:::-;30749:3:::1;30732:14;:20;;;;30668:92:::0;:::o;27246:56::-;;;;:::o;27341:31::-;;;;;;;;;;;;;:::o;10544:127::-;10618:7;10645:9;:18;10655:7;10645:18;;;;;;;;;;;;;;;;10638:25;;10544:127;;;:::o;2699:103::-;1944:13;:11;:13::i;:::-;2764:30:::1;2791:1;2764:18;:30::i;:::-;2699:103::o:0;24139:51::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21230:164::-;21307:46;21323:7;21332:12;:10;:12::i;:::-;21346:6;21307:15;:46::i;:::-;21364:22;21370:7;21379:6;21364:5;:22::i;:::-;21230:164;;:::o;28456:1575::-;28565:34;28582:8;28593:5;28565:16;:34::i;:::-;28552:9;:47;;28544:56;;;;;;28644:5;28619:21;28629:10;28619:9;:21::i;:::-;:30;;28611:39;;;;;;28661:25;28667:10;28680:5;28661;:25::i;:::-;28744:1;28705:19;:29;28725:8;28705:29;;;;;;;;;;;;;;;:36;;;;;:::i;:::-;;;:40;28697:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;28878:20;28912:10;28925:5;28901:30;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28878:53;;29017:14;29034:1;29017:18;;29046:26;29092:7;29101:26;;29075:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29046:82;;29283:15;29304:8;;;;;;;;;;;:21;;;29326:8;29344:4;29351:7;29360:5;29367:13;29304:77;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29282:99;;;29423:10;29410:9;:23;;29402:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;29522:8;;;;;;;;;;;:13;;;29543:9;29568:8;29640:19;:29;29660:8;29640:29;;;;;;;;;;;;;;;29728:7;29811:10;29878:3;29958:13;29522:499;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28533:1498;;;;28456:1575;;:::o;2058:87::-;2104:7;2131:6;;;;;;;;;;;2124:13;;2058:87;:::o;24042:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9463:104::-;9519:13;9552:7;9545:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9463:104;:::o;13796:436::-;13889:4;13906:13;13922:12;:10;:12::i;:::-;13906:28;;13945:24;13972:25;13982:5;13989:7;13972:9;:25::i;:::-;13945:52;;14036:15;14016:16;:35;;14008:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14129:60;14138:5;14145:7;14173:15;14154:16;:34;14129:8;:60::i;:::-;14220:4;14213:11;;;;13796:436;;;;:::o;10877:193::-;10956:4;10973:13;10989:12;:10;:12::i;:::-;10973:28;;11012;11022:5;11029:2;11033:6;11012:9;:28::i;:::-;11058:4;11051:11;;;10877:193;;;;:::o;27428:22::-;;;;:::o;30385:277::-;1944:13;:11;:13::i;:::-;30524:16:::1;30487:15;;:54;;;;;;;;;;;;;;;;;;30586:17;30568:47;;;30624:4;30631:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30568:86;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30552:13;;:102;;;;;;;;;;;;;;;;;;30385:277:::0;;:::o;25802:618::-;25938:32;25973:14;:27;25988:11;25973:27;;;;;;;;;;;;;;;26001:11;25973:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;26014:6;25973:48;;;;;;;;;;;;;25938:83;;26073:1;26065:10;;26040:9;:21;;;:35;26032:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;26156:9;:23;;;26137:8;;:15;;:42;:90;;;;;26206:9;:21;;;26193:8;;26183:19;;;;;;;:::i;:::-;;;;;;;;:44;26137:90;26129:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;26295:1;26269:9;:23;;:27;;;;26339:1;26331:10;;26307:9;:21;;:34;;;;26352:4;:16;;;26369:11;26382;26395:6;26403:8;;26352:60;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25927:493;25802:618;;;;;:::o;26428:365::-;1944:13;:11;:13::i;:::-;26584:15:::1;;:22;;26564:9;;:16;;:42;26556:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;26666:6;26661:125;26682:9;;:16;;26678:1;:20;26661:125;;;26756:15;;26772:1;26756:18;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;26720:19;:33;26740:9;;26750:1;26740:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;26720:33;;;;;;;;;;;;;;;:54;;;;;;;:::i;:::-;;26700:3;;;;;;;26661:125;;;;26428:365:::0;;;;:::o;11133:151::-;11222:7;11249:11;:18;11261:5;11249:18;;;;;;;;;;;;;;;:27;11268:7;11249:27;;;;;;;;;;;;;;;;11242:34;;11133:151;;;;:::o;2957:201::-;1944:13;:11;:13::i;:::-;3066:1:::1;3046:22;;:8;:22;;::::0;3038:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3122:28;3141:8;3122:18;:28::i;:::-;2957:201:::0;:::o;609:98::-;662:7;689:10;682:17;;609:98;:::o;17789:346::-;17908:1;17891:19;;:5;:19;;;17883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17989:1;17970:21;;:7;:21;;;17962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18073:6;18043:11;:18;18055:5;18043:18;;;;;;;;;;;;;;;:27;18062:7;18043:27;;;;;;;;;;;;;;;:36;;;;18111:7;18095:32;;18104:5;18095:32;;;18120:6;18095:32;;;;;;:::i;:::-;;;;;;;;17789:346;;;:::o;30039:338::-;30192:14;30209:13;30237:8;30226:41;;;;;;;;;;;;:::i;:::-;30191:76;;;;30349:20;30355:6;30363:5;30349;:20::i;:::-;30161:216;;30039:338;;;;:::o;18426:419::-;18527:24;18554:25;18564:5;18571:7;18554:9;:25::i;:::-;18527:52;;18614:17;18594:16;:37;18590:248;;18676:6;18656:16;:26;;18648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18760:51;18769:5;18776:7;18804:6;18785:16;:25;18760:8;:51::i;:::-;18590:248;18516:329;18426:419;;;:::o;27689:333::-;27790:7;:5;:7::i;:::-;27782:15;;:4;:15;;;;:38;;;;;27807:13;;;;;;;;;;;27801:19;;:2;:19;;;;27782:38;:72;;;;;27838:15;;;;;;;;;;;27824:30;;:2;:30;;;;27782:72;27778:193;;;27905:14;;27895:6;27879:13;27889:2;27879:9;:13::i;:::-;:22;;;;:::i;:::-;:40;;27871:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;27778:193;27981:33;27997:4;28003:2;28007:6;27981:15;:33::i;:::-;27689:333;;;:::o;16676:675::-;16779:1;16760:21;;:7;:21;;;16752:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16832:49;16853:7;16870:1;16874:6;16832:20;:49::i;:::-;16894:22;16919:9;:18;16929:7;16919:18;;;;;;;;;;;;;;;;16894:43;;16974:6;16956:14;:24;;16948:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17093:6;17076:14;:23;17055:9;:18;17065:7;17055:18;;;;;;;;;;;;;;;:44;;;;17210:6;17194:12;;:22;;;;;;;;;;;17271:1;17245:37;;17254:7;17245:37;;;17275:6;17245:37;;;;;;:::i;:::-;;;;;;;;17295:48;17315:7;17332:1;17336:6;17295:19;:48::i;:::-;16741:610;16676:675;;:::o;2223:132::-;2298:12;:10;:12::i;:::-;2287:23;;:7;:5;:7::i;:::-;:23;;;2279:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2223:132::o;3318:191::-;3392:16;3411:6;;;;;;;;;;;3392:25;;3437:8;3428:6;;:17;;;;;;;;;;;;;;;;;;3492:8;3461:40;;3482:8;3461:40;;;;;;;;;;;;3381:128;3318:191;:::o;15795:548::-;15898:1;15879:21;;:7;:21;;;15871:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15949:49;15978:1;15982:7;15991:6;15949:20;:49::i;:::-;16027:6;16011:12;;:22;;;;;;;:::i;:::-;;;;;;;;16204:6;16182:9;:18;16192:7;16182:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16258:7;16237:37;;16254:1;16237:37;;;16267:6;16237:37;;;;;;:::i;:::-;;;;;;;;16287:48;16315:1;16319:7;16328:6;16287:19;:48::i;:::-;15795:548;;:::o;14702:806::-;14815:1;14799:18;;:4;:18;;;14791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14892:1;14878:16;;:2;:16;;;14870:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14947:38;14968:4;14974:2;14978:6;14947:20;:38::i;:::-;14998:19;15020:9;:15;15030:4;15020:15;;;;;;;;;;;;;;;;14998:37;;15069:6;15054:11;:21;;15046:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15186:6;15172:11;:20;15154:9;:15;15164:4;15154:15;;;;;;;;;;;;;;;:38;;;;15389:6;15372:9;:13;15382:2;15372:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15439:2;15424:26;;15433:4;15424:26;;;15443:6;15424:26;;;;;;:::i;:::-;;;;;;;;15463:37;15483:4;15489:2;15493:6;15463:19;:37::i;:::-;14780:728;14702:806;;;:::o;19445:91::-;;;;:::o;20140:90::-;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:89;370:7;410:6;403:5;399:18;388:29;;334:89;;;:::o;429:120::-;501:23;518:5;501:23;:::i;:::-;494:5;491:34;481:62;;539:1;536;529:12;481:62;429:120;:::o;555:137::-;600:5;638:6;625:20;616:29;;654:32;680:5;654:32;:::i;:::-;555:137;;;;:::o;698:117::-;807:1;804;797:12;821:117;930:1;927;920:12;944:102;985:6;1036:2;1032:7;1027:2;1020:5;1016:14;1012:28;1002:38;;944:102;;;:::o;1052:180::-;1100:77;1097:1;1090:88;1197:4;1194:1;1187:15;1221:4;1218:1;1211:15;1238:281;1321:27;1343:4;1321:27;:::i;:::-;1313:6;1309:40;1451:6;1439:10;1436:22;1415:18;1403:10;1400:34;1397:62;1394:88;;;1462:18;;:::i;:::-;1394:88;1502:10;1498:2;1491:22;1281:238;1238:281;;:::o;1525:129::-;1559:6;1586:20;;:::i;:::-;1576:30;;1615:33;1643:4;1635:6;1615:33;:::i;:::-;1525:129;;;:::o;1660:307::-;1721:4;1811:18;1803:6;1800:30;1797:56;;;1833:18;;:::i;:::-;1797:56;1871:29;1893:6;1871:29;:::i;:::-;1863:37;;1955:4;1949;1945:15;1937:23;;1660:307;;;:::o;1973:148::-;2071:6;2066:3;2061;2048:30;2112:1;2103:6;2098:3;2094:16;2087:27;1973:148;;;:::o;2127:423::-;2204:5;2229:65;2245:48;2286:6;2245:48;:::i;:::-;2229:65;:::i;:::-;2220:74;;2317:6;2310:5;2303:21;2355:4;2348:5;2344:16;2393:3;2384:6;2379:3;2375:16;2372:25;2369:112;;;2400:79;;:::i;:::-;2369:112;2490:54;2537:6;2532:3;2527;2490:54;:::i;:::-;2210:340;2127:423;;;;;:::o;2569:338::-;2624:5;2673:3;2666:4;2658:6;2654:17;2650:27;2640:122;;2681:79;;:::i;:::-;2640:122;2798:6;2785:20;2823:78;2897:3;2889:6;2882:4;2874:6;2870:17;2823:78;:::i;:::-;2814:87;;2630:277;2569:338;;;;:::o;2913:101::-;2949:7;2989:18;2982:5;2978:30;2967:41;;2913:101;;;:::o;3020:120::-;3092:23;3109:5;3092:23;:::i;:::-;3085:5;3082:34;3072:62;;3130:1;3127;3120:12;3072:62;3020:120;:::o;3146:137::-;3191:5;3229:6;3216:20;3207:29;;3245:32;3271:5;3245:32;:::i;:::-;3146:137;;;;:::o;3289:1117::-;3391:6;3399;3407;3415;3464:3;3452:9;3443:7;3439:23;3435:33;3432:120;;;3471:79;;:::i;:::-;3432:120;3591:1;3616:52;3660:7;3651:6;3640:9;3636:22;3616:52;:::i;:::-;3606:62;;3562:116;3745:2;3734:9;3730:18;3717:32;3776:18;3768:6;3765:30;3762:117;;;3798:79;;:::i;:::-;3762:117;3903:62;3957:7;3948:6;3937:9;3933:22;3903:62;:::i;:::-;3893:72;;3688:287;4014:2;4040:52;4084:7;4075:6;4064:9;4060:22;4040:52;:::i;:::-;4030:62;;3985:117;4169:2;4158:9;4154:18;4141:32;4200:18;4192:6;4189:30;4186:117;;;4222:79;;:::i;:::-;4186:117;4327:62;4381:7;4372:6;4361:9;4357:22;4327:62;:::i;:::-;4317:72;;4112:287;3289:1117;;;;;;;:::o;4412:99::-;4464:6;4498:5;4492:12;4482:22;;4412:99;;;:::o;4517:169::-;4601:11;4635:6;4630:3;4623:19;4675:4;4670:3;4666:14;4651:29;;4517:169;;;;:::o;4692:139::-;4781:6;4776:3;4771;4765:23;4822:1;4813:6;4808:3;4804:16;4797:27;4692:139;;;:::o;4837:377::-;4925:3;4953:39;4986:5;4953:39;:::i;:::-;5008:71;5072:6;5067:3;5008:71;:::i;:::-;5001:78;;5088:65;5146:6;5141:3;5134:4;5127:5;5123:16;5088:65;:::i;:::-;5178:29;5200:6;5178:29;:::i;:::-;5173:3;5169:39;5162:46;;4929:285;4837:377;;;;:::o;5220:313::-;5333:4;5371:2;5360:9;5356:18;5348:26;;5420:9;5414:4;5410:20;5406:1;5395:9;5391:17;5384:47;5448:78;5521:4;5512:6;5448:78;:::i;:::-;5440:86;;5220:313;;;;:::o;5539:126::-;5576:7;5616:42;5609:5;5605:54;5594:65;;5539:126;;;:::o;5671:96::-;5708:7;5737:24;5755:5;5737:24;:::i;:::-;5726:35;;5671:96;;;:::o;5773:122::-;5846:24;5864:5;5846:24;:::i;:::-;5839:5;5836:35;5826:63;;5885:1;5882;5875:12;5826:63;5773:122;:::o;5901:139::-;5947:5;5985:6;5972:20;5963:29;;6001:33;6028:5;6001:33;:::i;:::-;5901:139;;;;:::o;6046:77::-;6083:7;6112:5;6101:16;;6046:77;;;:::o;6129:122::-;6202:24;6220:5;6202:24;:::i;:::-;6195:5;6192:35;6182:63;;6241:1;6238;6231:12;6182:63;6129:122;:::o;6257:139::-;6303:5;6341:6;6328:20;6319:29;;6357:33;6384:5;6357:33;:::i;:::-;6257:139;;;;:::o;6402:474::-;6470:6;6478;6527:2;6515:9;6506:7;6502:23;6498:32;6495:119;;;6533:79;;:::i;:::-;6495:119;6653:1;6678:53;6723:7;6714:6;6703:9;6699:22;6678:53;:::i;:::-;6668:63;;6624:117;6780:2;6806:53;6851:7;6842:6;6831:9;6827:22;6806:53;:::i;:::-;6796:63;;6751:118;6402:474;;;;;:::o;6882:90::-;6916:7;6959:5;6952:13;6945:21;6934:32;;6882:90;;;:::o;6978:109::-;7059:21;7074:5;7059:21;:::i;:::-;7054:3;7047:34;6978:109;;:::o;7093:210::-;7180:4;7218:2;7207:9;7203:18;7195:26;;7231:65;7293:1;7282:9;7278:17;7269:6;7231:65;:::i;:::-;7093:210;;;;:::o;7309:60::-;7337:3;7358:5;7351:12;;7309:60;;;:::o;7375:142::-;7425:9;7458:53;7476:34;7485:24;7503:5;7485:24;:::i;:::-;7476:34;:::i;:::-;7458:53;:::i;:::-;7445:66;;7375:142;;;:::o;7523:126::-;7573:9;7606:37;7637:5;7606:37;:::i;:::-;7593:50;;7523:126;;;:::o;7655:153::-;7732:9;7765:37;7796:5;7765:37;:::i;:::-;7752:50;;7655:153;;;:::o;7814:185::-;7928:64;7986:5;7928:64;:::i;:::-;7923:3;7916:77;7814:185;;:::o;8005:276::-;8125:4;8163:2;8152:9;8148:18;8140:26;;8176:98;8271:1;8260:9;8256:17;8247:6;8176:98;:::i;:::-;8005:276;;;;:::o;8287:118::-;8374:24;8392:5;8374:24;:::i;:::-;8369:3;8362:37;8287:118;;:::o;8411:222::-;8504:4;8542:2;8531:9;8527:18;8519:26;;8555:71;8623:1;8612:9;8608:17;8599:6;8555:71;:::i;:::-;8411:222;;;;:::o;8639:619::-;8716:6;8724;8732;8781:2;8769:9;8760:7;8756:23;8752:32;8749:119;;;8787:79;;:::i;:::-;8749:119;8907:1;8932:53;8977:7;8968:6;8957:9;8953:22;8932:53;:::i;:::-;8922:63;;8878:117;9034:2;9060:53;9105:7;9096:6;9085:9;9081:22;9060:53;:::i;:::-;9050:63;;9005:118;9162:2;9188:53;9233:7;9224:6;9213:9;9209:22;9188:53;:::i;:::-;9178:63;;9133:118;8639:619;;;;;:::o;9264:86::-;9299:7;9339:4;9332:5;9328:16;9317:27;;9264:86;;;:::o;9356:112::-;9439:22;9455:5;9439:22;:::i;:::-;9434:3;9427:35;9356:112;;:::o;9474:214::-;9563:4;9601:2;9590:9;9586:18;9578:26;;9614:67;9678:1;9667:9;9663:17;9654:6;9614:67;:::i;:::-;9474:214;;;;:::o;9694:329::-;9753:6;9802:2;9790:9;9781:7;9777:23;9773:32;9770:119;;;9808:79;;:::i;:::-;9770:119;9928:1;9953:53;9998:7;9989:6;9978:9;9974:22;9953:53;:::i;:::-;9943:63;;9899:117;9694:329;;;;:::o;10029:118::-;10116:24;10134:5;10116:24;:::i;:::-;10111:3;10104:37;10029:118;;:::o;10153:222::-;10246:4;10284:2;10273:9;10269:18;10261:26;;10297:71;10365:1;10354:9;10350:17;10341:6;10297:71;:::i;:::-;10153:222;;;;:::o;10381:472::-;10448:6;10456;10505:2;10493:9;10484:7;10480:23;10476:32;10473:119;;;10511:79;;:::i;:::-;10473:119;10631:1;10656:52;10700:7;10691:6;10680:9;10676:22;10656:52;:::i;:::-;10646:62;;10602:116;10757:2;10783:53;10828:7;10819:6;10808:9;10804:22;10783:53;:::i;:::-;10773:63;;10728:118;10381:472;;;;;:::o;10859:329::-;10918:6;10967:2;10955:9;10946:7;10942:23;10938:32;10935:119;;;10973:79;;:::i;:::-;10935:119;11093:1;11118:53;11163:7;11154:6;11143:9;11139:22;11118:53;:::i;:::-;11108:63;;11064:117;10859:329;;;;:::o;11194:327::-;11252:6;11301:2;11289:9;11280:7;11276:23;11272:32;11269:119;;;11307:79;;:::i;:::-;11269:119;11427:1;11452:52;11496:7;11487:6;11476:9;11472:22;11452:52;:::i;:::-;11442:62;;11398:116;11194:327;;;;:::o;11527:98::-;11578:6;11612:5;11606:12;11596:22;;11527:98;;;:::o;11631:168::-;11714:11;11748:6;11743:3;11736:19;11788:4;11783:3;11779:14;11764:29;;11631:168;;;;:::o;11805:373::-;11891:3;11919:38;11951:5;11919:38;:::i;:::-;11973:70;12036:6;12031:3;11973:70;:::i;:::-;11966:77;;12052:65;12110:6;12105:3;12098:4;12091:5;12087:16;12052:65;:::i;:::-;12142:29;12164:6;12142:29;:::i;:::-;12137:3;12133:39;12126:46;;11895:283;11805:373;;;;:::o;12184:309::-;12295:4;12333:2;12322:9;12318:18;12310:26;;12382:9;12376:4;12372:20;12368:1;12357:9;12353:17;12346:47;12410:76;12481:4;12472:6;12410:76;:::i;:::-;12402:84;;12184:309;;;;:::o;12499:795::-;12584:6;12592;12600;12649:2;12637:9;12628:7;12624:23;12620:32;12617:119;;;12655:79;;:::i;:::-;12617:119;12775:1;12800:52;12844:7;12835:6;12824:9;12820:22;12800:52;:::i;:::-;12790:62;;12746:116;12929:2;12918:9;12914:18;12901:32;12960:18;12952:6;12949:30;12946:117;;;12982:79;;:::i;:::-;12946:117;13087:62;13141:7;13132:6;13121:9;13117:22;13087:62;:::i;:::-;13077:72;;12872:287;13198:2;13224:53;13269:7;13260:6;13249:9;13245:22;13224:53;:::i;:::-;13214:63;;13169:118;12499:795;;;;;:::o;13300:77::-;13337:7;13366:5;13355:16;;13300:77;;;:::o;13383:118::-;13470:24;13488:5;13470:24;:::i;:::-;13465:3;13458:37;13383:118;;:::o;13507:332::-;13628:4;13666:2;13655:9;13651:18;13643:26;;13679:71;13747:1;13736:9;13732:17;13723:6;13679:71;:::i;:::-;13760:72;13828:2;13817:9;13813:18;13804:6;13760:72;:::i;:::-;13507:332;;;;;:::o;13845:474::-;13913:6;13921;13970:2;13958:9;13949:7;13945:23;13941:32;13938:119;;;13976:79;;:::i;:::-;13938:119;14096:1;14121:53;14166:7;14157:6;14146:9;14142:22;14121:53;:::i;:::-;14111:63;;14067:117;14223:2;14249:53;14294:7;14285:6;14274:9;14270:22;14249:53;:::i;:::-;14239:63;;14194:118;13845:474;;;;;:::o;14325:117::-;14434:1;14431;14424:12;14448:117;14557:1;14554;14547:12;14584:552;14641:8;14651:6;14701:3;14694:4;14686:6;14682:17;14678:27;14668:122;;14709:79;;:::i;:::-;14668:122;14822:6;14809:20;14799:30;;14852:18;14844:6;14841:30;14838:117;;;14874:79;;:::i;:::-;14838:117;14988:4;14980:6;14976:17;14964:29;;15042:3;15034:4;15026:6;15022:17;15012:8;15008:32;15005:41;15002:128;;;15049:79;;:::i;:::-;15002:128;14584:552;;;;;:::o;15142:1137::-;15246:6;15254;15262;15270;15278;15327:3;15315:9;15306:7;15302:23;15298:33;15295:120;;;15334:79;;:::i;:::-;15295:120;15454:1;15479:52;15523:7;15514:6;15503:9;15499:22;15479:52;:::i;:::-;15469:62;;15425:116;15608:2;15597:9;15593:18;15580:32;15639:18;15631:6;15628:30;15625:117;;;15661:79;;:::i;:::-;15625:117;15766:62;15820:7;15811:6;15800:9;15796:22;15766:62;:::i;:::-;15756:72;;15551:287;15877:2;15903:52;15947:7;15938:6;15927:9;15923:22;15903:52;:::i;:::-;15893:62;;15848:117;16032:2;16021:9;16017:18;16004:32;16063:18;16055:6;16052:30;16049:117;;;16085:79;;:::i;:::-;16049:117;16198:64;16254:7;16245:6;16234:9;16230:22;16198:64;:::i;:::-;16180:82;;;;15975:297;15142:1137;;;;;;;;:::o;16301:567::-;16373:8;16383:6;16433:3;16426:4;16418:6;16414:17;16410:27;16400:122;;16441:79;;:::i;:::-;16400:122;16554:6;16541:20;16531:30;;16584:18;16576:6;16573:30;16570:117;;;16606:79;;:::i;:::-;16570:117;16720:4;16712:6;16708:17;16696:29;;16774:3;16766:4;16758:6;16754:17;16744:8;16740:32;16737:41;16734:128;;;16781:79;;:::i;:::-;16734:128;16301:567;;;;;:::o;16889:579::-;16973:8;16983:6;17033:3;17026:4;17018:6;17014:17;17010:27;17000:122;;17041:79;;:::i;:::-;17000:122;17154:6;17141:20;17131:30;;17184:18;17176:6;17173:30;17170:117;;;17206:79;;:::i;:::-;17170:117;17320:4;17312:6;17308:17;17296:29;;17374:3;17366:4;17358:6;17354:17;17344:8;17340:32;17337:41;17334:128;;;17381:79;;:::i;:::-;17334:128;16889:579;;;;;:::o;17474:954::-;17606:6;17614;17622;17630;17679:2;17667:9;17658:7;17654:23;17650:32;17647:119;;;17685:79;;:::i;:::-;17647:119;17833:1;17822:9;17818:17;17805:31;17863:18;17855:6;17852:30;17849:117;;;17885:79;;:::i;:::-;17849:117;17998:79;18069:7;18060:6;18049:9;18045:22;17998:79;:::i;:::-;17980:97;;;;17776:311;18154:2;18143:9;18139:18;18126:32;18185:18;18177:6;18174:30;18171:117;;;18207:79;;:::i;:::-;18171:117;18320:91;18403:7;18394:6;18383:9;18379:22;18320:91;:::i;:::-;18302:109;;;;18097:324;17474:954;;;;;;;:::o;18434:180::-;18482:77;18479:1;18472:88;18579:4;18576:1;18569:15;18603:4;18600:1;18593:15;18620:320;18664:6;18701:1;18695:4;18691:12;18681:22;;18748:1;18742:4;18738:12;18769:18;18759:81;;18825:4;18817:6;18813:17;18803:27;;18759:81;18887:2;18879:6;18876:14;18856:18;18853:38;18850:84;;18906:18;;:::i;:::-;18850:84;18671:269;18620:320;;;:::o;18946:147::-;19047:11;19084:3;19069:18;;18946:147;;;;:::o;19099:140::-;19147:4;19170:3;19162:11;;19193:3;19190:1;19183:14;19227:4;19224:1;19214:18;19206:26;;19099:140;;;:::o;19267:870::-;19368:3;19405:5;19399:12;19434:36;19460:9;19434:36;:::i;:::-;19486:88;19567:6;19562:3;19486:88;:::i;:::-;19479:95;;19605:1;19594:9;19590:17;19621:1;19616:166;;;;19796:1;19791:340;;;;19583:548;;19616:166;19700:4;19696:9;19685;19681:25;19676:3;19669:38;19762:6;19755:14;19748:22;19740:6;19736:35;19731:3;19727:45;19720:52;;19616:166;;19791:340;19858:37;19889:5;19858:37;:::i;:::-;19917:1;19931:154;19945:6;19942:1;19939:13;19931:154;;;20019:7;20013:14;20009:1;20004:3;20000:11;19993:35;20069:1;20060:7;20056:15;20045:26;;19967:4;19964:1;19960:12;19955:17;;19931:154;;;20114:6;20109:3;20105:16;20098:23;;19798:333;;19583:548;;19372:765;;19267:870;;;;:::o;20143:265::-;20270:3;20292:90;20378:3;20369:6;20292:90;:::i;:::-;20285:97;;20399:3;20392:10;;20143:265;;;;:::o;20414:239::-;20554:34;20550:1;20542:6;20538:14;20531:58;20623:22;20618:2;20610:6;20606:15;20599:47;20414:239;:::o;20659:366::-;20801:3;20822:67;20886:2;20881:3;20822:67;:::i;:::-;20815:74;;20898:93;20987:3;20898:93;:::i;:::-;21016:2;21011:3;21007:12;21000:19;;20659:366;;;:::o;21031:419::-;21197:4;21235:2;21224:9;21220:18;21212:26;;21284:9;21278:4;21274:20;21270:1;21259:9;21255:17;21248:47;21312:131;21438:4;21312:131;:::i;:::-;21304:139;;21031:419;;;:::o;21456:115::-;21541:23;21558:5;21541:23;:::i;:::-;21536:3;21529:36;21456:115;;:::o;21577:::-;21662:23;21679:5;21662:23;:::i;:::-;21657:3;21650:36;21577:115;;:::o;21698:719::-;21907:4;21945:3;21934:9;21930:19;21922:27;;21959:69;22025:1;22014:9;22010:17;22001:6;21959:69;:::i;:::-;22075:9;22069:4;22065:20;22060:2;22049:9;22045:18;22038:48;22103:76;22174:4;22165:6;22103:76;:::i;:::-;22095:84;;22189:70;22255:2;22244:9;22240:18;22231:6;22189:70;:::i;:::-;22306:9;22300:4;22296:20;22291:2;22280:9;22276:18;22269:48;22334:76;22405:4;22396:6;22334:76;:::i;:::-;22326:84;;21698:719;;;;;;;:::o;22423:386::-;22527:3;22555:38;22587:5;22555:38;:::i;:::-;22609:88;22690:6;22685:3;22609:88;:::i;:::-;22602:95;;22706:65;22764:6;22759:3;22752:4;22745:5;22741:16;22706:65;:::i;:::-;22796:6;22791:3;22787:16;22780:23;;22531:278;22423:386;;;;:::o;22815:271::-;22945:3;22967:93;23056:3;23047:6;22967:93;:::i;:::-;22960:100;;23077:3;23070:10;;22815:271;;;;:::o;23092:230::-;23232:34;23228:1;23220:6;23216:14;23209:58;23301:13;23296:2;23288:6;23284:15;23277:38;23092:230;:::o;23328:366::-;23470:3;23491:67;23555:2;23550:3;23491:67;:::i;:::-;23484:74;;23567:93;23656:3;23567:93;:::i;:::-;23685:2;23680:3;23676:12;23669:19;;23328:366;;;:::o;23700:419::-;23866:4;23904:2;23893:9;23889:18;23881:26;;23953:9;23947:4;23943:20;23939:1;23928:9;23924:17;23917:47;23981:131;24107:4;23981:131;:::i;:::-;23973:139;;23700:419;;;:::o;24125:180::-;24173:77;24170:1;24163:88;24270:4;24267:1;24260:15;24294:4;24291:1;24284:15;24311:191;24351:3;24370:20;24388:1;24370:20;:::i;:::-;24365:25;;24404:20;24422:1;24404:20;:::i;:::-;24399:25;;24447:1;24444;24440:9;24433:16;;24468:3;24465:1;24462:10;24459:36;;;24475:18;;:::i;:::-;24459:36;24311:191;;;;:::o;24508:332::-;24629:4;24667:2;24656:9;24652:18;24644:26;;24680:71;24748:1;24737:9;24733:17;24724:6;24680:71;:::i;:::-;24761:72;24829:2;24818:9;24814:18;24805:6;24761:72;:::i;:::-;24508:332;;;;;:::o;24846:96::-;24880:8;24929:5;24924:3;24920:15;24899:36;;24846:96;;;:::o;24948:94::-;24986:7;25015:21;25030:5;25015:21;:::i;:::-;25004:32;;24948:94;;;:::o;25048:153::-;25151:43;25170:23;25187:5;25170:23;:::i;:::-;25151:43;:::i;:::-;25146:3;25139:56;25048:153;;:::o;25207:79::-;25246:7;25275:5;25264:16;;25207:79;;;:::o;25292:157::-;25397:45;25417:24;25435:5;25417:24;:::i;:::-;25397:45;:::i;:::-;25392:3;25385:58;25292:157;;:::o;25455:392::-;25593:3;25608:73;25677:3;25668:6;25608:73;:::i;:::-;25706:1;25701:3;25697:11;25690:18;;25718:75;25789:3;25780:6;25718:75;:::i;:::-;25818:2;25813:3;25809:12;25802:19;;25838:3;25831:10;;25455:392;;;;;:::o;25853:822::-;26086:4;26124:3;26113:9;26109:19;26101:27;;26138:69;26204:1;26193:9;26189:17;26180:6;26138:69;:::i;:::-;26217:72;26285:2;26274:9;26270:18;26261:6;26217:72;:::i;:::-;26336:9;26330:4;26326:20;26321:2;26310:9;26306:18;26299:48;26364:76;26435:4;26426:6;26364:76;:::i;:::-;26356:84;;26450:66;26512:2;26501:9;26497:18;26488:6;26450:66;:::i;:::-;26564:9;26558:4;26554:20;26548:3;26537:9;26533:19;26526:49;26592:76;26663:4;26654:6;26592:76;:::i;:::-;26584:84;;25853:822;;;;;;;;:::o;26681:143::-;26738:5;26769:6;26763:13;26754:22;;26785:33;26812:5;26785:33;:::i;:::-;26681:143;;;;:::o;26830:507::-;26909:6;26917;26966:2;26954:9;26945:7;26941:23;26937:32;26934:119;;;26972:79;;:::i;:::-;26934:119;27092:1;27117:64;27173:7;27164:6;27153:9;27149:22;27117:64;:::i;:::-;27107:74;;27063:128;27230:2;27256:64;27312:7;27303:6;27292:9;27288:22;27256:64;:::i;:::-;27246:74;;27201:129;26830:507;;;;;:::o;27343:233::-;27483:34;27479:1;27471:6;27467:14;27460:58;27552:16;27547:2;27539:6;27535:15;27528:41;27343:233;:::o;27582:366::-;27724:3;27745:67;27809:2;27804:3;27745:67;:::i;:::-;27738:74;;27821:93;27910:3;27821:93;:::i;:::-;27939:2;27934:3;27930:12;27923:19;;27582:366;;;:::o;27954:419::-;28120:4;28158:2;28147:9;28143:18;28135:26;;28207:9;28201:4;28197:20;28193:1;28182:9;28178:17;28171:47;28235:131;28361:4;28235:131;:::i;:::-;28227:139;;27954:419;;;:::o;28379:295::-;28519:34;28515:1;28507:6;28503:14;28496:58;28588:34;28583:2;28575:6;28571:15;28564:59;28657:9;28652:2;28644:6;28640:15;28633:34;28379:295;:::o;28680:366::-;28822:3;28843:67;28907:2;28902:3;28843:67;:::i;:::-;28836:74;;28919:93;29008:3;28919:93;:::i;:::-;29037:2;29032:3;29028:12;29021:19;;28680:366;;;:::o;29052:419::-;29218:4;29256:2;29245:9;29241:18;29233:26;;29305:9;29299:4;29295:20;29291:1;29280:9;29276:17;29269:47;29333:131;29459:4;29333:131;:::i;:::-;29325:139;;29052:419;;;:::o;29499:827::-;29582:3;29619:5;29613:12;29648:36;29674:9;29648:36;:::i;:::-;29700:70;29763:6;29758:3;29700:70;:::i;:::-;29693:77;;29801:1;29790:9;29786:17;29817:1;29812:164;;;;29990:1;29985:335;;;;29779:541;;29812:164;29896:4;29892:9;29881;29877:25;29872:3;29865:38;29956:6;29949:14;29942:22;29936:4;29932:33;29927:3;29923:43;29916:50;;29812:164;;29985:335;30052:37;30083:5;30052:37;:::i;:::-;30111:1;30125:154;30139:6;30136:1;30133:13;30125:154;;;30213:7;30207:14;30203:1;30198:3;30194:11;30187:35;30263:1;30254:7;30250:15;30239:26;;30161:4;30158:1;30154:12;30149:17;;30125:154;;;30308:1;30303:3;30299:11;30292:18;;29992:328;;29779:541;;29586:740;;29499:827;;;;:::o;30332:104::-;30377:7;30406:24;30424:5;30406:24;:::i;:::-;30395:35;;30332:104;;;:::o;30442:142::-;30545:32;30571:5;30545:32;:::i;:::-;30540:3;30533:45;30442:142;;:::o;30590:1058::-;30888:4;30926:3;30915:9;30911:19;30903:27;;30940:69;31006:1;30995:9;30991:17;30982:6;30940:69;:::i;:::-;31056:9;31050:4;31046:20;31041:2;31030:9;31026:18;31019:48;31084:73;31152:4;31143:6;31084:73;:::i;:::-;31076:81;;31204:9;31198:4;31194:20;31189:2;31178:9;31174:18;31167:48;31232:76;31303:4;31294:6;31232:76;:::i;:::-;31224:84;;31318:88;31402:2;31391:9;31387:18;31378:6;31318:88;:::i;:::-;31416:73;31484:3;31473:9;31469:19;31460:6;31416:73;:::i;:::-;31537:9;31531:4;31527:20;31521:3;31510:9;31506:19;31499:49;31565:76;31636:4;31627:6;31565:76;:::i;:::-;31557:84;;30590:1058;;;;;;;;;:::o;31654:224::-;31794:34;31790:1;31782:6;31778:14;31771:58;31863:7;31858:2;31850:6;31846:15;31839:32;31654:224;:::o;31884:366::-;32026:3;32047:67;32111:2;32106:3;32047:67;:::i;:::-;32040:74;;32123:93;32212:3;32123:93;:::i;:::-;32241:2;32236:3;32232:12;32225:19;;31884:366;;;:::o;32256:419::-;32422:4;32460:2;32449:9;32445:18;32437:26;;32509:9;32503:4;32499:20;32495:1;32484:9;32480:17;32473:47;32537:131;32663:4;32537:131;:::i;:::-;32529:139;;32256:419;;;:::o;32681:143::-;32738:5;32769:6;32763:13;32754:22;;32785:33;32812:5;32785:33;:::i;:::-;32681:143;;;;:::o;32830:351::-;32900:6;32949:2;32937:9;32928:7;32924:23;32920:32;32917:119;;;32955:79;;:::i;:::-;32917:119;33075:1;33100:64;33156:7;33147:6;33136:9;33132:22;33100:64;:::i;:::-;33090:74;;33046:128;32830:351;;;;:::o;33187:332::-;33308:4;33346:2;33335:9;33331:18;33323:26;;33359:71;33427:1;33416:9;33412:17;33403:6;33359:71;:::i;:::-;33440:72;33508:2;33497:9;33493:18;33484:6;33440:72;:::i;:::-;33187:332;;;;;:::o;33525:225::-;33665:34;33661:1;33653:6;33649:14;33642:58;33734:8;33729:2;33721:6;33717:15;33710:33;33525:225;:::o;33756:366::-;33898:3;33919:67;33983:2;33978:3;33919:67;:::i;:::-;33912:74;;33995:93;34084:3;33995:93;:::i;:::-;34113:2;34108:3;34104:12;34097:19;;33756:366;;;:::o;34128:419::-;34294:4;34332:2;34321:9;34317:18;34309:26;;34381:9;34375:4;34371:20;34367:1;34356:9;34352:17;34345:47;34409:131;34535:4;34409:131;:::i;:::-;34401:139;;34128:419;;;:::o;34575:327::-;34689:3;34710:88;34791:6;34786:3;34710:88;:::i;:::-;34703:95;;34808:56;34857:6;34852:3;34845:5;34808:56;:::i;:::-;34889:6;34884:3;34880:16;34873:23;;34575:327;;;;;:::o;34908:291::-;35048:3;35070:103;35169:3;35160:6;35152;35070:103;:::i;:::-;35063:110;;35190:3;35183:10;;34908:291;;;;;:::o;35205:176::-;35345:28;35341:1;35333:6;35329:14;35322:52;35205:176;:::o;35387:366::-;35529:3;35550:67;35614:2;35609:3;35550:67;:::i;:::-;35543:74;;35626:93;35715:3;35626:93;:::i;:::-;35744:2;35739:3;35735:12;35728:19;;35387:366;;;:::o;35759:419::-;35925:4;35963:2;35952:9;35948:18;35940:26;;36012:9;36006:4;36002:20;35998:1;35987:9;35983:17;35976:47;36040:131;36166:4;36040:131;:::i;:::-;36032:139;;35759:419;;;:::o;36206:314::-;36302:3;36323:70;36386:6;36381:3;36323:70;:::i;:::-;36316:77;;36403:56;36452:6;36447:3;36440:5;36403:56;:::i;:::-;36484:29;36506:6;36484:29;:::i;:::-;36479:3;36475:39;36468:46;;36206:314;;;;;:::o;36526:739::-;36745:4;36783:3;36772:9;36768:19;36760:27;;36797:69;36863:1;36852:9;36848:17;36839:6;36797:69;:::i;:::-;36913:9;36907:4;36903:20;36898:2;36887:9;36883:18;36876:48;36941:76;37012:4;37003:6;36941:76;:::i;:::-;36933:84;;37027:70;37093:2;37082:9;37078:18;37069:6;37027:70;:::i;:::-;37144:9;37138:4;37134:20;37129:2;37118:9;37114:18;37107:48;37172:86;37253:4;37244:6;37236;37172:86;:::i;:::-;37164:94;;36526:739;;;;;;;;:::o;37271:224::-;37411:34;37407:1;37399:6;37395:14;37388:58;37480:7;37475:2;37467:6;37463:15;37456:32;37271:224;:::o;37501:366::-;37643:3;37664:67;37728:2;37723:3;37664:67;:::i;:::-;37657:74;;37740:93;37829:3;37740:93;:::i;:::-;37858:2;37853:3;37849:12;37842:19;;37501:366;;;:::o;37873:419::-;38039:4;38077:2;38066:9;38062:18;38054:26;;38126:9;38120:4;38116:20;38112:1;38101:9;38097:17;38090:47;38154:131;38280:4;38154:131;:::i;:::-;38146:139;;37873:419;;;:::o;38298:180::-;38346:77;38343:1;38336:88;38443:4;38440:1;38433:15;38467:4;38464:1;38457:15;38484:117;38593:1;38590;38583:12;38607:117;38716:1;38713;38706:12;38730:117;38839:1;38836;38829:12;38853:724;38930:4;38936:6;38992:11;38979:25;39092:1;39086:4;39082:12;39071:8;39055:14;39051:29;39047:48;39027:18;39023:73;39013:168;;39100:79;;:::i;:::-;39013:168;39212:18;39202:8;39198:33;39190:41;;39264:4;39251:18;39241:28;;39292:18;39284:6;39281:30;39278:117;;;39314:79;;:::i;:::-;39278:117;39422:2;39416:4;39412:13;39404:21;;39479:4;39471:6;39467:17;39451:14;39447:38;39441:4;39437:49;39434:136;;;39489:79;;:::i;:::-;39434:136;38943:634;38853:724;;;;;:::o;39583:96::-;39641:6;39669:3;39659:13;;39583:96;;;;:::o;39685:93::-;39722:6;39769:2;39764;39757:5;39753:14;39749:23;39739:33;;39685:93;;;:::o;39784:107::-;39828:8;39878:5;39872:4;39868:16;39847:37;;39784:107;;;;:::o;39897:393::-;39966:6;40016:1;40004:10;40000:18;40039:97;40069:66;40058:9;40039:97;:::i;:::-;40157:39;40187:8;40176:9;40157:39;:::i;:::-;40145:51;;40229:4;40225:9;40218:5;40214:21;40205:30;;40278:4;40268:8;40264:19;40257:5;40254:30;40244:40;;39973:317;;39897:393;;;;;:::o;40296:142::-;40346:9;40379:53;40397:34;40406:24;40424:5;40406:24;:::i;:::-;40397:34;:::i;:::-;40379:53;:::i;:::-;40366:66;;40296:142;;;:::o;40444:75::-;40487:3;40508:5;40501:12;;40444:75;;;:::o;40525:269::-;40635:39;40666:7;40635:39;:::i;:::-;40696:91;40745:41;40769:16;40745:41;:::i;:::-;40737:6;40730:4;40724:11;40696:91;:::i;:::-;40690:4;40683:105;40601:193;40525:269;;;:::o;40800:73::-;40845:3;40800:73;:::o;40879:189::-;40956:32;;:::i;:::-;40997:65;41055:6;41047;41041:4;40997:65;:::i;:::-;40932:136;40879:189;;:::o;41074:186::-;41134:120;41151:3;41144:5;41141:14;41134:120;;;41205:39;41242:1;41235:5;41205:39;:::i;:::-;41178:1;41171:5;41167:13;41158:22;;41134:120;;;41074:186;;:::o;41266:541::-;41366:2;41361:3;41358:11;41355:445;;;41400:37;41431:5;41400:37;:::i;:::-;41483:29;41501:10;41483:29;:::i;:::-;41473:8;41469:44;41666:2;41654:10;41651:18;41648:49;;;41687:8;41672:23;;41648:49;41710:80;41766:22;41784:3;41766:22;:::i;:::-;41756:8;41752:37;41739:11;41710:80;:::i;:::-;41370:430;;41355:445;41266:541;;;:::o;41813:117::-;41867:8;41917:5;41911:4;41907:16;41886:37;;41813:117;;;;:::o;41936:169::-;41980:6;42013:51;42061:1;42057:6;42049:5;42046:1;42042:13;42013:51;:::i;:::-;42009:56;42094:4;42088;42084:15;42074:25;;41987:118;41936:169;;;;:::o;42110:295::-;42186:4;42332:29;42357:3;42351:4;42332:29;:::i;:::-;42324:37;;42394:3;42391:1;42387:11;42381:4;42378:21;42370:29;;42110:295;;;;:::o;42410:1398::-;42532:43;42571:3;42566;42532:43;:::i;:::-;42640:18;42632:6;42629:30;42626:56;;;42662:18;;:::i;:::-;42626:56;42706:38;42738:4;42732:11;42706:38;:::i;:::-;42791:66;42850:6;42842;42836:4;42791:66;:::i;:::-;42884:1;42913:2;42905:6;42902:14;42930:1;42925:631;;;;43600:1;43617:6;43614:84;;;43673:9;43668:3;43664:19;43651:33;43642:42;;43614:84;43724:67;43784:6;43777:5;43724:67;:::i;:::-;43718:4;43711:81;43573:229;42895:907;;42925:631;42977:4;42973:9;42965:6;42961:22;43011:36;43042:4;43011:36;:::i;:::-;43069:1;43083:215;43097:7;43094:1;43091:14;43083:215;;;43183:9;43178:3;43174:19;43161:33;43153:6;43146:49;43234:1;43226:6;43222:14;43212:24;;43281:2;43270:9;43266:18;43253:31;;43120:4;43117:1;43113:12;43108:17;;43083:215;;;43326:6;43317:7;43314:19;43311:186;;;43391:9;43386:3;43382:19;43369:33;43434:48;43476:4;43468:6;43464:17;43453:9;43434:48;:::i;:::-;43426:6;43419:64;43334:163;43311:186;43543:1;43539;43531:6;43527:14;43523:22;43517:4;43510:36;42932:624;;;42895:907;;42507:1301;;;42410:1398;;;:::o;43814:225::-;43954:34;43950:1;43942:6;43938:14;43931:58;44023:8;44018:2;44010:6;44006:15;43999:33;43814:225;:::o;44045:366::-;44187:3;44208:67;44272:2;44267:3;44208:67;:::i;:::-;44201:74;;44284:93;44373:3;44284:93;:::i;:::-;44402:2;44397:3;44393:12;44386:19;;44045:366;;;:::o;44417:419::-;44583:4;44621:2;44610:9;44606:18;44598:26;;44670:9;44664:4;44660:20;44656:1;44645:9;44641:17;44634:47;44698:131;44824:4;44698:131;:::i;:::-;44690:139;;44417:419;;;:::o;44842:223::-;44982:34;44978:1;44970:6;44966:14;44959:58;45051:6;45046:2;45038:6;45034:15;45027:31;44842:223;:::o;45071:366::-;45213:3;45234:67;45298:2;45293:3;45234:67;:::i;:::-;45227:74;;45310:93;45399:3;45310:93;:::i;:::-;45428:2;45423:3;45419:12;45412:19;;45071:366;;;:::o;45443:419::-;45609:4;45647:2;45636:9;45632:18;45624:26;;45696:9;45690:4;45686:20;45682:1;45671:9;45667:17;45660:47;45724:131;45850:4;45724:131;:::i;:::-;45716:139;;45443:419;;;:::o;45868:221::-;46008:34;46004:1;45996:6;45992:14;45985:58;46077:4;46072:2;46064:6;46060:15;46053:29;45868:221;:::o;46095:366::-;46237:3;46258:67;46322:2;46317:3;46258:67;:::i;:::-;46251:74;;46334:93;46423:3;46334:93;:::i;:::-;46452:2;46447:3;46443:12;46436:19;;46095:366;;;:::o;46467:419::-;46633:4;46671:2;46660:9;46656:18;46648:26;;46720:9;46714:4;46710:20;46706:1;46695:9;46691:17;46684:47;46748:131;46874:4;46748:131;:::i;:::-;46740:139;;46467:419;;;:::o;46892:138::-;46973:32;46999:5;46973:32;:::i;:::-;46966:5;46963:43;46953:71;;47020:1;47017;47010:12;46953:71;46892:138;:::o;47036:159::-;47101:5;47132:6;47126:13;47117:22;;47148:41;47183:5;47148:41;:::i;:::-;47036:159;;;;:::o;47201:523::-;47288:6;47296;47345:2;47333:9;47324:7;47320:23;47316:32;47313:119;;;47351:79;;:::i;:::-;47313:119;47471:1;47496:72;47560:7;47551:6;47540:9;47536:22;47496:72;:::i;:::-;47486:82;;47442:136;47617:2;47643:64;47699:7;47690:6;47679:9;47675:22;47643:64;:::i;:::-;47633:74;;47588:129;47201:523;;;;;:::o;47730:179::-;47870:31;47866:1;47858:6;47854:14;47847:55;47730:179;:::o;47915:366::-;48057:3;48078:67;48142:2;48137:3;48078:67;:::i;:::-;48071:74;;48154:93;48243:3;48154:93;:::i;:::-;48272:2;48267:3;48263:12;48256:19;;47915:366;;;:::o;48287:419::-;48453:4;48491:2;48480:9;48476:18;48468:26;;48540:9;48534:4;48530:20;48526:1;48515:9;48511:17;48504:47;48568:131;48694:4;48568:131;:::i;:::-;48560:139;;48287:419;;;:::o;48712:222::-;48852:34;48848:1;48840:6;48836:14;48829:58;48921:5;48916:2;48908:6;48904:15;48897:30;48712:222;:::o;48940:366::-;49082:3;49103:67;49167:2;49162:3;49103:67;:::i;:::-;49096:74;;49179:93;49268:3;49179:93;:::i;:::-;49297:2;49292:3;49288:12;49281:19;;48940:366;;;:::o;49312:419::-;49478:4;49516:2;49505:9;49501:18;49493:26;;49565:9;49559:4;49555:20;49551:1;49540:9;49536:17;49529:47;49593:131;49719:4;49593:131;:::i;:::-;49585:139;;49312:419;;;:::o;49737:220::-;49877:34;49873:1;49865:6;49861:14;49854:58;49946:3;49941:2;49933:6;49929:15;49922:28;49737:220;:::o;49963:366::-;50105:3;50126:67;50190:2;50185:3;50126:67;:::i;:::-;50119:74;;50202:93;50291:3;50202:93;:::i;:::-;50320:2;50315:3;50311:12;50304:19;;49963:366;;;:::o;50335:419::-;50501:4;50539:2;50528:9;50524:18;50516:26;;50588:9;50582:4;50578:20;50574:1;50563:9;50559:17;50552:47;50616:131;50742:4;50616:131;:::i;:::-;50608:139;;50335:419;;;:::o;50760:221::-;50900:34;50896:1;50888:6;50884:14;50877:58;50969:4;50964:2;50956:6;50952:15;50945:29;50760:221;:::o;50987:366::-;51129:3;51150:67;51214:2;51209:3;51150:67;:::i;:::-;51143:74;;51226:93;51315:3;51226:93;:::i;:::-;51344:2;51339:3;51335:12;51328:19;;50987:366;;;:::o;51359:419::-;51525:4;51563:2;51552:9;51548:18;51540:26;;51612:9;51606:4;51602:20;51598:1;51587:9;51583:17;51576:47;51640:131;51766:4;51640:131;:::i;:::-;51632:139;;51359:419;;;:::o;51784:182::-;51924:34;51920:1;51912:6;51908:14;51901:58;51784:182;:::o;51972:366::-;52114:3;52135:67;52199:2;52194:3;52135:67;:::i;:::-;52128:74;;52211:93;52300:3;52211:93;:::i;:::-;52329:2;52324:3;52320:12;52313:19;;51972:366;;;:::o;52344:419::-;52510:4;52548:2;52537:9;52533:18;52525:26;;52597:9;52591:4;52587:20;52583:1;52572:9;52568:17;52561:47;52625:131;52751:4;52625:131;:::i;:::-;52617:139;;52344:419;;;:::o;52769:181::-;52909:33;52905:1;52897:6;52893:14;52886:57;52769:181;:::o;52956:366::-;53098:3;53119:67;53183:2;53178:3;53119:67;:::i;:::-;53112:74;;53195:93;53284:3;53195:93;:::i;:::-;53313:2;53308:3;53304:12;53297:19;;52956:366;;;:::o;53328:419::-;53494:4;53532:2;53521:9;53517:18;53509:26;;53581:9;53575:4;53571:20;53567:1;53556:9;53552:17;53545:47;53609:131;53735:4;53609:131;:::i;:::-;53601:139;;53328:419;;;:::o;53753:224::-;53893:34;53889:1;53881:6;53877:14;53870:58;53962:7;53957:2;53949:6;53945:15;53938:32;53753:224;:::o;53983:366::-;54125:3;54146:67;54210:2;54205:3;54146:67;:::i;:::-;54139:74;;54222:93;54311:3;54222:93;:::i;:::-;54340:2;54335:3;54331:12;54324:19;;53983:366;;;:::o;54355:419::-;54521:4;54559:2;54548:9;54544:18;54536:26;;54608:9;54602:4;54598:20;54594:1;54583:9;54579:17;54572:47;54636:131;54762:4;54636:131;:::i;:::-;54628:139;;54355:419;;;:::o;54780:222::-;54920:34;54916:1;54908:6;54904:14;54897:58;54989:5;54984:2;54976:6;54972:15;54965:30;54780:222;:::o;55008:366::-;55150:3;55171:67;55235:2;55230:3;55171:67;:::i;:::-;55164:74;;55247:93;55336:3;55247:93;:::i;:::-;55365:2;55360:3;55356:12;55349:19;;55008:366;;;:::o;55380:419::-;55546:4;55584:2;55573:9;55569:18;55561:26;;55633:9;55627:4;55623:20;55619:1;55608:9;55604:17;55597:47;55661:131;55787:4;55661:131;:::i;:::-;55653:139;;55380:419;;;:::o;55805:225::-;55945:34;55941:1;55933:6;55929:14;55922:58;56014:8;56009:2;56001:6;55997:15;55990:33;55805:225;:::o;56036:366::-;56178:3;56199:67;56263:2;56258:3;56199:67;:::i;:::-;56192:74;;56275:93;56364:3;56275:93;:::i;:::-;56393:2;56388:3;56384:12;56377:19;;56036:366;;;:::o;56408:419::-;56574:4;56612:2;56601:9;56597:18;56589:26;;56661:9;56655:4;56651:20;56647:1;56636:9;56632:17;56625:47;56689:131;56815:4;56689:131;:::i;:::-;56681:139;;56408:419;;;:::o

Swarm Source

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