distributed-system-analysis/run-perf

View on GitHub
docs/source/_static/html_result.html

Summary

Maintainability
Test Coverage
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Comparison of build 1
 and 10
 (Fedora-30
 and Fedora-30
)</title>

<script language="javascript">
/*!
 * jQuery JavaScript Library v1.9.1
 * http://jquery.com/
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 *
 * Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors
 * Released under the MIT license
 * http://jquery.org/license
 *
 * Date: 2013-2-4
 */
(function( window, undefined ) {

// Can't do this because several apps including ASP.NET trace
// the stack via arguments.caller.callee and Firefox dies if
// you try to trace through "use strict" call chains. (#13335)
// Support: Firefox 18+
//"use strict";
var
    // The deferred used on DOM ready
    readyList,

    // A central reference to the root jQuery(document)
    rootjQuery,

    // Support: IE<9
    // For `typeof node.method` instead of `node.method !== undefined`
    core_strundefined = typeof undefined,

    // Use the correct document accordingly with window argument (sandbox)
    document = window.document,
    location = window.location,

    // Map over jQuery in case of overwrite
    _jQuery = window.jQuery,

    // Map over the $ in case of overwrite
    _$ = window.$,

    // [[Class]] -> type pairs
    class2type = {},

    // List of deleted data cache ids, so we can reuse them
    core_deletedIds = [],

    core_version = "1.9.1",

    // Save a reference to some core methods
    core_concat = core_deletedIds.concat,
    core_push = core_deletedIds.push,
    core_slice = core_deletedIds.slice,
    core_indexOf = core_deletedIds.indexOf,
    core_toString = class2type.toString,
    core_hasOwn = class2type.hasOwnProperty,
    core_trim = core_version.trim,

    // Define a local copy of jQuery
    jQuery = function( selector, context ) {
        // The jQuery object is actually just the init constructor 'enhanced'
        return new jQuery.fn.init( selector, context, rootjQuery );
    },

    // Used for matching numbers
    core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,

    // Used for splitting on whitespace
    core_rnotwhite = /\S+/g,

    // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE)
    rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,

    // A simple way to check for HTML strings
    // Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
    // Strict HTML recognition (#11290: must start with <)
    rquickExpr = /^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,

    // Match a standalone tag
    rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/,

    // JSON RegExp
    rvalidchars = /^[\],:{}\s]*$/,
    rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g,
    rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,
    rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,

    // Matches dashed string for camelizing
    rmsPrefix = /^-ms-/,
    rdashAlpha = /-([\da-z])/gi,

    // Used by jQuery.camelCase as callback to replace()
    fcamelCase = function( all, letter ) {
        return letter.toUpperCase();
    },

    // The ready event handler
    completed = function( event ) {

        // readyState === "complete" is good enough for us to call the dom ready in oldIE
        if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) {
            detach();
            jQuery.ready();
        }
    },
    // Clean-up method for dom ready events
    detach = function() {
        if ( document.addEventListener ) {
            document.removeEventListener( "DOMContentLoaded", completed, false );
            window.removeEventListener( "load", completed, false );

        } else {
            document.detachEvent( "onreadystatechange", completed );
            window.detachEvent( "onload", completed );
        }
    };

jQuery.fn = jQuery.prototype = {
    // The current version of jQuery being used
    jquery: core_version,

    constructor: jQuery,
    init: function( selector, context, rootjQuery ) {
        var match, elem;

        // HANDLE: $(""), $(null), $(undefined), $(false)
        if ( !selector ) {
            return this;
        }

        // Handle HTML strings
        if ( typeof selector === "string" ) {
            if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) {
                // Assume that strings that start and end with <> are HTML and skip the regex check
                match = [ null, selector, null ];

            } else {
                match = rquickExpr.exec( selector );
            }

            // Match html or make sure no context is specified for #id
            if ( match && (match[1] || !context) ) {

                // HANDLE: $(html) -> $(array)
                if ( match[1] ) {
                    context = context instanceof jQuery ? context[0] : context;

                    // scripts is true for back-compat
                    jQuery.merge( this, jQuery.parseHTML(
                        match[1],
                        context && context.nodeType ? context.ownerDocument || context : document,
                        true
                    ) );

                    // HANDLE: $(html, props)
                    if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
                        for ( match in context ) {
                            // Properties of context are called as methods if possible
                            if ( jQuery.isFunction( this[ match ] ) ) {
                                this[ match ]( context[ match ] );

                            // ...and otherwise set as attributes
                            } else {
                                this.attr( match, context[ match ] );
                            }
                        }
                    }

                    return this;

                // HANDLE: $(#id)
                } else {
                    elem = document.getElementById( match[2] );

                    // Check parentNode to catch when Blackberry 4.6 returns
                    // nodes that are no longer in the document #6963
                    if ( elem && elem.parentNode ) {
                        // Handle the case where IE and Opera return items
                        // by name instead of ID
                        if ( elem.id !== match[2] ) {
                            return rootjQuery.find( selector );
                        }

                        // Otherwise, we inject the element directly into the jQuery object
                        this.length = 1;
                        this[0] = elem;
                    }

                    this.context = document;
                    this.selector = selector;
                    return this;
                }

            // HANDLE: $(expr, $(...))
            } else if ( !context || context.jquery ) {
                return ( context || rootjQuery ).find( selector );

            // HANDLE: $(expr, context)
            // (which is just equivalent to: $(context).find(expr)
            } else {
                return this.constructor( context ).find( selector );
            }

        // HANDLE: $(DOMElement)
        } else if ( selector.nodeType ) {
            this.context = this[0] = selector;
            this.length = 1;
            return this;

        // HANDLE: $(function)
        // Shortcut for document ready
        } else if ( jQuery.isFunction( selector ) ) {
            return rootjQuery.ready( selector );
        }

        if ( selector.selector !== undefined ) {
            this.selector = selector.selector;
            this.context = selector.context;
        }

        return jQuery.makeArray( selector, this );
    },

    // Start with an empty selector
    selector: "",

    // The default length of a jQuery object is 0
    length: 0,

    // The number of elements contained in the matched element set
    size: function() {
        return this.length;
    },

    toArray: function() {
        return core_slice.call( this );
    },

    // Get the Nth element in the matched element set OR
    // Get the whole matched element set as a clean array
    get: function( num ) {
        return num == null ?

            // Return a 'clean' array
            this.toArray() :

            // Return just the object
            ( num < 0 ? this[ this.length + num ] : this[ num ] );
    },

    // Take an array of elements and push it onto the stack
    // (returning the new matched element set)
    pushStack: function( elems ) {

        // Build a new jQuery matched element set
        var ret = jQuery.merge( this.constructor(), elems );

        // Add the old object onto the stack (as a reference)
        ret.prevObject = this;
        ret.context = this.context;

        // Return the newly-formed element set
        return ret;
    },

    // Execute a callback for every element in the matched set.
    // (You can seed the arguments with an array of args, but this is
    // only used internally.)
    each: function( callback, args ) {
        return jQuery.each( this, callback, args );
    },

    ready: function( fn ) {
        // Add the callback
        jQuery.ready.promise().done( fn );

        return this;
    },

    slice: function() {
        return this.pushStack( core_slice.apply( this, arguments ) );
    },

    first: function() {
        return this.eq( 0 );
    },

    last: function() {
        return this.eq( -1 );
    },

    eq: function( i ) {
        var len = this.length,
            j = +i + ( i < 0 ? len : 0 );
        return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );
    },

    map: function( callback ) {
        return this.pushStack( jQuery.map(this, function( elem, i ) {
            return callback.call( elem, i, elem );
        }));
    },

    end: function() {
        return this.prevObject || this.constructor(null);
    },

    // For internal use only.
    // Behaves like an Array's method, not like a jQuery method.
    push: core_push,
    sort: [].sort,
    splice: [].splice
};

// Give the init function the jQuery prototype for later instantiation
jQuery.fn.init.prototype = jQuery.fn;

jQuery.extend = jQuery.fn.extend = function() {
    var src, copyIsArray, copy, name, options, clone,
        target = arguments[0] || {},
        i = 1,
        length = arguments.length,
        deep = false;

    // Handle a deep copy situation
    if ( typeof target === "boolean" ) {
        deep = target;
        target = arguments[1] || {};
        // skip the boolean and the target
        i = 2;
    }

    // Handle case when target is a string or something (possible in deep copy)
    if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
        target = {};
    }

    // extend jQuery itself if only one argument is passed
    if ( length === i ) {
        target = this;
        --i;
    }

    for ( ; i < length; i++ ) {
        // Only deal with non-null/undefined values
        if ( (options = arguments[ i ]) != null ) {
            // Extend the base object
            for ( name in options ) {
                src = target[ name ];
                copy = options[ name ];

                // Prevent never-ending loop
                if ( target === copy ) {
                    continue;
                }

                // Recurse if we're merging plain objects or arrays
                if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
                    if ( copyIsArray ) {
                        copyIsArray = false;
                        clone = src && jQuery.isArray(src) ? src : [];

                    } else {
                        clone = src && jQuery.isPlainObject(src) ? src : {};
                    }

                    // Never move original objects, clone them
                    target[ name ] = jQuery.extend( deep, clone, copy );

                // Don't bring in undefined values
                } else if ( copy !== undefined ) {
                    target[ name ] = copy;
                }
            }
        }
    }

    // Return the modified object
    return target;
};

jQuery.extend({
    noConflict: function( deep ) {
        if ( window.$ === jQuery ) {
            window.$ = _$;
        }

        if ( deep && window.jQuery === jQuery ) {
            window.jQuery = _jQuery;
        }

        return jQuery;
    },

    // Is the DOM ready to be used? Set to true once it occurs.
    isReady: false,

    // A counter to track how many items to wait for before
    // the ready event fires. See #6781
    readyWait: 1,

    // Hold (or release) the ready event
    holdReady: function( hold ) {
        if ( hold ) {
            jQuery.readyWait++;
        } else {
            jQuery.ready( true );
        }
    },

    // Handle when the DOM is ready
    ready: function( wait ) {

        // Abort if there are pending holds or we're already ready
        if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
            return;
        }

        // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
        if ( !document.body ) {
            return setTimeout( jQuery.ready );
        }

        // Remember that the DOM is ready
        jQuery.isReady = true;

        // If a normal DOM Ready event fired, decrement, and wait if need be
        if ( wait !== true && --jQuery.readyWait > 0 ) {
            return;
        }

        // If there are functions bound, to execute
        readyList.resolveWith( document, [ jQuery ] );

        // Trigger any bound ready events
        if ( jQuery.fn.trigger ) {
            jQuery( document ).trigger("ready").off("ready");
        }
    },

    // See test/unit/core.js for details concerning isFunction.
    // Since version 1.3, DOM methods and functions like alert
    // aren't supported. They return false on IE (#2968).
    isFunction: function( obj ) {
        return jQuery.type(obj) === "function";
    },

    isArray: Array.isArray || function( obj ) {
        return jQuery.type(obj) === "array";
    },

    isWindow: function( obj ) {
        return obj != null && obj == obj.window;
    },

    isNumeric: function( obj ) {
        return !isNaN( parseFloat(obj) ) && isFinite( obj );
    },

    type: function( obj ) {
        if ( obj == null ) {
            return String( obj );
        }
        return typeof obj === "object" || typeof obj === "function" ?
            class2type[ core_toString.call(obj) ] || "object" :
            typeof obj;
    },

    isPlainObject: function( obj ) {
        // Must be an Object.
        // Because of IE, we also have to check the presence of the constructor property.
        // Make sure that DOM nodes and window objects don't pass through, as well
        if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
            return false;
        }

        try {
            // Not own constructor property must be Object
            if ( obj.constructor &&
                !core_hasOwn.call(obj, "constructor") &&
                !core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) {
                return false;
            }
        } catch ( e ) {
            // IE8,9 Will throw exceptions on certain host objects #9897
            return false;
        }

        // Own properties are enumerated firstly, so to speed up,
        // if last one is own, then all properties are own.

        var key;
        for ( key in obj ) {}

        return key === undefined || core_hasOwn.call( obj, key );
    },

    isEmptyObject: function( obj ) {
        var name;
        for ( name in obj ) {
            return false;
        }
        return true;
    },

    error: function( msg ) {
        throw new Error( msg );
    },

    // data: string of html
    // context (optional): If specified, the fragment will be created in this context, defaults to document
    // keepScripts (optional): If true, will include scripts passed in the html string
    parseHTML: function( data, context, keepScripts ) {
        if ( !data || typeof data !== "string" ) {
            return null;
        }
        if ( typeof context === "boolean" ) {
            keepScripts = context;
            context = false;
        }
        context = context || document;

        var parsed = rsingleTag.exec( data ),
            scripts = !keepScripts && [];

        // Single tag
        if ( parsed ) {
            return [ context.createElement( parsed[1] ) ];
        }

        parsed = jQuery.buildFragment( [ data ], context, scripts );
        if ( scripts ) {
            jQuery( scripts ).remove();
        }
        return jQuery.merge( [], parsed.childNodes );
    },

    parseJSON: function( data ) {
        // Attempt to parse using the native JSON parser first
        if ( window.JSON && window.JSON.parse ) {
            return window.JSON.parse( data );
        }

        if ( data === null ) {
            return data;
        }

        if ( typeof data === "string" ) {

            // Make sure leading/trailing whitespace is removed (IE can't handle it)
            data = jQuery.trim( data );

            if ( data ) {
                // Make sure the incoming data is actual JSON
                // Logic borrowed from http://json.org/json2.js
                if ( rvalidchars.test( data.replace( rvalidescape, "@" )
                    .replace( rvalidtokens, "]" )
                    .replace( rvalidbraces, "")) ) {

                    return ( new Function( "return " + data ) )();
                }
            }
        }

        jQuery.error( "Invalid JSON: " + data );
    },

    // Cross-browser xml parsing
    parseXML: function( data ) {
        var xml, tmp;
        if ( !data || typeof data !== "string" ) {
            return null;
        }
        try {
            if ( window.DOMParser ) { // Standard
                tmp = new DOMParser();
                xml = tmp.parseFromString( data , "text/xml" );
            } else { // IE
                xml = new ActiveXObject( "Microsoft.XMLDOM" );
                xml.async = "false";
                xml.loadXML( data );
            }
        } catch( e ) {
            xml = undefined;
        }
        if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) {
            jQuery.error( "Invalid XML: " + data );
        }
        return xml;
    },

    noop: function() {},

    // Evaluates a script in a global context
    // Workarounds based on findings by Jim Driscoll
    // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context
    globalEval: function( data ) {
        if ( data && jQuery.trim( data ) ) {
            // We use execScript on Internet Explorer
            // We use an anonymous function so that context is window
            // rather than jQuery in Firefox
            ( window.execScript || function( data ) {
                window[ "eval" ].call( window, data );
            } )( data );
        }
    },

    // Convert dashed to camelCase; used by the css and data modules
    // Microsoft forgot to hump their vendor prefix (#9572)
    camelCase: function( string ) {
        return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
    },

    nodeName: function( elem, name ) {
        return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
    },

    // args is for internal usage only
    each: function( obj, callback, args ) {
        var value,
            i = 0,
            length = obj.length,
            isArray = isArraylike( obj );

        if ( args ) {
            if ( isArray ) {
                for ( ; i < length; i++ ) {
                    value = callback.apply( obj[ i ], args );

                    if ( value === false ) {
                        break;
                    }
                }
            } else {
                for ( i in obj ) {
                    value = callback.apply( obj[ i ], args );

                    if ( value === false ) {
                        break;
                    }
                }
            }

        // A special, fast, case for the most common use of each
        } else {
            if ( isArray ) {
                for ( ; i < length; i++ ) {
                    value = callback.call( obj[ i ], i, obj[ i ] );

                    if ( value === false ) {
                        break;
                    }
                }
            } else {
                for ( i in obj ) {
                    value = callback.call( obj[ i ], i, obj[ i ] );

                    if ( value === false ) {
                        break;
                    }
                }
            }
        }

        return obj;
    },

    // Use native String.trim function wherever possible
    trim: core_trim && !core_trim.call("\uFEFF\xA0") ?
        function( text ) {
            return text == null ?
                "" :
                core_trim.call( text );
        } :

        // Otherwise use our own trimming functionality
        function( text ) {
            return text == null ?
                "" :
                ( text + "" ).replace( rtrim, "" );
        },

    // results is for internal usage only
    makeArray: function( arr, results ) {
        var ret = results || [];

        if ( arr != null ) {
            if ( isArraylike( Object(arr) ) ) {
                jQuery.merge( ret,
                    typeof arr === "string" ?
                    [ arr ] : arr
                );
            } else {
                core_push.call( ret, arr );
            }
        }

        return ret;
    },

    inArray: function( elem, arr, i ) {
        var len;

        if ( arr ) {
            if ( core_indexOf ) {
                return core_indexOf.call( arr, elem, i );
            }

            len = arr.length;
            i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;

            for ( ; i < len; i++ ) {
                // Skip accessing in sparse arrays
                if ( i in arr && arr[ i ] === elem ) {
                    return i;
                }
            }
        }

        return -1;
    },

    merge: function( first, second ) {
        var l = second.length,
            i = first.length,
            j = 0;

        if ( typeof l === "number" ) {
            for ( ; j < l; j++ ) {
                first[ i++ ] = second[ j ];
            }
        } else {
            while ( second[j] !== undefined ) {
                first[ i++ ] = second[ j++ ];
            }
        }

        first.length = i;

        return first;
    },

    grep: function( elems, callback, inv ) {
        var retVal,
            ret = [],
            i = 0,
            length = elems.length;
        inv = !!inv;

        // Go through the array, only saving the items
        // that pass the validator function
        for ( ; i < length; i++ ) {
            retVal = !!callback( elems[ i ], i );
            if ( inv !== retVal ) {
                ret.push( elems[ i ] );
            }
        }

        return ret;
    },

    // arg is for internal usage only
    map: function( elems, callback, arg ) {
        var value,
            i = 0,
            length = elems.length,
            isArray = isArraylike( elems ),
            ret = [];

        // Go through the array, translating each of the items to their
        if ( isArray ) {
            for ( ; i < length; i++ ) {
                value = callback( elems[ i ], i, arg );

                if ( value != null ) {
                    ret[ ret.length ] = value;
                }
            }

        // Go through every key on the object,
        } else {
            for ( i in elems ) {
                value = callback( elems[ i ], i, arg );

                if ( value != null ) {
                    ret[ ret.length ] = value;
                }
            }
        }

        // Flatten any nested arrays
        return core_concat.apply( [], ret );
    },

    // A global GUID counter for objects
    guid: 1,

    // Bind a function to a context, optionally partially applying any
    // arguments.
    proxy: function( fn, context ) {
        var args, proxy, tmp;

        if ( typeof context === "string" ) {
            tmp = fn[ context ];
            context = fn;
            fn = tmp;
        }

        // Quick check to determine if target is callable, in the spec
        // this throws a TypeError, but we will just return undefined.
        if ( !jQuery.isFunction( fn ) ) {
            return undefined;
        }

        // Simulated bind
        args = core_slice.call( arguments, 2 );
        proxy = function() {
            return fn.apply( context || this, args.concat( core_slice.call( arguments ) ) );
        };

        // Set the guid of unique handler to the same of original handler, so it can be removed
        proxy.guid = fn.guid = fn.guid || jQuery.guid++;

        return proxy;
    },

    // Multifunctional method to get and set values of a collection
    // The value/s can optionally be executed if it's a function
    access: function( elems, fn, key, value, chainable, emptyGet, raw ) {
        var i = 0,
            length = elems.length,
            bulk = key == null;

        // Sets many values
        if ( jQuery.type( key ) === "object" ) {
            chainable = true;
            for ( i in key ) {
                jQuery.access( elems, fn, i, key[i], true, emptyGet, raw );
            }

        // Sets one value
        } else if ( value !== undefined ) {
            chainable = true;

            if ( !jQuery.isFunction( value ) ) {
                raw = true;
            }

            if ( bulk ) {
                // Bulk operations run against the entire set
                if ( raw ) {
                    fn.call( elems, value );
                    fn = null;

                // ...except when executing function values
                } else {
                    bulk = fn;
                    fn = function( elem, key, value ) {
                        return bulk.call( jQuery( elem ), value );
                    };
                }
            }

            if ( fn ) {
                for ( ; i < length; i++ ) {
                    fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );
                }
            }
        }

        return chainable ?
            elems :

            // Gets
            bulk ?
                fn.call( elems ) :
                length ? fn( elems[0], key ) : emptyGet;
    },

    now: function() {
        return ( new Date() ).getTime();
    }
});

jQuery.ready.promise = function( obj ) {
    if ( !readyList ) {

        readyList = jQuery.Deferred();

        // Catch cases where $(document).ready() is called after the browser event has already occurred.
        // we once tried to use readyState "interactive" here, but it caused issues like the one
        // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15
        if ( document.readyState === "complete" ) {
            // Handle it asynchronously to allow scripts the opportunity to delay ready
            setTimeout( jQuery.ready );

        // Standards-based browsers support DOMContentLoaded
        } else if ( document.addEventListener ) {
            // Use the handy event callback
            document.addEventListener( "DOMContentLoaded", completed, false );

            // A fallback to window.onload, that will always work
            window.addEventListener( "load", completed, false );

        // If IE event model is used
        } else {
            // Ensure firing before onload, maybe late but safe also for iframes
            document.attachEvent( "onreadystatechange", completed );

            // A fallback to window.onload, that will always work
            window.attachEvent( "onload", completed );

            // If IE and not a frame
            // continually check to see if the document is ready
            var top = false;

            try {
                top = window.frameElement == null && document.documentElement;
            } catch(e) {}

            if ( top && top.doScroll ) {
                (function doScrollCheck() {
                    if ( !jQuery.isReady ) {

                        try {
                            // Use the trick by Diego Perini
                            // http://javascript.nwbox.com/IEContentLoaded/
                            top.doScroll("left");
                        } catch(e) {
                            return setTimeout( doScrollCheck, 50 );
                        }

                        // detach all dom ready events
                        detach();

                        // and execute any waiting functions
                        jQuery.ready();
                    }
                })();
            }
        }
    }
    return readyList.promise( obj );
};

// Populate the class2type map
jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) {
    class2type[ "[object " + name + "]" ] = name.toLowerCase();
});

function isArraylike( obj ) {
    var length = obj.length,
        type = jQuery.type( obj );

    if ( jQuery.isWindow( obj ) ) {
        return false;
    }

    if ( obj.nodeType === 1 && length ) {
        return true;
    }

    return type === "array" || type !== "function" &&
        ( length === 0 ||
        typeof length === "number" && length > 0 && ( length - 1 ) in obj );
}

// All jQuery objects should point back to these
rootjQuery = jQuery(document);
// String to Object options format cache
var optionsCache = {};

// Convert String-formatted options into Object-formatted ones and store in cache
function createOptions( options ) {
    var object = optionsCache[ options ] = {};
    jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) {
        object[ flag ] = true;
    });
    return object;
}

/*
 * Create a callback list using the following parameters:
 *
 *    options: an optional list of space-separated options that will change how
 *            the callback list behaves or a more traditional option object
 *
 * By default a callback list will act like an event callback list and can be
 * "fired" multiple times.
 *
 * Possible options:
 *
 *    once:            will ensure the callback list can only be fired once (like a Deferred)
 *
 *    memory:            will keep track of previous values and will call any callback added
 *                    after the list has been fired right away with the latest "memorized"
 *                    values (like a Deferred)
 *
 *    unique:            will ensure a callback can only be added once (no duplicate in the list)
 *
 *    stopOnFalse:    interrupt callings when a callback returns false
 *
 */
jQuery.Callbacks = function( options ) {

    // Convert options from String-formatted to Object-formatted if needed
    // (we check in cache first)
    options = typeof options === "string" ?
        ( optionsCache[ options ] || createOptions( options ) ) :
        jQuery.extend( {}, options );

    var // Flag to know if list is currently firing
        firing,
        // Last fire value (for non-forgettable lists)
        memory,
        // Flag to know if list was already fired
        fired,
        // End of the loop when firing
        firingLength,
        // Index of currently firing callback (modified by remove if needed)
        firingIndex,
        // First callback to fire (used internally by add and fireWith)
        firingStart,
        // Actual callback list
        list = [],
        // Stack of fire calls for repeatable lists
        stack = !options.once && [],
        // Fire callbacks
        fire = function( data ) {
            memory = options.memory && data;
            fired = true;
            firingIndex = firingStart || 0;
            firingStart = 0;
            firingLength = list.length;
            firing = true;
            for ( ; list && firingIndex < firingLength; firingIndex++ ) {
                if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {
                    memory = false; // To prevent further calls using add
                    break;
                }
            }
            firing = false;
            if ( list ) {
                if ( stack ) {
                    if ( stack.length ) {
                        fire( stack.shift() );
                    }
                } else if ( memory ) {
                    list = [];
                } else {
                    self.disable();
                }
            }
        },
        // Actual Callbacks object
        self = {
            // Add a callback or a collection of callbacks to the list
            add: function() {
                if ( list ) {
                    // First, we save the current length
                    var start = list.length;
                    (function add( args ) {
                        jQuery.each( args, function( _, arg ) {
                            var type = jQuery.type( arg );
                            if ( type === "function" ) {
                                if ( !options.unique || !self.has( arg ) ) {
                                    list.push( arg );
                                }
                            } else if ( arg && arg.length && type !== "string" ) {
                                // Inspect recursively
                                add( arg );
                            }
                        });
                    })( arguments );
                    // Do we need to add the callbacks to the
                    // current firing batch?
                    if ( firing ) {
                        firingLength = list.length;
                    // With memory, if we're not firing then
                    // we should call right away
                    } else if ( memory ) {
                        firingStart = start;
                        fire( memory );
                    }
                }
                return this;
            },
            // Remove a callback from the list
            remove: function() {
                if ( list ) {
                    jQuery.each( arguments, function( _, arg ) {
                        var index;
                        while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
                            list.splice( index, 1 );
                            // Handle firing indexes
                            if ( firing ) {
                                if ( index <= firingLength ) {
                                    firingLength--;
                                }
                                if ( index <= firingIndex ) {
                                    firingIndex--;
                                }
                            }
                        }
                    });
                }
                return this;
            },
            // Check if a given callback is in the list.
            // If no argument is given, return whether or not list has callbacks attached.
            has: function( fn ) {
                return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );
            },
            // Remove all callbacks from the list
            empty: function() {
                list = [];
                return this;
            },
            // Have the list do nothing anymore
            disable: function() {
                list = stack = memory = undefined;
                return this;
            },
            // Is it disabled?
            disabled: function() {
                return !list;
            },
            // Lock the list in its current state
            lock: function() {
                stack = undefined;
                if ( !memory ) {
                    self.disable();
                }
                return this;
            },
            // Is it locked?
            locked: function() {
                return !stack;
            },
            // Call all callbacks with the given context and arguments
            fireWith: function( context, args ) {
                args = args || [];
                args = [ context, args.slice ? args.slice() : args ];
                if ( list && ( !fired || stack ) ) {
                    if ( firing ) {
                        stack.push( args );
                    } else {
                        fire( args );
                    }
                }
                return this;
            },
            // Call all the callbacks with the given arguments
            fire: function() {
                self.fireWith( this, arguments );
                return this;
            },
            // To know if the callbacks have already been called at least once
            fired: function() {
                return !!fired;
            }
        };

    return self;
};
jQuery.extend({

    Deferred: function( func ) {
        var tuples = [
                // action, add listener, listener list, final state
                [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
                [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
                [ "notify", "progress", jQuery.Callbacks("memory") ]
            ],
            state = "pending",
            promise = {
                state: function() {
                    return state;
                },
                always: function() {
                    deferred.done( arguments ).fail( arguments );
                    return this;
                },
                then: function( /* fnDone, fnFail, fnProgress */ ) {
                    var fns = arguments;
                    return jQuery.Deferred(function( newDefer ) {
                        jQuery.each( tuples, function( i, tuple ) {
                            var action = tuple[ 0 ],
                                fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
                            // deferred[ done | fail | progress ] for forwarding actions to newDefer
                            deferred[ tuple[1] ](function() {
                                var returned = fn && fn.apply( this, arguments );
                                if ( returned && jQuery.isFunction( returned.promise ) ) {
                                    returned.promise()
                                        .done( newDefer.resolve )
                                        .fail( newDefer.reject )
                                        .progress( newDefer.notify );
                                } else {
                                    newDefer[ action + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );
                                }
                            });
                        });
                        fns = null;
                    }).promise();
                },
                // Get a promise for this deferred
                // If obj is provided, the promise aspect is added to the object
                promise: function( obj ) {
                    return obj != null ? jQuery.extend( obj, promise ) : promise;
                }
            },
            deferred = {};

        // Keep pipe for back-compat
        promise.pipe = promise.then;

        // Add list-specific methods
        jQuery.each( tuples, function( i, tuple ) {
            var list = tuple[ 2 ],
                stateString = tuple[ 3 ];

            // promise[ done | fail | progress ] = list.add
            promise[ tuple[1] ] = list.add;

            // Handle state
            if ( stateString ) {
                list.add(function() {
                    // state = [ resolved | rejected ]
                    state = stateString;

                // [ reject_list | resolve_list ].disable; progress_list.lock
                }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
            }

            // deferred[ resolve | reject | notify ]
            deferred[ tuple[0] ] = function() {
                deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments );
                return this;
            };
            deferred[ tuple[0] + "With" ] = list.fireWith;
        });

        // Make the deferred a promise
        promise.promise( deferred );

        // Call given func if any
        if ( func ) {
            func.call( deferred, deferred );
        }

        // All done!
        return deferred;
    },

    // Deferred helper
    when: function( subordinate /* , ..., subordinateN */ ) {
        var i = 0,
            resolveValues = core_slice.call( arguments ),
            length = resolveValues.length,

            // the count of uncompleted subordinates
            remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,

            // the master Deferred. If resolveValues consist of only a single Deferred, just use that.
            deferred = remaining === 1 ? subordinate : jQuery.Deferred(),

            // Update function for both resolve and progress values
            updateFunc = function( i, contexts, values ) {
                return function( value ) {
                    contexts[ i ] = this;
                    values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value;
                    if( values === progressValues ) {
                        deferred.notifyWith( contexts, values );
                    } else if ( !( --remaining ) ) {
                        deferred.resolveWith( contexts, values );
                    }
                };
            },

            progressValues, progressContexts, resolveContexts;

        // add listeners to Deferred subordinates; treat others as resolved
        if ( length > 1 ) {
            progressValues = new Array( length );
            progressContexts = new Array( length );
            resolveContexts = new Array( length );
            for ( ; i < length; i++ ) {
                if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
                    resolveValues[ i ].promise()
                        .done( updateFunc( i, resolveContexts, resolveValues ) )
                        .fail( deferred.reject )
                        .progress( updateFunc( i, progressContexts, progressValues ) );
                } else {
                    --remaining;
                }
            }
        }

        // if we're not waiting on anything, resolve the master
        if ( !remaining ) {
            deferred.resolveWith( resolveContexts, resolveValues );
        }

        return deferred.promise();
    }
});
jQuery.support = (function() {

    var support, all, a,
        input, select, fragment,
        opt, eventName, isSupported, i,
        div = document.createElement("div");

    // Setup
    div.setAttribute( "className", "t" );
    div.innerHTML = "  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";

    // Support tests won't run in some limited or non-browser environments
    all = div.getElementsByTagName("*");
    a = div.getElementsByTagName("a")[ 0 ];
    if ( !all || !a || !all.length ) {
        return {};
    }

    // First batch of tests
    select = document.createElement("select");
    opt = select.appendChild( document.createElement("option") );
    input = div.getElementsByTagName("input")[ 0 ];

    a.style.cssText = "top:1px;float:left;opacity:.5";
    support = {
        // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)
        getSetAttribute: div.className !== "t",

        // IE strips leading whitespace when .innerHTML is used
        leadingWhitespace: div.firstChild.nodeType === 3,

        // Make sure that tbody elements aren't automatically inserted
        // IE will insert them into empty tables
        tbody: !div.getElementsByTagName("tbody").length,

        // Make sure that link elements get serialized correctly by innerHTML
        // This requires a wrapper element in IE
        htmlSerialize: !!div.getElementsByTagName("link").length,

        // Get the style information from getAttribute
        // (IE uses .cssText instead)
        style: /top/.test( a.getAttribute("style") ),

        // Make sure that URLs aren't manipulated
        // (IE normalizes it by default)
        hrefNormalized: a.getAttribute("href") === "/a",

        // Make sure that element opacity exists
        // (IE uses filter instead)
        // Use a regex to work around a WebKit issue. See #5145
        opacity: /^0.5/.test( a.style.opacity ),

        // Verify style float existence
        // (IE uses styleFloat instead of cssFloat)
        cssFloat: !!a.style.cssFloat,

        // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere)
        checkOn: !!input.value,

        // Make sure that a selected-by-default option has a working selected property.
        // (WebKit defaults to false instead of true, IE too, if it's in an optgroup)
        optSelected: opt.selected,

        // Tests for enctype support on a form (#6743)
        enctype: !!document.createElement("form").enctype,

        // Makes sure cloning an html5 element does not cause problems
        // Where outerHTML is undefined, this still works
        html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav></:nav>",

        // jQuery.support.boxModel DEPRECATED in 1.8 since we don't support Quirks Mode
        boxModel: document.compatMode === "CSS1Compat",

        // Will be defined later
        deleteExpando: true,
        noCloneEvent: true,
        inlineBlockNeedsLayout: false,
        shrinkWrapBlocks: false,
        reliableMarginRight: true,
        boxSizingReliable: true,
        pixelPosition: false
    };

    // Make sure checked status is properly cloned
    input.checked = true;
    support.noCloneChecked = input.cloneNode( true ).checked;

    // Make sure that the options inside disabled selects aren't marked as disabled
    // (WebKit marks them as disabled)
    select.disabled = true;
    support.optDisabled = !opt.disabled;

    // Support: IE<9
    try {
        delete div.test;
    } catch( e ) {
        support.deleteExpando = false;
    }

    // Check if we can trust getAttribute("value")
    input = document.createElement("input");
    input.setAttribute( "value", "" );
    support.input = input.getAttribute( "value" ) === "";

    // Check if an input maintains its value after becoming a radio
    input.value = "t";
    input.setAttribute( "type", "radio" );
    support.radioValue = input.value === "t";

    // #11217 - WebKit loses check when the name is after the checked attribute
    input.setAttribute( "checked", "t" );
    input.setAttribute( "name", "t" );

    fragment = document.createDocumentFragment();
    fragment.appendChild( input );

    // Check if a disconnected checkbox will retain its checked
    // value of true after appended to the DOM (IE6/7)
    support.appendChecked = input.checked;

    // WebKit doesn't clone checked state correctly in fragments
    support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked;

    // Support: IE<9
    // Opera does not clone events (and typeof div.attachEvent === undefined).
    // IE9-10 clones events bound via attachEvent, but they don't trigger with .click()
    if ( div.attachEvent ) {
        div.attachEvent( "onclick", function() {
            support.noCloneEvent = false;
        });

        div.cloneNode( true ).click();
    }

    // Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event)
    // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP), test/csp.php
    for ( i in { submit: true, change: true, focusin: true }) {
        div.setAttribute( eventName = "on" + i, "t" );

        support[ i + "Bubbles" ] = eventName in window || div.attributes[ eventName ].expando === false;
    }

    div.style.backgroundClip = "content-box";
    div.cloneNode( true ).style.backgroundClip = "";
    support.clearCloneStyle = div.style.backgroundClip === "content-box";

    // Run tests that need a body at doc ready
    jQuery(function() {
        var container, marginDiv, tds,
            divReset = "padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",
            body = document.getElementsByTagName("body")[0];

        if ( !body ) {
            // Return for frameset docs that don't have a body
            return;
        }

        container = document.createElement("div");
        container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px";

        body.appendChild( container ).appendChild( div );

        // Support: IE8
        // Check if table cells still have offsetWidth/Height when they are set
        // to display:none and there are still other visible table cells in a
        // table row; if so, offsetWidth/Height are not reliable for use when
        // determining if an element has been hidden directly using
        // display:none (it is still safe to use offsets if a parent element is
        // hidden; don safety goggles and see bug #4512 for more information).
        div.innerHTML = "<table><tr><td></td><td>t</td></tr></table>";
        tds = div.getElementsByTagName("td");
        tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none";
        isSupported = ( tds[ 0 ].offsetHeight === 0 );

        tds[ 0 ].style.display = "";
        tds[ 1 ].style.display = "none";

        // Support: IE8
        // Check if empty table cells still have offsetWidth/Height
        support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 );

        // Check box-sizing and margin behavior
        div.innerHTML = "";
        div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;";
        support.boxSizing = ( div.offsetWidth === 4 );
        support.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 );

        // Use window.getComputedStyle because jsdom on node.js will break without it.
        if ( window.getComputedStyle ) {
            support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%";
            support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px";

            // Check if div with explicit width and no margin-right incorrectly
            // gets computed margin-right based on width of container. (#3333)
            // Fails in WebKit before Feb 2011 nightlies
            // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
            marginDiv = div.appendChild( document.createElement("div") );
            marginDiv.style.cssText = div.style.cssText = divReset;
            marginDiv.style.marginRight = marginDiv.style.width = "0";
            div.style.width = "1px";

            support.reliableMarginRight =
                !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight );
        }

        if ( typeof div.style.zoom !== core_strundefined ) {
            // Support: IE<8
            // Check if natively block-level elements act like inline-block
            // elements when setting their display to 'inline' and giving
            // them layout
            div.innerHTML = "";
            div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1";
            support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 );

            // Support: IE6
            // Check if elements with layout shrink-wrap their children
            div.style.display = "block";
            div.innerHTML = "<div></div>";
            div.firstChild.style.width = "5px";
            support.shrinkWrapBlocks = ( div.offsetWidth !== 3 );

            if ( support.inlineBlockNeedsLayout ) {
                // Prevent IE 6 from affecting layout for positioned elements #11048
                // Prevent IE from shrinking the body in IE 7 mode #12869
                // Support: IE<8
                body.style.zoom = 1;
            }
        }

        body.removeChild( container );

        // Null elements to avoid leaks in IE
        container = div = tds = marginDiv = null;
    });

    // Null elements to avoid leaks in IE
    all = select = fragment = opt = a = input = null;

    return support;
})();

var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/,
    rmultiDash = /([A-Z])/g;

function internalData( elem, name, data, pvt /* Internal Use Only */ ){
    if ( !jQuery.acceptData( elem ) ) {
        return;
    }

    var thisCache, ret,
        internalKey = jQuery.expando,
        getByName = typeof name === "string",

        // We have to handle DOM nodes and JS objects differently because IE6-7
        // can't GC object references properly across the DOM-JS boundary
        isNode = elem.nodeType,

        // Only DOM nodes need the global jQuery cache; JS object data is
        // attached directly to the object so GC can occur automatically
        cache = isNode ? jQuery.cache : elem,

        // Only defining an ID for JS objects if its cache already exists allows
        // the code to shortcut on the same path as a DOM node with no cache
        id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;

    // Avoid doing any more work than we need to when trying to get data on an
    // object that has no data at all
    if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && getByName && data === undefined ) {
        return;
    }

    if ( !id ) {
        // Only DOM nodes need a new unique ID for each element since their data
        // ends up in the global cache
        if ( isNode ) {
            elem[ internalKey ] = id = core_deletedIds.pop() || jQuery.guid++;
        } else {
            id = internalKey;
        }
    }

    if ( !cache[ id ] ) {
        cache[ id ] = {};

        // Avoids exposing jQuery metadata on plain JS objects when the object
        // is serialized using JSON.stringify
        if ( !isNode ) {
            cache[ id ].toJSON = jQuery.noop;
        }
    }

    // An object can be passed to jQuery.data instead of a key/value pair; this gets
    // shallow copied over onto the existing cache
    if ( typeof name === "object" || typeof name === "function" ) {
        if ( pvt ) {
            cache[ id ] = jQuery.extend( cache[ id ], name );
        } else {
            cache[ id ].data = jQuery.extend( cache[ id ].data, name );
        }
    }

    thisCache = cache[ id ];

    // jQuery data() is stored in a separate object inside the object's internal data
    // cache in order to avoid key collisions between internal data and user-defined
    // data.
    if ( !pvt ) {
        if ( !thisCache.data ) {
            thisCache.data = {};
        }

        thisCache = thisCache.data;
    }

    if ( data !== undefined ) {
        thisCache[ jQuery.camelCase( name ) ] = data;
    }

    // Check for both converted-to-camel and non-converted data property names
    // If a data property was specified
    if ( getByName ) {

        // First Try to find as-is property data
        ret = thisCache[ name ];

        // Test for null|undefined property data
        if ( ret == null ) {

            // Try to find the camelCased property
            ret = thisCache[ jQuery.camelCase( name ) ];
        }
    } else {
        ret = thisCache;
    }

    return ret;
}

function internalRemoveData( elem, name, pvt ) {
    if ( !jQuery.acceptData( elem ) ) {
        return;
    }

    var i, l, thisCache,
        isNode = elem.nodeType,

        // See jQuery.data for more information
        cache = isNode ? jQuery.cache : elem,
        id = isNode ? elem[ jQuery.expando ] : jQuery.expando;

    // If there is already no cache entry for this object, there is no
    // purpose in continuing
    if ( !cache[ id ] ) {
        return;
    }

    if ( name ) {

        thisCache = pvt ? cache[ id ] : cache[ id ].data;

        if ( thisCache ) {

            // Support array or space separated string names for data keys
            if ( !jQuery.isArray( name ) ) {

                // try the string as a key before any manipulation
                if ( name in thisCache ) {
                    name = [ name ];
                } else {

                    // split the camel cased version by spaces unless a key with the spaces exists
                    name = jQuery.camelCase( name );
                    if ( name in thisCache ) {
                        name = [ name ];
                    } else {
                        name = name.split(" ");
                    }
                }
            } else {
                // If "name" is an array of keys...
                // When data is initially created, via ("key", "val") signature,
                // keys will be converted to camelCase.
                // Since there is no way to tell _how_ a key was added, remove
                // both plain key and camelCase key. #12786
                // This will only penalize the array argument path.
                name = name.concat( jQuery.map( name, jQuery.camelCase ) );
            }

            for ( i = 0, l = name.length; i < l; i++ ) {
                delete thisCache[ name[i] ];
            }

            // If there is no data left in the cache, we want to continue
            // and let the cache object itself get destroyed
            if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) {
                return;
            }
        }
    }

    // See jQuery.data for more information
    if ( !pvt ) {
        delete cache[ id ].data;

        // Don't destroy the parent cache unless the internal data object
        // had been the only thing left in it
        if ( !isEmptyDataObject( cache[ id ] ) ) {
            return;
        }
    }

    // Destroy the cache
    if ( isNode ) {
        jQuery.cleanData( [ elem ], true );

    // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)
    } else if ( jQuery.support.deleteExpando || cache != cache.window ) {
        delete cache[ id ];

    // When all else fails, null
    } else {
        cache[ id ] = null;
    }
}

jQuery.extend({
    cache: {},

    // Unique for each copy of jQuery on the page
    // Non-digits removed to match rinlinejQuery
    expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ),

    // The following elements throw uncatchable exceptions if you
    // attempt to add expando properties to them.
    noData: {
        "embed": true,
        // Ban all objects except for Flash (which handle expandos)
        "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",
        "applet": true
    },

    hasData: function( elem ) {
        elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];
        return !!elem && !isEmptyDataObject( elem );
    },

    data: function( elem, name, data ) {
        return internalData( elem, name, data );
    },

    removeData: function( elem, name ) {
        return internalRemoveData( elem, name );
    },

    // For internal use only.
    _data: function( elem, name, data ) {
        return internalData( elem, name, data, true );
    },

    _removeData: function( elem, name ) {
        return internalRemoveData( elem, name, true );
    },

    // A method for determining if a DOM node can handle the data expando
    acceptData: function( elem ) {
        // Do not set data on non-element because it will not be cleared (#8335).
        if ( elem.nodeType && elem.nodeType !== 1 && elem.nodeType !== 9 ) {
            return false;
        }

        var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ];

        // nodes accept data unless otherwise specified; rejection can be conditional
        return !noData || noData !== true && elem.getAttribute("classid") === noData;
    }
});

jQuery.fn.extend({
    data: function( key, value ) {
        var attrs, name,
            elem = this[0],
            i = 0,
            data = null;

        // Gets all values
        if ( key === undefined ) {
            if ( this.length ) {
                data = jQuery.data( elem );

                if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) {
                    attrs = elem.attributes;
                    for ( ; i < attrs.length; i++ ) {
                        name = attrs[i].name;

                        if ( !name.indexOf( "data-" ) ) {
                            name = jQuery.camelCase( name.slice(5) );

                            dataAttr( elem, name, data[ name ] );
                        }
                    }
                    jQuery._data( elem, "parsedAttrs", true );
                }
            }

            return data;
        }

        // Sets multiple values
        if ( typeof key === "object" ) {
            return this.each(function() {
                jQuery.data( this, key );
            });
        }

        return jQuery.access( this, function( value ) {

            if ( value === undefined ) {
                // Try to fetch any internally stored data first
                return elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : null;
            }

            this.each(function() {
                jQuery.data( this, key, value );
            });
        }, null, value, arguments.length > 1, null, true );
    },

    removeData: function( key ) {
        return this.each(function() {
            jQuery.removeData( this, key );
        });
    }
});

function dataAttr( elem, key, data ) {
    // If nothing was found internally, try to fetch any
    // data from the HTML5 data-* attribute
    if ( data === undefined && elem.nodeType === 1 ) {

        var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();

        data = elem.getAttribute( name );

        if ( typeof data === "string" ) {
            try {
                data = data === "true" ? true :
                    data === "false" ? false :
                    data === "null" ? null :
                    // Only convert to a number if it doesn't change the string
                    +data + "" === data ? +data :
                    rbrace.test( data ) ? jQuery.parseJSON( data ) :
                        data;
            } catch( e ) {}

            // Make sure we set the data so it isn't changed later
            jQuery.data( elem, key, data );

        } else {
            data = undefined;
        }
    }

    return data;
}

// checks a cache object for emptiness
function isEmptyDataObject( obj ) {
    var name;
    for ( name in obj ) {

        // if the public data object is empty, the private is still empty
        if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) {
            continue;
        }
        if ( name !== "toJSON" ) {
            return false;
        }
    }

    return true;
}
jQuery.extend({
    queue: function( elem, type, data ) {
        var queue;

        if ( elem ) {
            type = ( type || "fx" ) + "queue";
            queue = jQuery._data( elem, type );

            // Speed up dequeue by getting out quickly if this is just a lookup
            if ( data ) {
                if ( !queue || jQuery.isArray(data) ) {
                    queue = jQuery._data( elem, type, jQuery.makeArray(data) );
                } else {
                    queue.push( data );
                }
            }
            return queue || [];
        }
    },

    dequeue: function( elem, type ) {
        type = type || "fx";

        var queue = jQuery.queue( elem, type ),
            startLength = queue.length,
            fn = queue.shift(),
            hooks = jQuery._queueHooks( elem, type ),
            next = function() {
                jQuery.dequeue( elem, type );
            };

        // If the fx queue is dequeued, always remove the progress sentinel
        if ( fn === "inprogress" ) {
            fn = queue.shift();
            startLength--;
        }

        hooks.cur = fn;
        if ( fn ) {

            // Add a progress sentinel to prevent the fx queue from being
            // automatically dequeued
            if ( type === "fx" ) {
                queue.unshift( "inprogress" );
            }

            // clear up the last queue stop function
            delete hooks.stop;
            fn.call( elem, next, hooks );
        }

        if ( !startLength && hooks ) {
            hooks.empty.fire();
        }
    },

    // not intended for public consumption - generates a queueHooks object, or returns the current one
    _queueHooks: function( elem, type ) {
        var key = type + "queueHooks";
        return jQuery._data( elem, key ) || jQuery._data( elem, key, {
            empty: jQuery.Callbacks("once memory").add(function() {
                jQuery._removeData( elem, type + "queue" );
                jQuery._removeData( elem, key );
            })
        });
    }
});

jQuery.fn.extend({
    queue: function( type, data ) {
        var setter = 2;

        if ( typeof type !== "string" ) {
            data = type;
            type = "fx";
            setter--;
        }

        if ( arguments.length < setter ) {
            return jQuery.queue( this[0], type );
        }

        return data === undefined ?
            this :
            this.each(function() {
                var queue = jQuery.queue( this, type, data );

                // ensure a hooks for this queue
                jQuery._queueHooks( this, type );

                if ( type === "fx" && queue[0] !== "inprogress" ) {
                    jQuery.dequeue( this, type );
                }
            });
    },
    dequeue: function( type ) {
        return this.each(function() {
            jQuery.dequeue( this, type );
        });
    },
    // Based off of the plugin by Clint Helfers, with permission.
    // http://blindsignals.com/index.php/2009/07/jquery-delay/
    delay: function( time, type ) {
        time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
        type = type || "fx";

        return this.queue( type, function( next, hooks ) {
            var timeout = setTimeout( next, time );
            hooks.stop = function() {
                clearTimeout( timeout );
            };
        });
    },
    clearQueue: function( type ) {
        return this.queue( type || "fx", [] );
    },
    // Get a promise resolved when queues of a certain type
    // are emptied (fx is the type by default)
    promise: function( type, obj ) {
        var tmp,
            count = 1,
            defer = jQuery.Deferred(),
            elements = this,
            i = this.length,
            resolve = function() {
                if ( !( --count ) ) {
                    defer.resolveWith( elements, [ elements ] );
                }
            };

        if ( typeof type !== "string" ) {
            obj = type;
            type = undefined;
        }
        type = type || "fx";

        while( i-- ) {
            tmp = jQuery._data( elements[ i ], type + "queueHooks" );
            if ( tmp && tmp.empty ) {
                count++;
                tmp.empty.add( resolve );
            }
        }
        resolve();
        return defer.promise( obj );
    }
});
var nodeHook, boolHook,
    rclass = /[\t\r\n]/g,
    rreturn = /\r/g,
    rfocusable = /^(?:input|select|textarea|button|object)$/i,
    rclickable = /^(?:a|area)$/i,
    rboolean = /^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,
    ruseDefault = /^(?:checked|selected)$/i,
    getSetAttribute = jQuery.support.getSetAttribute,
    getSetInput = jQuery.support.input;

jQuery.fn.extend({
    attr: function( name, value ) {
        return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 );
    },

    removeAttr: function( name ) {
        return this.each(function() {
            jQuery.removeAttr( this, name );
        });
    },

    prop: function( name, value ) {
        return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 );
    },

    removeProp: function( name ) {
        name = jQuery.propFix[ name ] || name;
        return this.each(function() {
            // try/catch handles cases where IE balks (such as removing a property on window)
            try {
                this[ name ] = undefined;
                delete this[ name ];
            } catch( e ) {}
        });
    },

    addClass: function( value ) {
        var classes, elem, cur, clazz, j,
            i = 0,
            len = this.length,
            proceed = typeof value === "string" && value;

        if ( jQuery.isFunction( value ) ) {
            return this.each(function( j ) {
                jQuery( this ).addClass( value.call( this, j, this.className ) );
            });
        }

        if ( proceed ) {
            // The disjunction here is for better compressibility (see removeClass)
            classes = ( value || "" ).match( core_rnotwhite ) || [];

            for ( ; i < len; i++ ) {
                elem = this[ i ];
                cur = elem.nodeType === 1 && ( elem.className ?
                    ( " " + elem.className + " " ).replace( rclass, " " ) :
                    " "
                );

                if ( cur ) {
                    j = 0;
                    while ( (clazz = classes[j++]) ) {
                        if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
                            cur += clazz + " ";
                        }
                    }
                    elem.className = jQuery.trim( cur );

                }
            }
        }

        return this;
    },

    removeClass: function( value ) {
        var classes, elem, cur, clazz, j,
            i = 0,
            len = this.length,
            proceed = arguments.length === 0 || typeof value === "string" && value;

        if ( jQuery.isFunction( value ) ) {
            return this.each(function( j ) {
                jQuery( this ).removeClass( value.call( this, j, this.className ) );
            });
        }
        if ( proceed ) {
            classes = ( value || "" ).match( core_rnotwhite ) || [];

            for ( ; i < len; i++ ) {
                elem = this[ i ];
                // This expression is here for better compressibility (see addClass)
                cur = elem.nodeType === 1 && ( elem.className ?
                    ( " " + elem.className + " " ).replace( rclass, " " ) :
                    ""
                );

                if ( cur ) {
                    j = 0;
                    while ( (clazz = classes[j++]) ) {
                        // Remove *all* instances
                        while ( cur.indexOf( " " + clazz + " " ) >= 0 ) {
                            cur = cur.replace( " " + clazz + " ", " " );
                        }
                    }
                    elem.className = value ? jQuery.trim( cur ) : "";
                }
            }
        }

        return this;
    },

    toggleClass: function( value, stateVal ) {
        var type = typeof value,
            isBool = typeof stateVal === "boolean";

        if ( jQuery.isFunction( value ) ) {
            return this.each(function( i ) {
                jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
            });
        }

        return this.each(function() {
            if ( type === "string" ) {
                // toggle individual class names
                var className,
                    i = 0,
                    self = jQuery( this ),
                    state = stateVal,
                    classNames = value.match( core_rnotwhite ) || [];

                while ( (className = classNames[ i++ ]) ) {
                    // check each className given, space separated list
                    state = isBool ? state : !self.hasClass( className );
                    self[ state ? "addClass" : "removeClass" ]( className );
                }

            // Toggle whole class name
            } else if ( type === core_strundefined || type === "boolean" ) {
                if ( this.className ) {
                    // store className if set
                    jQuery._data( this, "__className__", this.className );
                }

                // If the element has a class name or if we're passed "false",
                // then remove the whole classname (if there was one, the above saved it).
                // Otherwise bring back whatever was previously saved (if anything),
                // falling back to the empty string if nothing was stored.
                this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || "";
            }
        });
    },

    hasClass: function( selector ) {
        var className = " " + selector + " ",
            i = 0,
            l = this.length;
        for ( ; i < l; i++ ) {
            if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {
                return true;
            }
        }

        return false;
    },

    val: function( value ) {
        var ret, hooks, isFunction,
            elem = this[0];

        if ( !arguments.length ) {
            if ( elem ) {
                hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];

                if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
                    return ret;
                }

                ret = elem.value;

                return typeof ret === "string" ?
                    // handle most common string cases
                    ret.replace(rreturn, "") :
                    // handle cases where value is null/undef or number
                    ret == null ? "" : ret;
            }

            return;
        }

        isFunction = jQuery.isFunction( value );

        return this.each(function( i ) {
            var val,
                self = jQuery(this);

            if ( this.nodeType !== 1 ) {
                return;
            }

            if ( isFunction ) {
                val = value.call( this, i, self.val() );
            } else {
                val = value;
            }

            // Treat null/undefined as ""; convert numbers to string
            if ( val == null ) {
                val = "";
            } else if ( typeof val === "number" ) {
                val += "";
            } else if ( jQuery.isArray( val ) ) {
                val = jQuery.map(val, function ( value ) {
                    return value == null ? "" : value + "";
                });
            }

            hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];

            // If set returns undefined, fall back to normal setting
            if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
                this.value = val;
            }
        });
    }
});

jQuery.extend({
    valHooks: {
        option: {
            get: function( elem ) {
                // attributes.value is undefined in Blackberry 4.7 but
                // uses .value. See #6932
                var val = elem.attributes.value;
                return !val || val.specified ? elem.value : elem.text;
            }
        },
        select: {
            get: function( elem ) {
                var value, option,
                    options = elem.options,
                    index = elem.selectedIndex,
                    one = elem.type === "select-one" || index < 0,
                    values = one ? null : [],
                    max = one ? index + 1 : options.length,
                    i = index < 0 ?
                        max :
                        one ? index : 0;

                // Loop through all the selected options
                for ( ; i < max; i++ ) {
                    option = options[ i ];

                    // oldIE doesn't update selected after form reset (#2551)
                    if ( ( option.selected || i === index ) &&
                            // Don't return options that are disabled or in a disabled optgroup
                            ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) &&
                            ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {

                        // Get the specific value for the option
                        value = jQuery( option ).val();

                        // We don't need an array for one selects
                        if ( one ) {
                            return value;
                        }

                        // Multi-Selects return an array
                        values.push( value );
                    }
                }

                return values;
            },

            set: function( elem, value ) {
                var values = jQuery.makeArray( value );

                jQuery(elem).find("option").each(function() {
                    this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0;
                });

                if ( !values.length ) {
                    elem.selectedIndex = -1;
                }
                return values;
            }
        }
    },

    attr: function( elem, name, value ) {
        var hooks, notxml, ret,
            nType = elem.nodeType;

        // don't get/set attributes on text, comment and attribute nodes
        if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
            return;
        }

        // Fallback to prop when attributes are not supported
        if ( typeof elem.getAttribute === core_strundefined ) {
            return jQuery.prop( elem, name, value );
        }

        notxml = nType !== 1 || !jQuery.isXMLDoc( elem );

        // All attributes are lowercase
        // Grab necessary hook if one is defined
        if ( notxml ) {
            name = name.toLowerCase();
            hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook );
        }

        if ( value !== undefined ) {

            if ( value === null ) {
                jQuery.removeAttr( elem, name );

            } else if ( hooks && notxml && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
                return ret;

            } else {
                elem.setAttribute( name, value + "" );
                return value;
            }

        } else if ( hooks && notxml && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
            return ret;

        } else {

            // In IE9+, Flash objects don't have .getAttribute (#12945)
            // Support: IE9+
            if ( typeof elem.getAttribute !== core_strundefined ) {
                ret =  elem.getAttribute( name );
            }

            // Non-existent attributes return null, we normalize to undefined
            return ret == null ?
                undefined :
                ret;
        }
    },

    removeAttr: function( elem, value ) {
        var name, propName,
            i = 0,
            attrNames = value && value.match( core_rnotwhite );

        if ( attrNames && elem.nodeType === 1 ) {
            while ( (name = attrNames[i++]) ) {
                propName = jQuery.propFix[ name ] || name;

                // Boolean attributes get special treatment (#10870)
                if ( rboolean.test( name ) ) {
                    // Set corresponding property to false for boolean attributes
                    // Also clear defaultChecked/defaultSelected (if appropriate) for IE<8
                    if ( !getSetAttribute && ruseDefault.test( name ) ) {
                        elem[ jQuery.camelCase( "default-" + name ) ] =
                            elem[ propName ] = false;
                    } else {
                        elem[ propName ] = false;
                    }

                // See #9699 for explanation of this approach (setting first, then removal)
                } else {
                    jQuery.attr( elem, name, "" );
                }

                elem.removeAttribute( getSetAttribute ? name : propName );
            }
        }
    },

    attrHooks: {
        type: {
            set: function( elem, value ) {
                if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) {
                    // Setting the type on a radio button after the value resets the value in IE6-9
                    // Reset value to default in case type is set after value during creation
                    var val = elem.value;
                    elem.setAttribute( "type", value );
                    if ( val ) {
                        elem.value = val;
                    }
                    return value;
                }
            }
        }
    },

    propFix: {
        tabindex: "tabIndex",
        readonly: "readOnly",
        "for": "htmlFor",
        "class": "className",
        maxlength: "maxLength",
        cellspacing: "cellSpacing",
        cellpadding: "cellPadding",
        rowspan: "rowSpan",
        colspan: "colSpan",
        usemap: "useMap",
        frameborder: "frameBorder",
        contenteditable: "contentEditable"
    },

    prop: function( elem, name, value ) {
        var ret, hooks, notxml,
            nType = elem.nodeType;

        // don't get/set properties on text, comment and attribute nodes
        if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
            return;
        }

        notxml = nType !== 1 || !jQuery.isXMLDoc( elem );

        if ( notxml ) {
            // Fix name and attach hooks
            name = jQuery.propFix[ name ] || name;
            hooks = jQuery.propHooks[ name ];
        }

        if ( value !== undefined ) {
            if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
                return ret;

            } else {
                return ( elem[ name ] = value );
            }

        } else {
            if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
                return ret;

            } else {
                return elem[ name ];
            }
        }
    },

    propHooks: {
        tabIndex: {
            get: function( elem ) {
                // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
                // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
                var attributeNode = elem.getAttributeNode("tabindex");

                return attributeNode && attributeNode.specified ?
                    parseInt( attributeNode.value, 10 ) :
                    rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?
                        0 :
                        undefined;
            }
        }
    }
});

// Hook for boolean attributes
boolHook = {
    get: function( elem, name ) {
        var
            // Use .prop to determine if this attribute is understood as boolean
            prop = jQuery.prop( elem, name ),

            // Fetch it accordingly
            attr = typeof prop === "boolean" && elem.getAttribute( name ),
            detail = typeof prop === "boolean" ?

                getSetInput && getSetAttribute ?
                    attr != null :
                    // oldIE fabricates an empty string for missing boolean attributes
                    // and conflates checked/selected into attroperties
                    ruseDefault.test( name ) ?
                        elem[ jQuery.camelCase( "default-" + name ) ] :
                        !!attr :

                // fetch an attribute node for properties not recognized as boolean
                elem.getAttributeNode( name );

        return detail && detail.value !== false ?
            name.toLowerCase() :
            undefined;
    },
    set: function( elem, value, name ) {
        if ( value === false ) {
            // Remove boolean attributes when set to false
            jQuery.removeAttr( elem, name );
        } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {
            // IE<8 needs the *property* name
            elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );

        // Use defaultChecked and defaultSelected for oldIE
        } else {
            elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true;
        }

        return name;
    }
};

// fix oldIE value attroperty
if ( !getSetInput || !getSetAttribute ) {
    jQuery.attrHooks.value = {
        get: function( elem, name ) {
            var ret = elem.getAttributeNode( name );
            return jQuery.nodeName( elem, "input" ) ?

                // Ignore the value *property* by using defaultValue
                elem.defaultValue :

                ret && ret.specified ? ret.value : undefined;
        },
        set: function( elem, value, name ) {
            if ( jQuery.nodeName( elem, "input" ) ) {
                // Does not return so that setAttribute is also used
                elem.defaultValue = value;
            } else {
                // Use nodeHook if defined (#1954); otherwise setAttribute is fine
                return nodeHook && nodeHook.set( elem, value, name );
            }
        }
    };
}

// IE6/7 do not support getting/setting some attributes with get/setAttribute
if ( !getSetAttribute ) {

    // Use this for any attribute in IE6/7
    // This fixes almost every IE6/7 issue
    nodeHook = jQuery.valHooks.button = {
        get: function( elem, name ) {
            var ret = elem.getAttributeNode( name );
            return ret && ( name === "id" || name === "name" || name === "coords" ? ret.value !== "" : ret.specified ) ?
                ret.value :
                undefined;
        },
        set: function( elem, value, name ) {
            // Set the existing or create a new attribute node
            var ret = elem.getAttributeNode( name );
            if ( !ret ) {
                elem.setAttributeNode(
                    (ret = elem.ownerDocument.createAttribute( name ))
                );
            }

            ret.value = value += "";

            // Break association with cloned elements by also using setAttribute (#9646)
            return name === "value" || value === elem.getAttribute( name ) ?
                value :
                undefined;
        }
    };

    // Set contenteditable to false on removals(#10429)
    // Setting to empty string throws an error as an invalid value
    jQuery.attrHooks.contenteditable = {
        get: nodeHook.get,
        set: function( elem, value, name ) {
            nodeHook.set( elem, value === "" ? false : value, name );
        }
    };

    // Set width and height to auto instead of 0 on empty string( Bug #8150 )
    // This is for removals
    jQuery.each([ "width", "height" ], function( i, name ) {
        jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {
            set: function( elem, value ) {
                if ( value === "" ) {
                    elem.setAttribute( name, "auto" );
                    return value;
                }
            }
        });
    });
}


// Some attributes require a special call on IE
// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
if ( !jQuery.support.hrefNormalized ) {
    jQuery.each([ "href", "src", "width", "height" ], function( i, name ) {
        jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {
            get: function( elem ) {
                var ret = elem.getAttribute( name, 2 );
                return ret == null ? undefined : ret;
            }
        });
    });

    // href/src property should get the full normalized URL (#10299/#12915)
    jQuery.each([ "href", "src" ], function( i, name ) {
        jQuery.propHooks[ name ] = {
            get: function( elem ) {
                return elem.getAttribute( name, 4 );
            }
        };
    });
}

if ( !jQuery.support.style ) {
    jQuery.attrHooks.style = {
        get: function( elem ) {
            // Return undefined in the case of empty string
            // Note: IE uppercases css property names, but if we were to .toLowerCase()
            // .cssText, that would destroy case senstitivity in URL's, like in "background"
            return elem.style.cssText || undefined;
        },
        set: function( elem, value ) {
            return ( elem.style.cssText = value + "" );
        }
    };
}

// Safari mis-reports the default selected property of an option
// Accessing the parent's selectedIndex property fixes it
if ( !jQuery.support.optSelected ) {
    jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, {
        get: function( elem ) {
            var parent = elem.parentNode;

            if ( parent ) {
                parent.selectedIndex;

                // Make sure that it also works with optgroups, see #5701
                if ( parent.parentNode ) {
                    parent.parentNode.selectedIndex;
                }
            }
            return null;
        }
    });
}

// IE6/7 call enctype encoding
if ( !jQuery.support.enctype ) {
    jQuery.propFix.enctype = "encoding";
}

// Radios and checkboxes getter/setter
if ( !jQuery.support.checkOn ) {
    jQuery.each([ "radio", "checkbox" ], function() {
        jQuery.valHooks[ this ] = {
            get: function( elem ) {
                // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified
                return elem.getAttribute("value") === null ? "on" : elem.value;
            }
        };
    });
}
jQuery.each([ "radio", "checkbox" ], function() {
    jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], {
        set: function( elem, value ) {
            if ( jQuery.isArray( value ) ) {
                return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
            }
        }
    });
});
var rformElems = /^(?:input|select|textarea)$/i,
    rkeyEvent = /^key/,
    rmouseEvent = /^(?:mouse|contextmenu)|click/,
    rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
    rtypenamespace = /^([^.]*)(?:\.(.+)|)$/;

function returnTrue() {
    return true;
}

function returnFalse() {
    return false;
}

/*
 * Helper functions for managing events -- not part of the public interface.
 * Props to Dean Edwards' addEvent library for many of the ideas.
 */
jQuery.event = {

    global: {},

    add: function( elem, types, handler, data, selector ) {
        var tmp, events, t, handleObjIn,
            special, eventHandle, handleObj,
            handlers, type, namespaces, origType,
            elemData = jQuery._data( elem );

        // Don't attach events to noData or text/comment nodes (but allow plain objects)
        if ( !elemData ) {
            return;
        }

        // Caller can pass in an object of custom data in lieu of the handler
        if ( handler.handler ) {
            handleObjIn = handler;
            handler = handleObjIn.handler;
            selector = handleObjIn.selector;
        }

        // Make sure that the handler has a unique ID, used to find/remove it later
        if ( !handler.guid ) {
            handler.guid = jQuery.guid++;
        }

        // Init the element's event structure and main handler, if this is the first
        if ( !(events = elemData.events) ) {
            events = elemData.events = {};
        }
        if ( !(eventHandle = elemData.handle) ) {
            eventHandle = elemData.handle = function( e ) {
                // Discard the second event of a jQuery.event.trigger() and
                // when an event is called after a page has unloaded
                return typeof jQuery !== core_strundefined && (!e || jQuery.event.triggered !== e.type) ?
                    jQuery.event.dispatch.apply( eventHandle.elem, arguments ) :
                    undefined;
            };
            // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events
            eventHandle.elem = elem;
        }

        // Handle multiple events separated by a space
        // jQuery(...).bind("mouseover mouseout", fn);
        types = ( types || "" ).match( core_rnotwhite ) || [""];
        t = types.length;
        while ( t-- ) {
            tmp = rtypenamespace.exec( types[t] ) || [];
            type = origType = tmp[1];
            namespaces = ( tmp[2] || "" ).split( "." ).sort();

            // If event changes its type, use the special event handlers for the changed type
            special = jQuery.event.special[ type ] || {};

            // If selector defined, determine special event api type, otherwise given type
            type = ( selector ? special.delegateType : special.bindType ) || type;

            // Update special based on newly reset type
            special = jQuery.event.special[ type ] || {};

            // handleObj is passed to all event handlers
            handleObj = jQuery.extend({
                type: type,
                origType: origType,
                data: data,
                handler: handler,
                guid: handler.guid,
                selector: selector,
                needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
                namespace: namespaces.join(".")
            }, handleObjIn );

            // Init the event handler queue if we're the first
            if ( !(handlers = events[ type ]) ) {
                handlers = events[ type ] = [];
                handlers.delegateCount = 0;

                // Only use addEventListener/attachEvent if the special events handler returns false
                if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
                    // Bind the global event handler to the element
                    if ( elem.addEventListener ) {
                        elem.addEventListener( type, eventHandle, false );

                    } else if ( elem.attachEvent ) {
                        elem.attachEvent( "on" + type, eventHandle );
                    }
                }
            }

            if ( special.add ) {
                special.add.call( elem, handleObj );

                if ( !handleObj.handler.guid ) {
                    handleObj.handler.guid = handler.guid;
                }
            }

            // Add to the element's handler list, delegates in front
            if ( selector ) {
                handlers.splice( handlers.delegateCount++, 0, handleObj );
            } else {
                handlers.push( handleObj );
            }

            // Keep track of which events have ever been used, for event optimization
            jQuery.event.global[ type ] = true;
        }

        // Nullify elem to prevent memory leaks in IE
        elem = null;
    },

    // Detach an event or set of events from an element
    remove: function( elem, types, handler, selector, mappedTypes ) {
        var j, handleObj, tmp,
            origCount, t, events,
            special, handlers, type,
            namespaces, origType,
            elemData = jQuery.hasData( elem ) && jQuery._data( elem );

        if ( !elemData || !(events = elemData.events) ) {
            return;
        }

        // Once for each type.namespace in types; type may be omitted
        types = ( types || "" ).match( core_rnotwhite ) || [""];
        t = types.length;
        while ( t-- ) {
            tmp = rtypenamespace.exec( types[t] ) || [];
            type = origType = tmp[1];
            namespaces = ( tmp[2] || "" ).split( "." ).sort();

            // Unbind all events (on this namespace, if provided) for the element
            if ( !type ) {
                for ( type in events ) {
                    jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
                }
                continue;
            }

            special = jQuery.event.special[ type ] || {};
            type = ( selector ? special.delegateType : special.bindType ) || type;
            handlers = events[ type ] || [];
            tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" );

            // Remove matching events
            origCount = j = handlers.length;
            while ( j-- ) {
                handleObj = handlers[ j ];

                if ( ( mappedTypes || origType === handleObj.origType ) &&
                    ( !handler || handler.guid === handleObj.guid ) &&
                    ( !tmp || tmp.test( handleObj.namespace ) ) &&
                    ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
                    handlers.splice( j, 1 );

                    if ( handleObj.selector ) {
                        handlers.delegateCount--;
                    }
                    if ( special.remove ) {
                        special.remove.call( elem, handleObj );
                    }
                }
            }

            // Remove generic event handler if we removed something and no more handlers exist
            // (avoids potential for endless recursion during removal of special event handlers)
            if ( origCount && !handlers.length ) {
                if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
                    jQuery.removeEvent( elem, type, elemData.handle );
                }

                delete events[ type ];
            }
        }

        // Remove the expando if it's no longer used
        if ( jQuery.isEmptyObject( events ) ) {
            delete elemData.handle;

            // removeData also checks for emptiness and clears the expando if empty
            // so use it instead of delete
            jQuery._removeData( elem, "events" );
        }
    },

    trigger: function( event, data, elem, onlyHandlers ) {
        var handle, ontype, cur,
            bubbleType, special, tmp, i,
            eventPath = [ elem || document ],
            type = core_hasOwn.call( event, "type" ) ? event.type : event,
            namespaces = core_hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : [];

        cur = tmp = elem = elem || document;

        // Don't do events on text and comment nodes
        if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
            return;
        }

        // focus/blur morphs to focusin/out; ensure we're not firing them right now
        if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
            return;
        }

        if ( type.indexOf(".") >= 0 ) {
            // Namespaced trigger; create a regexp to match event type in handle()
            namespaces = type.split(".");
            type = namespaces.shift();
            namespaces.sort();
        }
        ontype = type.indexOf(":") < 0 && "on" + type;

        // Caller can pass in a jQuery.Event object, Object, or just an event type string
        event = event[ jQuery.expando ] ?
            event :
            new jQuery.Event( type, typeof event === "object" && event );

        event.isTrigger = true;
        event.namespace = namespaces.join(".");
        event.namespace_re = event.namespace ?
            new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) :
            null;

        // Clean up the event in case it is being reused
        event.result = undefined;
        if ( !event.target ) {
            event.target = elem;
        }

        // Clone any incoming data and prepend the event, creating the handler arg list
        data = data == null ?
            [ event ] :
            jQuery.makeArray( data, [ event ] );

        // Allow special events to draw outside the lines
        special = jQuery.event.special[ type ] || {};
        if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
            return;
        }

        // Determine event propagation path in advance, per W3C events spec (#9951)
        // Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
        if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {

            bubbleType = special.delegateType || type;
            if ( !rfocusMorph.test( bubbleType + type ) ) {
                cur = cur.parentNode;
            }
            for ( ; cur; cur = cur.parentNode ) {
                eventPath.push( cur );
                tmp = cur;
            }

            // Only add window if we got to document (e.g., not plain obj or detached DOM)
            if ( tmp === (elem.ownerDocument || document) ) {
                eventPath.push( tmp.defaultView || tmp.parentWindow || window );
            }
        }

        // Fire handlers on the event path
        i = 0;
        while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {

            event.type = i > 1 ?
                bubbleType :
                special.bindType || type;

            // jQuery handler
            handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" );
            if ( handle ) {
                handle.apply( cur, data );
            }

            // Native handler
            handle = ontype && cur[ ontype ];
            if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) {
                event.preventDefault();
            }
        }
        event.type = type;

        // If nobody prevented the default action, do it now
        if ( !onlyHandlers && !event.isDefaultPrevented() ) {

            if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) &&
                !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) {

                // Call a native DOM method on the target with the same name name as the event.
                // Can't use an .isFunction() check here because IE6/7 fails that test.
                // Don't do default actions on window, that's where global variables be (#6170)
                if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {

                    // Don't re-trigger an onFOO event when we call its FOO() method
                    tmp = elem[ ontype ];

                    if ( tmp ) {
                        elem[ ontype ] = null;
                    }

                    // Prevent re-triggering of the same event, since we already bubbled it above
                    jQuery.event.triggered = type;
                    try {
                        elem[ type ]();
                    } catch ( e ) {
                        // IE<9 dies on focus/blur to hidden element (#1486,#12518)
                        // only reproducible on winXP IE8 native, not IE9 in IE8 mode
                    }
                    jQuery.event.triggered = undefined;

                    if ( tmp ) {
                        elem[ ontype ] = tmp;
                    }
                }
            }
        }

        return event.result;
    },

    dispatch: function( event ) {

        // Make a writable jQuery.Event from the native event object
        event = jQuery.event.fix( event );

        var i, ret, handleObj, matched, j,
            handlerQueue = [],
            args = core_slice.call( arguments ),
            handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [],
            special = jQuery.event.special[ event.type ] || {};

        // Use the fix-ed jQuery.Event rather than the (read-only) native event
        args[0] = event;
        event.delegateTarget = this;

        // Call the preDispatch hook for the mapped type, and let it bail if desired
        if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
            return;
        }

        // Determine handlers
        handlerQueue = jQuery.event.handlers.call( this, event, handlers );

        // Run delegates first; they may want to stop propagation beneath us
        i = 0;
        while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {
            event.currentTarget = matched.elem;

            j = 0;
            while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {

                // Triggered event must either 1) have no namespace, or
                // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).
                if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {

                    event.handleObj = handleObj;
                    event.data = handleObj.data;

                    ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )
                            .apply( matched.elem, args );

                    if ( ret !== undefined ) {
                        if ( (event.result = ret) === false ) {
                            event.preventDefault();
                            event.stopPropagation();
                        }
                    }
                }
            }
        }

        // Call the postDispatch hook for the mapped type
        if ( special.postDispatch ) {
            special.postDispatch.call( this, event );
        }

        return event.result;
    },

    handlers: function( event, handlers ) {
        var sel, handleObj, matches, i,
            handlerQueue = [],
            delegateCount = handlers.delegateCount,
            cur = event.target;

        // Find delegate handlers
        // Black-hole SVG <use> instance trees (#13180)
        // Avoid non-left-click bubbling in Firefox (#3861)
        if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) {

            for ( ; cur != this; cur = cur.parentNode || this ) {

                // Don't check non-elements (#13208)
                // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
                if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) {
                    matches = [];
                    for ( i = 0; i < delegateCount; i++ ) {
                        handleObj = handlers[ i ];

                        // Don't conflict with Object.prototype properties (#13203)
                        sel = handleObj.selector + " ";

                        if ( matches[ sel ] === undefined ) {
                            matches[ sel ] = handleObj.needsContext ?
                                jQuery( sel, this ).index( cur ) >= 0 :
                                jQuery.find( sel, this, null, [ cur ] ).length;
                        }
                        if ( matches[ sel ] ) {
                            matches.push( handleObj );
                        }
                    }
                    if ( matches.length ) {
                        handlerQueue.push({ elem: cur, handlers: matches });
                    }
                }
            }
        }

        // Add the remaining (directly-bound) handlers
        if ( delegateCount < handlers.length ) {
            handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });
        }

        return handlerQueue;
    },

    fix: function( event ) {
        if ( event[ jQuery.expando ] ) {
            return event;
        }

        // Create a writable copy of the event object and normalize some properties
        var i, prop, copy,
            type = event.type,
            originalEvent = event,
            fixHook = this.fixHooks[ type ];

        if ( !fixHook ) {
            this.fixHooks[ type ] = fixHook =
                rmouseEvent.test( type ) ? this.mouseHooks :
                rkeyEvent.test( type ) ? this.keyHooks :
                {};
        }
        copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;

        event = new jQuery.Event( originalEvent );

        i = copy.length;
        while ( i-- ) {
            prop = copy[ i ];
            event[ prop ] = originalEvent[ prop ];
        }

        // Support: IE<9
        // Fix target property (#1925)
        if ( !event.target ) {
            event.target = originalEvent.srcElement || document;
        }

        // Support: Chrome 23+, Safari?
        // Target should not be a text node (#504, #13143)
        if ( event.target.nodeType === 3 ) {
            event.target = event.target.parentNode;
        }

        // Support: IE<9
        // For mouse/key events, metaKey==false if it's undefined (#3368, #11328)
        event.metaKey = !!event.metaKey;

        return fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
    },

    // Includes some event props shared by KeyEvent and MouseEvent
    props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),

    fixHooks: {},

    keyHooks: {
        props: "char charCode key keyCode".split(" "),
        filter: function( event, original ) {

            // Add which for key events
            if ( event.which == null ) {
                event.which = original.charCode != null ? original.charCode : original.keyCode;
            }

            return event;
        }
    },

    mouseHooks: {
        props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
        filter: function( event, original ) {
            var body, eventDoc, doc,
                button = original.button,
                fromElement = original.fromElement;

            // Calculate pageX/Y if missing and clientX/Y available
            if ( event.pageX == null && original.clientX != null ) {
                eventDoc = event.target.ownerDocument || document;
                doc = eventDoc.documentElement;
                body = eventDoc.body;

                event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );
                event.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );
            }

            // Add relatedTarget, if necessary
            if ( !event.relatedTarget && fromElement ) {
                event.relatedTarget = fromElement === event.target ? original.toElement : fromElement;
            }

            // Add which for click: 1 === left; 2 === middle; 3 === right
            // Note: button is not normalized, so don't use it
            if ( !event.which && button !== undefined ) {
                event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
            }

            return event;
        }
    },

    special: {
        load: {
            // Prevent triggered image.load events from bubbling to window.load
            noBubble: true
        },
        click: {
            // For checkbox, fire native event so checked state will be right
            trigger: function() {
                if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) {
                    this.click();
                    return false;
                }
            }
        },
        focus: {
            // Fire native event if possible so blur/focus sequence is correct
            trigger: function() {
                if ( this !== document.activeElement && this.focus ) {
                    try {
                        this.focus();
                        return false;
                    } catch ( e ) {
                        // Support: IE<9
                        // If we error on focus to hidden element (#1486, #12518),
                        // let .trigger() run the handlers
                    }
                }
            },
            delegateType: "focusin"
        },
        blur: {
            trigger: function() {
                if ( this === document.activeElement && this.blur ) {
                    this.blur();
                    return false;
                }
            },
            delegateType: "focusout"
        },

        beforeunload: {
            postDispatch: function( event ) {

                // Even when returnValue equals to undefined Firefox will still show alert
                if ( event.result !== undefined ) {
                    event.originalEvent.returnValue = event.result;
                }
            }
        }
    },

    simulate: function( type, elem, event, bubble ) {
        // Piggyback on a donor event to simulate a different one.
        // Fake originalEvent to avoid donor's stopPropagation, but if the
        // simulated event prevents default then we do the same on the donor.
        var e = jQuery.extend(
            new jQuery.Event(),
            event,
            { type: type,
                isSimulated: true,
                originalEvent: {}
            }
        );
        if ( bubble ) {
            jQuery.event.trigger( e, null, elem );
        } else {
            jQuery.event.dispatch.call( elem, e );
        }
        if ( e.isDefaultPrevented() ) {
            event.preventDefault();
        }
    }
};

jQuery.removeEvent = document.removeEventListener ?
    function( elem, type, handle ) {
        if ( elem.removeEventListener ) {
            elem.removeEventListener( type, handle, false );
        }
    } :
    function( elem, type, handle ) {
        var name = "on" + type;

        if ( elem.detachEvent ) {

            // #8545, #7054, preventing memory leaks for custom events in IE6-8
            // detachEvent needed property on element, by name of that event, to properly expose it to GC
            if ( typeof elem[ name ] === core_strundefined ) {
                elem[ name ] = null;
            }

            elem.detachEvent( name, handle );
        }
    };

jQuery.Event = function( src, props ) {
    // Allow instantiation without the 'new' keyword
    if ( !(this instanceof jQuery.Event) ) {
        return new jQuery.Event( src, props );
    }

    // Event object
    if ( src && src.type ) {
        this.originalEvent = src;
        this.type = src.type;

        // Events bubbling up the document may have been marked as prevented
        // by a handler lower down the tree; reflect the correct value.
        this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false ||
            src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse;

    // Event type
    } else {
        this.type = src;
    }

    // Put explicitly provided properties onto the event object
    if ( props ) {
        jQuery.extend( this, props );
    }

    // Create a timestamp if incoming event doesn't have one
    this.timeStamp = src && src.timeStamp || jQuery.now();

    // Mark it as fixed
    this[ jQuery.expando ] = true;
};

// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
jQuery.Event.prototype = {
    isDefaultPrevented: returnFalse,
    isPropagationStopped: returnFalse,
    isImmediatePropagationStopped: returnFalse,

    preventDefault: function() {
        var e = this.originalEvent;

        this.isDefaultPrevented = returnTrue;
        if ( !e ) {
            return;
        }

        // If preventDefault exists, run it on the original event
        if ( e.preventDefault ) {
            e.preventDefault();

        // Support: IE
        // Otherwise set the returnValue property of the original event to false
        } else {
            e.returnValue = false;
        }
    },
    stopPropagation: function() {
        var e = this.originalEvent;

        this.isPropagationStopped = returnTrue;
        if ( !e ) {
            return;
        }
        // If stopPropagation exists, run it on the original event
        if ( e.stopPropagation ) {
            e.stopPropagation();
        }

        // Support: IE
        // Set the cancelBubble property of the original event to true
        e.cancelBubble = true;
    },
    stopImmediatePropagation: function() {
        this.isImmediatePropagationStopped = returnTrue;
        this.stopPropagation();
    }
};

// Create mouseenter/leave events using mouseover/out and event-time checks
jQuery.each({
    mouseenter: "mouseover",
    mouseleave: "mouseout"
}, function( orig, fix ) {
    jQuery.event.special[ orig ] = {
        delegateType: fix,
        bindType: fix,

        handle: function( event ) {
            var ret,
                target = this,
                related = event.relatedTarget,
                handleObj = event.handleObj;

            // For mousenter/leave call the handler if related is outside the target.
            // NB: No relatedTarget if the mouse left/entered the browser window
            if ( !related || (related !== target && !jQuery.contains( target, related )) ) {
                event.type = handleObj.origType;
                ret = handleObj.handler.apply( this, arguments );
                event.type = fix;
            }
            return ret;
        }
    };
});

// IE submit delegation
if ( !jQuery.support.submitBubbles ) {

    jQuery.event.special.submit = {
        setup: function() {
            // Only need this for delegated form submit events
            if ( jQuery.nodeName( this, "form" ) ) {
                return false;
            }

            // Lazy-add a submit handler when a descendant form may potentially be submitted
            jQuery.event.add( this, "click._submit keypress._submit", function( e ) {
                // Node name check avoids a VML-related crash in IE (#9807)
                var elem = e.target,
                    form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined;
                if ( form && !jQuery._data( form, "submitBubbles" ) ) {
                    jQuery.event.add( form, "submit._submit", function( event ) {
                        event._submit_bubble = true;
                    });
                    jQuery._data( form, "submitBubbles", true );
                }
            });
            // return undefined since we don't need an event listener
        },

        postDispatch: function( event ) {
            // If form was submitted by the user, bubble the event up the tree
            if ( event._submit_bubble ) {
                delete event._submit_bubble;
                if ( this.parentNode && !event.isTrigger ) {
                    jQuery.event.simulate( "submit", this.parentNode, event, true );
                }
            }
        },

        teardown: function() {
            // Only need this for delegated form submit events
            if ( jQuery.nodeName( this, "form" ) ) {
                return false;
            }

            // Remove delegated handlers; cleanData eventually reaps submit handlers attached above
            jQuery.event.remove( this, "._submit" );
        }
    };
}

// IE change delegation and checkbox/radio fix
if ( !jQuery.support.changeBubbles ) {

    jQuery.event.special.change = {

        setup: function() {

            if ( rformElems.test( this.nodeName ) ) {
                // IE doesn't fire change on a check/radio until blur; trigger it on click
                // after a propertychange. Eat the blur-change in special.change.handle.
                // This still fires onchange a second time for check/radio after blur.
                if ( this.type === "checkbox" || this.type === "radio" ) {
                    jQuery.event.add( this, "propertychange._change", function( event ) {
                        if ( event.originalEvent.propertyName === "checked" ) {
                            this._just_changed = true;
                        }
                    });
                    jQuery.event.add( this, "click._change", function( event ) {
                        if ( this._just_changed && !event.isTrigger ) {
                            this._just_changed = false;
                        }
                        // Allow triggered, simulated change events (#11500)
                        jQuery.event.simulate( "change", this, event, true );
                    });
                }
                return false;
            }
            // Delegated event; lazy-add a change handler on descendant inputs
            jQuery.event.add( this, "beforeactivate._change", function( e ) {
                var elem = e.target;

                if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) {
                    jQuery.event.add( elem, "change._change", function( event ) {
                        if ( this.parentNode && !event.isSimulated && !event.isTrigger ) {
                            jQuery.event.simulate( "change", this.parentNode, event, true );
                        }
                    });
                    jQuery._data( elem, "changeBubbles", true );
                }
            });
        },

        handle: function( event ) {
            var elem = event.target;

            // Swallow native change events from checkbox/radio, we already triggered them above
            if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) {
                return event.handleObj.handler.apply( this, arguments );
            }
        },

        teardown: function() {
            jQuery.event.remove( this, "._change" );

            return !rformElems.test( this.nodeName );
        }
    };
}

// Create "bubbling" focus and blur events
if ( !jQuery.support.focusinBubbles ) {
    jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {

        // Attach a single capturing handler while someone wants focusin/focusout
        var attaches = 0,
            handler = function( event ) {
                jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );
            };

        jQuery.event.special[ fix ] = {
            setup: function() {
                if ( attaches++ === 0 ) {
                    document.addEventListener( orig, handler, true );
                }
            },
            teardown: function() {
                if ( --attaches === 0 ) {
                    document.removeEventListener( orig, handler, true );
                }
            }
        };
    });
}

jQuery.fn.extend({

    on: function( types, selector, data, fn, /*INTERNAL*/ one ) {
        var type, origFn;

        // Types can be a map of types/handlers
        if ( typeof types === "object" ) {
            // ( types-Object, selector, data )
            if ( typeof selector !== "string" ) {
                // ( types-Object, data )
                data = data || selector;
                selector = undefined;
            }
            for ( type in types ) {
                this.on( type, selector, data, types[ type ], one );
            }
            return this;
        }

        if ( data == null && fn == null ) {
            // ( types, fn )
            fn = selector;
            data = selector = undefined;
        } else if ( fn == null ) {
            if ( typeof selector === "string" ) {
                // ( types, selector, fn )
                fn = data;
                data = undefined;
            } else {
                // ( types, data, fn )
                fn = data;
                data = selector;
                selector = undefined;
            }
        }
        if ( fn === false ) {
            fn = returnFalse;
        } else if ( !fn ) {
            return this;
        }

        if ( one === 1 ) {
            origFn = fn;
            fn = function( event ) {
                // Can use an empty set, since event contains the info
                jQuery().off( event );
                return origFn.apply( this, arguments );
            };
            // Use same guid so caller can remove using origFn
            fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
        }
        return this.each( function() {
            jQuery.event.add( this, types, fn, data, selector );
        });
    },
    one: function( types, selector, data, fn ) {
        return this.on( types, selector, data, fn, 1 );
    },
    off: function( types, selector, fn ) {
        var handleObj, type;
        if ( types && types.preventDefault && types.handleObj ) {
            // ( event )  dispatched jQuery.Event
            handleObj = types.handleObj;
            jQuery( types.delegateTarget ).off(
                handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType,
                handleObj.selector,
                handleObj.handler
            );
            return this;
        }
        if ( typeof types === "object" ) {
            // ( types-object [, selector] )
            for ( type in types ) {
                this.off( type, selector, types[ type ] );
            }
            return this;
        }
        if ( selector === false || typeof selector === "function" ) {
            // ( types [, fn] )
            fn = selector;
            selector = undefined;
        }
        if ( fn === false ) {
            fn = returnFalse;
        }
        return this.each(function() {
            jQuery.event.remove( this, types, fn, selector );
        });
    },

    bind: function( types, data, fn ) {
        return this.on( types, null, data, fn );
    },
    unbind: function( types, fn ) {
        return this.off( types, null, fn );
    },

    delegate: function( selector, types, data, fn ) {
        return this.on( types, selector, data, fn );
    },
    undelegate: function( selector, types, fn ) {
        // ( namespace ) or ( selector, types [, fn] )
        return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn );
    },

    trigger: function( type, data ) {
        return this.each(function() {
            jQuery.event.trigger( type, data, this );
        });
    },
    triggerHandler: function( type, data ) {
        var elem = this[0];
        if ( elem ) {
            return jQuery.event.trigger( type, data, elem, true );
        }
    }
});
/*!
 * Sizzle CSS Selector Engine
 * Copyright 2012 jQuery Foundation and other contributors
 * Released under the MIT license
 * http://sizzlejs.com/
 */
(function( window, undefined ) {

var i,
    cachedruns,
    Expr,
    getText,
    isXML,
    compile,
    hasDuplicate,
    outermostContext,

    // Local document vars
    setDocument,
    document,
    docElem,
    documentIsXML,
    rbuggyQSA,
    rbuggyMatches,
    matches,
    contains,
    sortOrder,

    // Instance-specific data
    expando = "sizzle" + -(new Date()),
    preferredDoc = window.document,
    support = {},
    dirruns = 0,
    done = 0,
    classCache = createCache(),
    tokenCache = createCache(),
    compilerCache = createCache(),

    // General-purpose constants
    strundefined = typeof undefined,
    MAX_NEGATIVE = 1 << 31,

    // Array methods
    arr = [],
    pop = arr.pop,
    push = arr.push,
    slice = arr.slice,
    // Use a stripped-down indexOf if we can't use a native one
    indexOf = arr.indexOf || function( elem ) {
        var i = 0,
            len = this.length;
        for ( ; i < len; i++ ) {
            if ( this[i] === elem ) {
                return i;
            }
        }
        return -1;
    },


    // Regular expressions

    // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace
    whitespace = "[\\x20\\t\\r\\n\\f]",
    // http://www.w3.org/TR/css3-syntax/#characters
    characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",

    // Loosely modeled on CSS identifier characters
    // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors
    // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
    identifier = characterEncoding.replace( "w", "w#" ),

    // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors
    operators = "([*^$|!~]?=)",
    attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace +
        "*(?:" + operators + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]",

    // Prefer arguments quoted,
    //   then not containing pseudos/brackets,
    //   then attribute selectors/non-parenthetical expressions,
    //   then anything else
    // These preferences are here to reduce the number of selectors
    //   needing tokenize in the PSEUDO preFilter
    pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)",

    // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
    rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),

    rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
    rcombinators = new RegExp( "^" + whitespace + "*([\\x20\\t\\r\\n\\f>+~])" + whitespace + "*" ),
    rpseudo = new RegExp( pseudos ),
    ridentifier = new RegExp( "^" + identifier + "$" ),

    matchExpr = {
        "ID": new RegExp( "^#(" + characterEncoding + ")" ),
        "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ),
        "NAME": new RegExp( "^\\[name=['\"]?(" + characterEncoding + ")['\"]?\\]" ),
        "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ),
        "ATTR": new RegExp( "^" + attributes ),
        "PSEUDO": new RegExp( "^" + pseudos ),
        "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
            "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
            "*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
        // For use in libraries implementing .is()
        // We use this for POS matching in `select`
        "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
            whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
    },

    rsibling = /[\x20\t\r\n\f]*[+~]/,

    rnative = /^[^{]+\{\s*\[native code/,

    // Easily-parseable/retrievable ID or TAG or CLASS selectors
    rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,

    rinputs = /^(?:input|select|textarea|button)$/i,
    rheader = /^h\d$/i,

    rescape = /'|\\/g,
    rattributeQuotes = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,

    // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
    runescape = /\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,
    funescape = function( _, escaped ) {
        var high = "0x" + escaped - 0x10000;
        // NaN means non-codepoint
        return high !== high ?
            escaped :
            // BMP codepoint
            high < 0 ?
                String.fromCharCode( high + 0x10000 ) :
                // Supplemental Plane codepoint (surrogate pair)
                String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
    };

// Use a stripped-down slice if we can't use a native one
try {
    slice.call( preferredDoc.documentElement.childNodes, 0 )[0].nodeType;
} catch ( e ) {
    slice = function( i ) {
        var elem,
            results = [];
        while ( (elem = this[i++]) ) {
            results.push( elem );
        }
        return results;
    };
}

/**
 * For feature detection
 * @param {Function} fn The function to test for native support
 */
function isNative( fn ) {
    return rnative.test( fn + "" );
}

/**
 * Create key-value caches of limited size
 * @returns {Function(string, Object)} Returns the Object data after storing it on itself with
 *    property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
 *    deleting the oldest entry
 */
function createCache() {
    var cache,
        keys = [];

    return (cache = function( key, value ) {
        // Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
        if ( keys.push( key += " " ) > Expr.cacheLength ) {
            // Only keep the most recent entries
            delete cache[ keys.shift() ];
        }
        return (cache[ key ] = value);
    });
}

/**
 * Mark a function for special use by Sizzle
 * @param {Function} fn The function to mark
 */
function markFunction( fn ) {
    fn[ expando ] = true;
    return fn;
}

/**
 * Support testing using an element
 * @param {Function} fn Passed the created div and expects a boolean result
 */
function assert( fn ) {
    var div = document.createElement("div");

    try {
        return fn( div );
    } catch (e) {
        return false;
    } finally {
        // release memory in IE
        div = null;
    }
}

function Sizzle( selector, context, results, seed ) {
    var match, elem, m, nodeType,
        // QSA vars
        i, groups, old, nid, newContext, newSelector;

    if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
        setDocument( context );
    }

    context = context || document;
    results = results || [];

    if ( !selector || typeof selector !== "string" ) {
        return results;
    }

    if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) {
        return [];
    }

    if ( !documentIsXML && !seed ) {

        // Shortcuts
        if ( (match = rquickExpr.exec( selector )) ) {
            // Speed-up: Sizzle("#ID")
            if ( (m = match[1]) ) {
                if ( nodeType === 9 ) {
                    elem = context.getElementById( m );
                    // Check parentNode to catch when Blackberry 4.6 returns
                    // nodes that are no longer in the document #6963
                    if ( elem && elem.parentNode ) {
                        // Handle the case where IE, Opera, and Webkit return items
                        // by name instead of ID
                        if ( elem.id === m ) {
                            results.push( elem );
                            return results;
                        }
                    } else {
                        return results;
                    }
                } else {
                    // Context is not a document
                    if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
                        contains( context, elem ) && elem.id === m ) {
                        results.push( elem );
                        return results;
                    }
                }

            // Speed-up: Sizzle("TAG")
            } else if ( match[2] ) {
                push.apply( results, slice.call(context.getElementsByTagName( selector ), 0) );
                return results;

            // Speed-up: Sizzle(".CLASS")
            } else if ( (m = match[3]) && support.getByClassName && context.getElementsByClassName ) {
                push.apply( results, slice.call(context.getElementsByClassName( m ), 0) );
                return results;
            }
        }

        // QSA path
        if ( support.qsa && !rbuggyQSA.test(selector) ) {
            old = true;
            nid = expando;
            newContext = context;
            newSelector = nodeType === 9 && selector;

            // qSA works strangely on Element-rooted queries
            // We can work around this by specifying an extra ID on the root
            // and working up from there (Thanks to Andrew Dupont for the technique)
            // IE 8 doesn't work on object elements
            if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) {
                groups = tokenize( selector );

                if ( (old = context.getAttribute("id")) ) {
                    nid = old.replace( rescape, "\\$&" );
                } else {
                    context.setAttribute( "id", nid );
                }
                nid = "[id='" + nid + "'] ";

                i = groups.length;
                while ( i-- ) {
                    groups[i] = nid + toSelector( groups[i] );
                }
                newContext = rsibling.test( selector ) && context.parentNode || context;
                newSelector = groups.join(",");
            }

            if ( newSelector ) {
                try {
                    push.apply( results, slice.call( newContext.querySelectorAll(
                        newSelector
                    ), 0 ) );
                    return results;
                } catch(qsaError) {
                } finally {
                    if ( !old ) {
                        context.removeAttribute("id");
                    }
                }
            }
        }
    }

    // All others
    return select( selector.replace( rtrim, "$1" ), context, results, seed );
}

/**
 * Detect xml
 * @param {Element|Object} elem An element or a document
 */
isXML = Sizzle.isXML = function( elem ) {
    // documentElement is verified for cases where it doesn't yet exist
    // (such as loading iframes in IE - #4833)
    var documentElement = elem && (elem.ownerDocument || elem).documentElement;
    return documentElement ? documentElement.nodeName !== "HTML" : false;
};

/**
 * Sets document-related variables once based on the current document
 * @param {Element|Object} [doc] An element or document object to use to set the document
 * @returns {Object} Returns the current document
 */
setDocument = Sizzle.setDocument = function( node ) {
    var doc = node ? node.ownerDocument || node : preferredDoc;

    // If no document and documentElement is available, return
    if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
        return document;
    }

    // Set our document
    document = doc;
    docElem = doc.documentElement;

    // Support tests
    documentIsXML = isXML( doc );

    // Check if getElementsByTagName("*") returns only elements
    support.tagNameNoComments = assert(function( div ) {
        div.appendChild( doc.createComment("") );
        return !div.getElementsByTagName("*").length;
    });

    // Check if attributes should be retrieved by attribute nodes
    support.attributes = assert(function( div ) {
        div.innerHTML = "<select></select>";
        var type = typeof div.lastChild.getAttribute("multiple");
        // IE8 returns a string for some attributes even when not present
        return type !== "boolean" && type !== "string";
    });

    // Check if getElementsByClassName can be trusted
    support.getByClassName = assert(function( div ) {
        // Opera can't find a second classname (in 9.6)
        div.innerHTML = "<div class='hidden e'></div><div class='hidden'></div>";
        if ( !div.getElementsByClassName || !div.getElementsByClassName("e").length ) {
            return false;
        }

        // Safari 3.2 caches class attributes and doesn't catch changes
        div.lastChild.className = "e";
        return div.getElementsByClassName("e").length === 2;
    });

    // Check if getElementById returns elements by name
    // Check if getElementsByName privileges form controls or returns elements by ID
    support.getByName = assert(function( div ) {
        // Inject content
        div.id = expando + 0;
        div.innerHTML = "<a name='" + expando + "'></a><div name='" + expando + "'></div>";
        docElem.insertBefore( div, docElem.firstChild );

        // Test
        var pass = doc.getElementsByName &&
            // buggy browsers will return fewer than the correct 2
            doc.getElementsByName( expando ).length === 2 +
            // buggy browsers will return more than the correct 0
            doc.getElementsByName( expando + 0 ).length;
        support.getIdNotName = !doc.getElementById( expando );

        // Cleanup
        docElem.removeChild( div );

        return pass;
    });

    // IE6/7 return modified attributes
    Expr.attrHandle = assert(function( div ) {
        div.innerHTML = "<a href='#'></a>";
        return div.firstChild && typeof div.firstChild.getAttribute !== strundefined &&
            div.firstChild.getAttribute("href") === "#";
    }) ?
        {} :
        {
            "href": function( elem ) {
                return elem.getAttribute( "href", 2 );
            },
            "type": function( elem ) {
                return elem.getAttribute("type");
            }
        };

    // ID find and filter
    if ( support.getIdNotName ) {
        Expr.find["ID"] = function( id, context ) {
            if ( typeof context.getElementById !== strundefined && !documentIsXML ) {
                var m = context.getElementById( id );
                // Check parentNode to catch when Blackberry 4.6 returns
                // nodes that are no longer in the document #6963
                return m && m.parentNode ? [m] : [];
            }
        };
        Expr.filter["ID"] = function( id ) {
            var attrId = id.replace( runescape, funescape );
            return function( elem ) {
                return elem.getAttribute("id") === attrId;
            };
        };
    } else {
        Expr.find["ID"] = function( id, context ) {
            if ( typeof context.getElementById !== strundefined && !documentIsXML ) {
                var m = context.getElementById( id );

                return m ?
                    m.id === id || typeof m.getAttributeNode !== strundefined && m.getAttributeNode("id").value === id ?
                        [m] :
                        undefined :
                    [];
            }
        };
        Expr.filter["ID"] =  function( id ) {
            var attrId = id.replace( runescape, funescape );
            return function( elem ) {
                var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id");
                return node && node.value === attrId;
            };
        };
    }

    // Tag
    Expr.find["TAG"] = support.tagNameNoComments ?
        function( tag, context ) {
            if ( typeof context.getElementsByTagName !== strundefined ) {
                return context.getElementsByTagName( tag );
            }
        } :
        function( tag, context ) {
            var elem,
                tmp = [],
                i = 0,
                results = context.getElementsByTagName( tag );

            // Filter out possible comments
            if ( tag === "*" ) {
                while ( (elem = results[i++]) ) {
                    if ( elem.nodeType === 1 ) {
                        tmp.push( elem );
                    }
                }

                return tmp;
            }
            return results;
        };

    // Name
    Expr.find["NAME"] = support.getByName && function( tag, context ) {
        if ( typeof context.getElementsByName !== strundefined ) {
            return context.getElementsByName( name );
        }
    };

    // Class
    Expr.find["CLASS"] = support.getByClassName && function( className, context ) {
        if ( typeof context.getElementsByClassName !== strundefined && !documentIsXML ) {
            return context.getElementsByClassName( className );
        }
    };

    // QSA and matchesSelector support

    // matchesSelector(:active) reports false when true (IE9/Opera 11.5)
    rbuggyMatches = [];

    // qSa(:focus) reports false when true (Chrome 21),
    // no need to also add to buggyMatches since matches checks buggyQSA
    // A support test would require too much code (would include document ready)
    rbuggyQSA = [ ":focus" ];

    if ( (support.qsa = isNative(doc.querySelectorAll)) ) {
        // Build QSA regex
        // Regex strategy adopted from Diego Perini
        assert(function( div ) {
            // Select is set to empty string on purpose
            // This is to test IE's treatment of not explictly
            // setting a boolean content attribute,
            // since its presence should be enough
            // http://bugs.jquery.com/ticket/12359
            div.innerHTML = "<select><option selected=''></option></select>";

            // IE8 - Some boolean attributes are not treated correctly
            if ( !div.querySelectorAll("[selected]").length ) {
                rbuggyQSA.push( "\\[" + whitespace + "*(?:checked|disabled|ismap|multiple|readonly|selected|value)" );
            }

            // Webkit/Opera - :checked should return selected option elements
            // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
            // IE8 throws error here and will not see later tests
            if ( !div.querySelectorAll(":checked").length ) {
                rbuggyQSA.push(":checked");
            }
        });

        assert(function( div ) {

            // Opera 10-12/IE8 - ^= $= *= and empty values
            // Should not select anything
            div.innerHTML = "<input type='hidden' i=''/>";
            if ( div.querySelectorAll("[i^='']").length ) {
                rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:\"\"|'')" );
            }

            // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
            // IE8 throws error here and will not see later tests
            if ( !div.querySelectorAll(":enabled").length ) {
                rbuggyQSA.push( ":enabled", ":disabled" );
            }

            // Opera 10-11 does not throw on post-comma invalid pseudos
            div.querySelectorAll("*,:x");
            rbuggyQSA.push(",.*:");
        });
    }

    if ( (support.matchesSelector = isNative( (matches = docElem.matchesSelector ||
        docElem.mozMatchesSelector ||
        docElem.webkitMatchesSelector ||
        docElem.oMatchesSelector ||
        docElem.msMatchesSelector) )) ) {

        assert(function( div ) {
            // Check to see if it's possible to do matchesSelector
            // on a disconnected node (IE 9)
            support.disconnectedMatch = matches.call( div, "div" );

            // This should fail with an exception
            // Gecko does not error, returns false instead
            matches.call( div, "[s!='']:x" );
            rbuggyMatches.push( "!=", pseudos );
        });
    }

    rbuggyQSA = new RegExp( rbuggyQSA.join("|") );
    rbuggyMatches = new RegExp( rbuggyMatches.join("|") );

    // Element contains another
    // Purposefully does not implement inclusive descendent
    // As in, an element does not contain itself
    contains = isNative(docElem.contains) || docElem.compareDocumentPosition ?
        function( a, b ) {
            var adown = a.nodeType === 9 ? a.documentElement : a,
                bup = b && b.parentNode;
            return a === bup || !!( bup && bup.nodeType === 1 && (
                adown.contains ?
                    adown.contains( bup ) :
                    a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
            ));
        } :
        function( a, b ) {
            if ( b ) {
                while ( (b = b.parentNode) ) {
                    if ( b === a ) {
                        return true;
                    }
                }
            }
            return false;
        };

    // Document order sorting
    sortOrder = docElem.compareDocumentPosition ?
    function( a, b ) {
        var compare;

        if ( a === b ) {
            hasDuplicate = true;
            return 0;
        }

        if ( (compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b )) ) {
            if ( compare & 1 || a.parentNode && a.parentNode.nodeType === 11 ) {
                if ( a === doc || contains( preferredDoc, a ) ) {
                    return -1;
                }
                if ( b === doc || contains( preferredDoc, b ) ) {
                    return 1;
                }
                return 0;
            }
            return compare & 4 ? -1 : 1;
        }

        return a.compareDocumentPosition ? -1 : 1;
    } :
    function( a, b ) {
        var cur,
            i = 0,
            aup = a.parentNode,
            bup = b.parentNode,
            ap = [ a ],
            bp = [ b ];

        // Exit early if the nodes are identical
        if ( a === b ) {
            hasDuplicate = true;
            return 0;

        // Parentless nodes are either documents or disconnected
        } else if ( !aup || !bup ) {
            return a === doc ? -1 :
                b === doc ? 1 :
                aup ? -1 :
                bup ? 1 :
                0;

        // If the nodes are siblings, we can do a quick check
        } else if ( aup === bup ) {
            return siblingCheck( a, b );
        }

        // Otherwise we need full lists of their ancestors for comparison
        cur = a;
        while ( (cur = cur.parentNode) ) {
            ap.unshift( cur );
        }
        cur = b;
        while ( (cur = cur.parentNode) ) {
            bp.unshift( cur );
        }

        // Walk down the tree looking for a discrepancy
        while ( ap[i] === bp[i] ) {
            i++;
        }

        return i ?
            // Do a sibling check if the nodes have a common ancestor
            siblingCheck( ap[i], bp[i] ) :

            // Otherwise nodes in our document sort first
            ap[i] === preferredDoc ? -1 :
            bp[i] === preferredDoc ? 1 :
            0;
    };

    // Always assume the presence of duplicates if sort doesn't
    // pass them to our comparison function (as in Google Chrome).
    hasDuplicate = false;
    [0, 0].sort( sortOrder );
    support.detectDuplicates = hasDuplicate;

    return document;
};

Sizzle.matches = function( expr, elements ) {
    return Sizzle( expr, null, null, elements );
};

Sizzle.matchesSelector = function( elem, expr ) {
    // Set document vars if needed
    if ( ( elem.ownerDocument || elem ) !== document ) {
        setDocument( elem );
    }

    // Make sure that attribute selectors are quoted
    expr = expr.replace( rattributeQuotes, "='$1']" );

    // rbuggyQSA always contains :focus, so no need for an existence check
    if ( support.matchesSelector && !documentIsXML && (!rbuggyMatches || !rbuggyMatches.test(expr)) && !rbuggyQSA.test(expr) ) {
        try {
            var ret = matches.call( elem, expr );

            // IE 9's matchesSelector returns false on disconnected nodes
            if ( ret || support.disconnectedMatch ||
                    // As well, disconnected nodes are said to be in a document
                    // fragment in IE 9
                    elem.document && elem.document.nodeType !== 11 ) {
                return ret;
            }
        } catch(e) {}
    }

    return Sizzle( expr, document, null, [elem] ).length > 0;
};

Sizzle.contains = function( context, elem ) {
    // Set document vars if needed
    if ( ( context.ownerDocument || context ) !== document ) {
        setDocument( context );
    }
    return contains( context, elem );
};

Sizzle.attr = function( elem, name ) {
    var val;

    // Set document vars if needed
    if ( ( elem.ownerDocument || elem ) !== document ) {
        setDocument( elem );
    }

    if ( !documentIsXML ) {
        name = name.toLowerCase();
    }
    if ( (val = Expr.attrHandle[ name ]) ) {
        return val( elem );
    }
    if ( documentIsXML || support.attributes ) {
        return elem.getAttribute( name );
    }
    return ( (val = elem.getAttributeNode( name )) || elem.getAttribute( name ) ) && elem[ name ] === true ?
        name :
        val && val.specified ? val.value : null;
};

Sizzle.error = function( msg ) {
    throw new Error( "Syntax error, unrecognized expression: " + msg );
};

// Document sorting and removing duplicates
Sizzle.uniqueSort = function( results ) {
    var elem,
        duplicates = [],
        i = 1,
        j = 0;

    // Unless we *know* we can detect duplicates, assume their presence
    hasDuplicate = !support.detectDuplicates;
    results.sort( sortOrder );

    if ( hasDuplicate ) {
        for ( ; (elem = results[i]); i++ ) {
            if ( elem === results[ i - 1 ] ) {
                j = duplicates.push( i );
            }
        }
        while ( j-- ) {
            results.splice( duplicates[ j ], 1 );
        }
    }

    return results;
};

function siblingCheck( a, b ) {
    var cur = b && a,
        diff = cur && ( ~b.sourceIndex || MAX_NEGATIVE ) - ( ~a.sourceIndex || MAX_NEGATIVE );

    // Use IE sourceIndex if available on both nodes
    if ( diff ) {
        return diff;
    }

    // Check if b follows a
    if ( cur ) {
        while ( (cur = cur.nextSibling) ) {
            if ( cur === b ) {
                return -1;
            }
        }
    }

    return a ? 1 : -1;
}

// Returns a function to use in pseudos for input types
function createInputPseudo( type ) {
    return function( elem ) {
        var name = elem.nodeName.toLowerCase();
        return name === "input" && elem.type === type;
    };
}

// Returns a function to use in pseudos for buttons
function createButtonPseudo( type ) {
    return function( elem ) {
        var name = elem.nodeName.toLowerCase();
        return (name === "input" || name === "button") && elem.type === type;
    };
}

// Returns a function to use in pseudos for positionals
function createPositionalPseudo( fn ) {
    return markFunction(function( argument ) {
        argument = +argument;
        return markFunction(function( seed, matches ) {
            var j,
                matchIndexes = fn( [], seed.length, argument ),
                i = matchIndexes.length;

            // Match elements found at the specified indexes
            while ( i-- ) {
                if ( seed[ (j = matchIndexes[i]) ] ) {
                    seed[j] = !(matches[j] = seed[j]);
                }
            }
        });
    });
}

/**
 * Utility function for retrieving the text value of an array of DOM nodes
 * @param {Array|Element} elem
 */
getText = Sizzle.getText = function( elem ) {
    var node,
        ret = "",
        i = 0,
        nodeType = elem.nodeType;

    if ( !nodeType ) {
        // If no nodeType, this is expected to be an array
        for ( ; (node = elem[i]); i++ ) {
            // Do not traverse comment nodes
            ret += getText( node );
        }
    } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
        // Use textContent for elements
        // innerText usage removed for consistency of new lines (see #11153)
        if ( typeof elem.textContent === "string" ) {
            return elem.textContent;
        } else {
            // Traverse its children
            for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
                ret += getText( elem );
            }
        }
    } else if ( nodeType === 3 || nodeType === 4 ) {
        return elem.nodeValue;
    }
    // Do not include comment or processing instruction nodes

    return ret;
};

Expr = Sizzle.selectors = {

    // Can be adjusted by the user
    cacheLength: 50,

    createPseudo: markFunction,

    match: matchExpr,

    find: {},

    relative: {
        ">": { dir: "parentNode", first: true },
        " ": { dir: "parentNode" },
        "+": { dir: "previousSibling", first: true },
        "~": { dir: "previousSibling" }
    },

    preFilter: {
        "ATTR": function( match ) {
            match[1] = match[1].replace( runescape, funescape );

            // Move the given value to match[3] whether quoted or unquoted
            match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape );

            if ( match[2] === "~=" ) {
                match[3] = " " + match[3] + " ";
            }

            return match.slice( 0, 4 );
        },

        "CHILD": function( match ) {
            /* matches from matchExpr["CHILD"]
                1 type (only|nth|...)
                2 what (child|of-type)
                3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
                4 xn-component of xn+y argument ([+-]?\d*n|)
                5 sign of xn-component
                6 x of xn-component
                7 sign of y-component
                8 y of y-component
            */
            match[1] = match[1].toLowerCase();

            if ( match[1].slice( 0, 3 ) === "nth" ) {
                // nth-* requires argument
                if ( !match[3] ) {
                    Sizzle.error( match[0] );
                }

                // numeric x and y parameters for Expr.filter.CHILD
                // remember that false/true cast respectively to 0/1
                match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
                match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );

            // other types prohibit arguments
            } else if ( match[3] ) {
                Sizzle.error( match[0] );
            }

            return match;
        },

        "PSEUDO": function( match ) {
            var excess,
                unquoted = !match[5] && match[2];

            if ( matchExpr["CHILD"].test( match[0] ) ) {
                return null;
            }

            // Accept quoted arguments as-is
            if ( match[4] ) {
                match[2] = match[4];

            // Strip excess characters from unquoted arguments
            } else if ( unquoted && rpseudo.test( unquoted ) &&
                // Get excess from tokenize (recursively)
                (excess = tokenize( unquoted, true )) &&
                // advance to the next closing parenthesis
                (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {

                // excess is a negative index
                match[0] = match[0].slice( 0, excess );
                match[2] = unquoted.slice( 0, excess );
            }

            // Return only captures needed by the pseudo filter method (type and argument)
            return match.slice( 0, 3 );
        }
    },

    filter: {

        "TAG": function( nodeName ) {
            if ( nodeName === "*" ) {
                return function() { return true; };
            }

            nodeName = nodeName.replace( runescape, funescape ).toLowerCase();
            return function( elem ) {
                return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
            };
        },

        "CLASS": function( className ) {
            var pattern = classCache[ className + " " ];

            return pattern ||
                (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
                classCache( className, function( elem ) {
                    return pattern.test( elem.className || (typeof elem.getAttribute !== strundefined && elem.getAttribute("class")) || "" );
                });
        },

        "ATTR": function( name, operator, check ) {
            return function( elem ) {
                var result = Sizzle.attr( elem, name );

                if ( result == null ) {
                    return operator === "!=";
                }
                if ( !operator ) {
                    return true;
                }

                result += "";

                return operator === "=" ? result === check :
                    operator === "!=" ? result !== check :
                    operator === "^=" ? check && result.indexOf( check ) === 0 :
                    operator === "*=" ? check && result.indexOf( check ) > -1 :
                    operator === "$=" ? check && result.slice( -check.length ) === check :
                    operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 :
                    operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
                    false;
            };
        },

        "CHILD": function( type, what, argument, first, last ) {
            var simple = type.slice( 0, 3 ) !== "nth",
                forward = type.slice( -4 ) !== "last",
                ofType = what === "of-type";

            return first === 1 && last === 0 ?

                // Shortcut for :nth-*(n)
                function( elem ) {
                    return !!elem.parentNode;
                } :

                function( elem, context, xml ) {
                    var cache, outerCache, node, diff, nodeIndex, start,
                        dir = simple !== forward ? "nextSibling" : "previousSibling",
                        parent = elem.parentNode,
                        name = ofType && elem.nodeName.toLowerCase(),
                        useCache = !xml && !ofType;

                    if ( parent ) {

                        // :(first|last|only)-(child|of-type)
                        if ( simple ) {
                            while ( dir ) {
                                node = elem;
                                while ( (node = node[ dir ]) ) {
                                    if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {
                                        return false;
                                    }
                                }
                                // Reverse direction for :only-* (if we haven't yet done so)
                                start = dir = type === "only" && !start && "nextSibling";
                            }
                            return true;
                        }

                        start = [ forward ? parent.firstChild : parent.lastChild ];

                        // non-xml :nth-child(...) stores cache data on `parent`
                        if ( forward && useCache ) {
                            // Seek `elem` from a previously-cached index
                            outerCache = parent[ expando ] || (parent[ expando ] = {});
                            cache = outerCache[ type ] || [];
                            nodeIndex = cache[0] === dirruns && cache[1];
                            diff = cache[0] === dirruns && cache[2];
                            node = nodeIndex && parent.childNodes[ nodeIndex ];

                            while ( (node = ++nodeIndex && node && node[ dir ] ||

                                // Fallback to seeking `elem` from the start
                                (diff = nodeIndex = 0) || start.pop()) ) {

                                // When found, cache indexes on `parent` and break
                                if ( node.nodeType === 1 && ++diff && node === elem ) {
                                    outerCache[ type ] = [ dirruns, nodeIndex, diff ];
                                    break;
                                }
                            }

                        // Use previously-cached element index if available
                        } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {
                            diff = cache[1];

                        // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)
                        } else {
                            // Use the same loop as above to seek `elem` from the start
                            while ( (node = ++nodeIndex && node && node[ dir ] ||
                                (diff = nodeIndex = 0) || start.pop()) ) {

                                if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {
                                    // Cache the index of each encountered element
                                    if ( useCache ) {
                                        (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];
                                    }

                                    if ( node === elem ) {
                                        break;
                                    }
                                }
                            }
                        }

                        // Incorporate the offset, then check against cycle size
                        diff -= last;
                        return diff === first || ( diff % first === 0 && diff / first >= 0 );
                    }
                };
        },

        "PSEUDO": function( pseudo, argument ) {
            // pseudo-class names are case-insensitive
            // http://www.w3.org/TR/selectors/#pseudo-classes
            // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
            // Remember that setFilters inherits from pseudos
            var args,
                fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
                    Sizzle.error( "unsupported pseudo: " + pseudo );

            // The user may use createPseudo to indicate that
            // arguments are needed to create the filter function
            // just as Sizzle does
            if ( fn[ expando ] ) {
                return fn( argument );
            }

            // But maintain support for old signatures
            if ( fn.length > 1 ) {
                args = [ pseudo, pseudo, "", argument ];
                return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
                    markFunction(function( seed, matches ) {
                        var idx,
                            matched = fn( seed, argument ),
                            i = matched.length;
                        while ( i-- ) {
                            idx = indexOf.call( seed, matched[i] );
                            seed[ idx ] = !( matches[ idx ] = matched[i] );
                        }
                    }) :
                    function( elem ) {
                        return fn( elem, 0, args );
                    };
            }

            return fn;
        }
    },

    pseudos: {
        // Potentially complex pseudos
        "not": markFunction(function( selector ) {
            // Trim the selector passed to compile
            // to avoid treating leading and trailing
            // spaces as combinators
            var input = [],
                results = [],
                matcher = compile( selector.replace( rtrim, "$1" ) );

            return matcher[ expando ] ?
                markFunction(function( seed, matches, context, xml ) {
                    var elem,
                        unmatched = matcher( seed, null, xml, [] ),
                        i = seed.length;

                    // Match elements unmatched by `matcher`
                    while ( i-- ) {
                        if ( (elem = unmatched[i]) ) {
                            seed[i] = !(matches[i] = elem);
                        }
                    }
                }) :
                function( elem, context, xml ) {
                    input[0] = elem;
                    matcher( input, null, xml, results );
                    return !results.pop();
                };
        }),

        "has": markFunction(function( selector ) {
            return function( elem ) {
                return Sizzle( selector, elem ).length > 0;
            };
        }),

        "contains": markFunction(function( text ) {
            return function( elem ) {
                return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
            };
        }),

        // "Whether an element is represented by a :lang() selector
        // is based solely on the element's language value
        // being equal to the identifier C,
        // or beginning with the identifier C immediately followed by "-".
        // The matching of C against the element's language value is performed case-insensitively.
        // The identifier C does not have to be a valid language name."
        // http://www.w3.org/TR/selectors/#lang-pseudo
        "lang": markFunction( function( lang ) {
            // lang value must be a valid identifider
            if ( !ridentifier.test(lang || "") ) {
                Sizzle.error( "unsupported lang: " + lang );
            }
            lang = lang.replace( runescape, funescape ).toLowerCase();
            return function( elem ) {
                var elemLang;
                do {
                    if ( (elemLang = documentIsXML ?
                        elem.getAttribute("xml:lang") || elem.getAttribute("lang") :
                        elem.lang) ) {

                        elemLang = elemLang.toLowerCase();
                        return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
                    }
                } while ( (elem = elem.parentNode) && elem.nodeType === 1 );
                return false;
            };
        }),

        // Miscellaneous
        "target": function( elem ) {
            var hash = window.location && window.location.hash;
            return hash && hash.slice( 1 ) === elem.id;
        },

        "root": function( elem ) {
            return elem === docElem;
        },

        "focus": function( elem ) {
            return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
        },

        // Boolean properties
        "enabled": function( elem ) {
            return elem.disabled === false;
        },

        "disabled": function( elem ) {
            return elem.disabled === true;
        },

        "checked": function( elem ) {
            // In CSS3, :checked should return both checked and selected elements
            // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
            var nodeName = elem.nodeName.toLowerCase();
            return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
        },

        "selected": function( elem ) {
            // Accessing this property makes selected-by-default
            // options in Safari work properly
            if ( elem.parentNode ) {
                elem.parentNode.selectedIndex;
            }

            return elem.selected === true;
        },

        // Contents
        "empty": function( elem ) {
            // http://www.w3.org/TR/selectors/#empty-pseudo
            // :empty is only affected by element nodes and content nodes(including text(3), cdata(4)),
            //   not comment, processing instructions, or others
            // Thanks to Diego Perini for the nodeName shortcut
            //   Greater than "@" means alpha characters (specifically not starting with "#" or "?")
            for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
                if ( elem.nodeName > "@" || elem.nodeType === 3 || elem.nodeType === 4 ) {
                    return false;
                }
            }
            return true;
        },

        "parent": function( elem ) {
            return !Expr.pseudos["empty"]( elem );
        },

        // Element/input types
        "header": function( elem ) {
            return rheader.test( elem.nodeName );
        },

        "input": function( elem ) {
            return rinputs.test( elem.nodeName );
        },

        "button": function( elem ) {
            var name = elem.nodeName.toLowerCase();
            return name === "input" && elem.type === "button" || name === "button";
        },

        "text": function( elem ) {
            var attr;
            // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc)
            // use getAttribute instead to test this case
            return elem.nodeName.toLowerCase() === "input" &&
                elem.type === "text" &&
                ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === elem.type );
        },

        // Position-in-collection
        "first": createPositionalPseudo(function() {
            return [ 0 ];
        }),

        "last": createPositionalPseudo(function( matchIndexes, length ) {
            return [ length - 1 ];
        }),

        "eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
            return [ argument < 0 ? argument + length : argument ];
        }),

        "even": createPositionalPseudo(function( matchIndexes, length ) {
            var i = 0;
            for ( ; i < length; i += 2 ) {
                matchIndexes.push( i );
            }
            return matchIndexes;
        }),

        "odd": createPositionalPseudo(function( matchIndexes, length ) {
            var i = 1;
            for ( ; i < length; i += 2 ) {
                matchIndexes.push( i );
            }
            return matchIndexes;
        }),

        "lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
            var i = argument < 0 ? argument + length : argument;
            for ( ; --i >= 0; ) {
                matchIndexes.push( i );
            }
            return matchIndexes;
        }),

        "gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
            var i = argument < 0 ? argument + length : argument;
            for ( ; ++i < length; ) {
                matchIndexes.push( i );
            }
            return matchIndexes;
        })
    }
};

// Add button/input type pseudos
for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
    Expr.pseudos[ i ] = createInputPseudo( i );
}
for ( i in { submit: true, reset: true } ) {
    Expr.pseudos[ i ] = createButtonPseudo( i );
}

function tokenize( selector, parseOnly ) {
    var matched, match, tokens, type,
        soFar, groups, preFilters,
        cached = tokenCache[ selector + " " ];

    if ( cached ) {
        return parseOnly ? 0 : cached.slice( 0 );
    }

    soFar = selector;
    groups = [];
    preFilters = Expr.preFilter;

    while ( soFar ) {

        // Comma and first run
        if ( !matched || (match = rcomma.exec( soFar )) ) {
            if ( match ) {
                // Don't consume trailing commas as valid
                soFar = soFar.slice( match[0].length ) || soFar;
            }
            groups.push( tokens = [] );
        }

        matched = false;

        // Combinators
        if ( (match = rcombinators.exec( soFar )) ) {
            matched = match.shift();
            tokens.push( {
                value: matched,
                // Cast descendant combinators to space
                type: match[0].replace( rtrim, " " )
            } );
            soFar = soFar.slice( matched.length );
        }

        // Filters
        for ( type in Expr.filter ) {
            if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
                (match = preFilters[ type ]( match ))) ) {
                matched = match.shift();
                tokens.push( {
                    value: matched,
                    type: type,
                    matches: match
                } );
                soFar = soFar.slice( matched.length );
            }
        }

        if ( !matched ) {
            break;
        }
    }

    // Return the length of the invalid excess
    // if we're just parsing
    // Otherwise, throw an error or return tokens
    return parseOnly ?
        soFar.length :
        soFar ?
            Sizzle.error( selector ) :
            // Cache the tokens
            tokenCache( selector, groups ).slice( 0 );
}

function toSelector( tokens ) {
    var i = 0,
        len = tokens.length,
        selector = "";
    for ( ; i < len; i++ ) {
        selector += tokens[i].value;
    }
    return selector;
}

function addCombinator( matcher, combinator, base ) {
    var dir = combinator.dir,
        checkNonElements = base && dir === "parentNode",
        doneName = done++;

    return combinator.first ?
        // Check against closest ancestor/preceding element
        function( elem, context, xml ) {
            while ( (elem = elem[ dir ]) ) {
                if ( elem.nodeType === 1 || checkNonElements ) {
                    return matcher( elem, context, xml );
                }
            }
        } :

        // Check against all ancestor/preceding elements
        function( elem, context, xml ) {
            var data, cache, outerCache,
                dirkey = dirruns + " " + doneName;

            // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching
            if ( xml ) {
                while ( (elem = elem[ dir ]) ) {
                    if ( elem.nodeType === 1 || checkNonElements ) {
                        if ( matcher( elem, context, xml ) ) {
                            return true;
                        }
                    }
                }
            } else {
                while ( (elem = elem[ dir ]) ) {
                    if ( elem.nodeType === 1 || checkNonElements ) {
                        outerCache = elem[ expando ] || (elem[ expando ] = {});
                        if ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) {
                            if ( (data = cache[1]) === true || data === cachedruns ) {
                                return data === true;
                            }
                        } else {
                            cache = outerCache[ dir ] = [ dirkey ];
                            cache[1] = matcher( elem, context, xml ) || cachedruns;
                            if ( cache[1] === true ) {
                                return true;
                            }
                        }
                    }
                }
            }
        };
}

function elementMatcher( matchers ) {
    return matchers.length > 1 ?
        function( elem, context, xml ) {
            var i = matchers.length;
            while ( i-- ) {
                if ( !matchers[i]( elem, context, xml ) ) {
                    return false;
                }
            }
            return true;
        } :
        matchers[0];
}

function condense( unmatched, map, filter, context, xml ) {
    var elem,
        newUnmatched = [],
        i = 0,
        len = unmatched.length,
        mapped = map != null;

    for ( ; i < len; i++ ) {
        if ( (elem = unmatched[i]) ) {
            if ( !filter || filter( elem, context, xml ) ) {
                newUnmatched.push( elem );
                if ( mapped ) {
                    map.push( i );
                }
            }
        }
    }

    return newUnmatched;
}

function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
    if ( postFilter && !postFilter[ expando ] ) {
        postFilter = setMatcher( postFilter );
    }
    if ( postFinder && !postFinder[ expando ] ) {
        postFinder = setMatcher( postFinder, postSelector );
    }
    return markFunction(function( seed, results, context, xml ) {
        var temp, i, elem,
            preMap = [],
            postMap = [],
            preexisting = results.length,

            // Get initial elements from seed or context
            elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),

            // Prefilter to get matcher input, preserving a map for seed-results synchronization
            matcherIn = preFilter && ( seed || !selector ) ?
                condense( elems, preMap, preFilter, context, xml ) :
                elems,

            matcherOut = matcher ?
                // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
                postFinder || ( seed ? preFilter : preexisting || postFilter ) ?

                    // ...intermediate processing is necessary
                    [] :

                    // ...otherwise use results directly
                    results :
                matcherIn;

        // Find primary matches
        if ( matcher ) {
            matcher( matcherIn, matcherOut, context, xml );
        }

        // Apply postFilter
        if ( postFilter ) {
            temp = condense( matcherOut, postMap );
            postFilter( temp, [], context, xml );

            // Un-match failing elements by moving them back to matcherIn
            i = temp.length;
            while ( i-- ) {
                if ( (elem = temp[i]) ) {
                    matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
                }
            }
        }

        if ( seed ) {
            if ( postFinder || preFilter ) {
                if ( postFinder ) {
                    // Get the final matcherOut by condensing this intermediate into postFinder contexts
                    temp = [];
                    i = matcherOut.length;
                    while ( i-- ) {
                        if ( (elem = matcherOut[i]) ) {
                            // Restore matcherIn since elem is not yet a final match
                            temp.push( (matcherIn[i] = elem) );
                        }
                    }
                    postFinder( null, (matcherOut = []), temp, xml );
                }

                // Move matched elements from seed to results to keep them synchronized
                i = matcherOut.length;
                while ( i-- ) {
                    if ( (elem = matcherOut[i]) &&
                        (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) {

                        seed[temp] = !(results[temp] = elem);
                    }
                }
            }

        // Add elements to results, through postFinder if defined
        } else {
            matcherOut = condense(
                matcherOut === results ?
                    matcherOut.splice( preexisting, matcherOut.length ) :
                    matcherOut
            );
            if ( postFinder ) {
                postFinder( null, results, matcherOut, xml );
            } else {
                push.apply( results, matcherOut );
            }
        }
    });
}

function matcherFromTokens( tokens ) {
    var checkContext, matcher, j,
        len = tokens.length,
        leadingRelative = Expr.relative[ tokens[0].type ],
        implicitRelative = leadingRelative || Expr.relative[" "],
        i = leadingRelative ? 1 : 0,

        // The foundational matcher ensures that elements are reachable from top-level context(s)
        matchContext = addCombinator( function( elem ) {
            return elem === checkContext;
        }, implicitRelative, true ),
        matchAnyContext = addCombinator( function( elem ) {
            return indexOf.call( checkContext, elem ) > -1;
        }, implicitRelative, true ),
        matchers = [ function( elem, context, xml ) {
            return ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
                (checkContext = context).nodeType ?
                    matchContext( elem, context, xml ) :
                    matchAnyContext( elem, context, xml ) );
        } ];

    for ( ; i < len; i++ ) {
        if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
            matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
        } else {
            matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );

            // Return special upon seeing a positional matcher
            if ( matcher[ expando ] ) {
                // Find the next relative operator (if any) for proper handling
                j = ++i;
                for ( ; j < len; j++ ) {
                    if ( Expr.relative[ tokens[j].type ] ) {
                        break;
                    }
                }
                return setMatcher(
                    i > 1 && elementMatcher( matchers ),
                    i > 1 && toSelector( tokens.slice( 0, i - 1 ) ).replace( rtrim, "$1" ),
                    matcher,
                    i < j && matcherFromTokens( tokens.slice( i, j ) ),
                    j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
                    j < len && toSelector( tokens )
                );
            }
            matchers.push( matcher );
        }
    }

    return elementMatcher( matchers );
}

function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
    // A counter to specify which element is currently being matched
    var matcherCachedRuns = 0,
        bySet = setMatchers.length > 0,
        byElement = elementMatchers.length > 0,
        superMatcher = function( seed, context, xml, results, expandContext ) {
            var elem, j, matcher,
                setMatched = [],
                matchedCount = 0,
                i = "0",
                unmatched = seed && [],
                outermost = expandContext != null,
                contextBackup = outermostContext,
                // We must always have either seed elements or context
                elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ),
                // Use integer dirruns iff this is the outermost matcher
                dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1);

            if ( outermost ) {
                outermostContext = context !== document && context;
                cachedruns = matcherCachedRuns;
            }

            // Add elements passing elementMatchers directly to results
            // Keep `i` a string if there are no elements so `matchedCount` will be "00" below
            for ( ; (elem = elems[i]) != null; i++ ) {
                if ( byElement && elem ) {
                    j = 0;
                    while ( (matcher = elementMatchers[j++]) ) {
                        if ( matcher( elem, context, xml ) ) {
                            results.push( elem );
                            break;
                        }
                    }
                    if ( outermost ) {
                        dirruns = dirrunsUnique;
                        cachedruns = ++matcherCachedRuns;
                    }
                }

                // Track unmatched elements for set filters
                if ( bySet ) {
                    // They will have gone through all possible matchers
                    if ( (elem = !matcher && elem) ) {
                        matchedCount--;
                    }

                    // Lengthen the array for every element, matched or not
                    if ( seed ) {
                        unmatched.push( elem );
                    }
                }
            }

            // Apply set filters to unmatched elements
            matchedCount += i;
            if ( bySet && i !== matchedCount ) {
                j = 0;
                while ( (matcher = setMatchers[j++]) ) {
                    matcher( unmatched, setMatched, context, xml );
                }

                if ( seed ) {
                    // Reintegrate element matches to eliminate the need for sorting
                    if ( matchedCount > 0 ) {
                        while ( i-- ) {
                            if ( !(unmatched[i] || setMatched[i]) ) {
                                setMatched[i] = pop.call( results );
                            }
                        }
                    }

                    // Discard index placeholder values to get only actual matches
                    setMatched = condense( setMatched );
                }

                // Add matches to results
                push.apply( results, setMatched );

                // Seedless set matches succeeding multiple successful matchers stipulate sorting
                if ( outermost && !seed && setMatched.length > 0 &&
                    ( matchedCount + setMatchers.length ) > 1 ) {

                    Sizzle.uniqueSort( results );
                }
            }

            // Override manipulation of globals by nested matchers
            if ( outermost ) {
                dirruns = dirrunsUnique;
                outermostContext = contextBackup;
            }

            return unmatched;
        };

    return bySet ?
        markFunction( superMatcher ) :
        superMatcher;
}

compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) {
    var i,
        setMatchers = [],
        elementMatchers = [],
        cached = compilerCache[ selector + " " ];

    if ( !cached ) {
        // Generate a function of recursive functions that can be used to check each element
        if ( !group ) {
            group = tokenize( selector );
        }
        i = group.length;
        while ( i-- ) {
            cached = matcherFromTokens( group[i] );
            if ( cached[ expando ] ) {
                setMatchers.push( cached );
            } else {
                elementMatchers.push( cached );
            }
        }

        // Cache the compiled function
        cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
    }
    return cached;
};

function multipleContexts( selector, contexts, results ) {
    var i = 0,
        len = contexts.length;
    for ( ; i < len; i++ ) {
        Sizzle( selector, contexts[i], results );
    }
    return results;
}

function select( selector, context, results, seed ) {
    var i, tokens, token, type, find,
        match = tokenize( selector );

    if ( !seed ) {
        // Try to minimize operations if there is only one group
        if ( match.length === 1 ) {

            // Take a shortcut and set the context if the root selector is an ID
            tokens = match[0] = match[0].slice( 0 );
            if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
                    context.nodeType === 9 && !documentIsXML &&
                    Expr.relative[ tokens[1].type ] ) {

                context = Expr.find["ID"]( token.matches[0].replace( runescape, funescape ), context )[0];
                if ( !context ) {
                    return results;
                }

                selector = selector.slice( tokens.shift().value.length );
            }

            // Fetch a seed set for right-to-left matching
            i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
            while ( i-- ) {
                token = tokens[i];

                // Abort if we hit a combinator
                if ( Expr.relative[ (type = token.type) ] ) {
                    break;
                }
                if ( (find = Expr.find[ type ]) ) {
                    // Search, expanding context for leading sibling combinators
                    if ( (seed = find(
                        token.matches[0].replace( runescape, funescape ),
                        rsibling.test( tokens[0].type ) && context.parentNode || context
                    )) ) {

                        // If seed is empty or no tokens remain, we can return early
                        tokens.splice( i, 1 );
                        selector = seed.length && toSelector( tokens );
                        if ( !selector ) {
                            push.apply( results, slice.call( seed, 0 ) );
                            return results;
                        }

                        break;
                    }
                }
            }
        }
    }

    // Compile and execute a filtering function
    // Provide `match` to avoid retokenization if we modified the selector above
    compile( selector, match )(
        seed,
        context,
        documentIsXML,
        results,
        rsibling.test( selector )
    );
    return results;
}

// Deprecated
Expr.pseudos["nth"] = Expr.pseudos["eq"];

// Easy API for creating new setFilters
function setFilters() {}
Expr.filters = setFilters.prototype = Expr.pseudos;
Expr.setFilters = new setFilters();

// Initialize with the default document
setDocument();

// Override sizzle attribute retrieval
Sizzle.attr = jQuery.attr;
jQuery.find = Sizzle;
jQuery.expr = Sizzle.selectors;
jQuery.expr[":"] = jQuery.expr.pseudos;
jQuery.unique = Sizzle.uniqueSort;
jQuery.text = Sizzle.getText;
jQuery.isXMLDoc = Sizzle.isXML;
jQuery.contains = Sizzle.contains;


})( window );
var runtil = /Until$/,
    rparentsprev = /^(?:parents|prev(?:Until|All))/,
    isSimple = /^.[^:#\[\.,]*$/,
    rneedsContext = jQuery.expr.match.needsContext,
    // methods guaranteed to produce a unique set when starting from a unique set
    guaranteedUnique = {
        children: true,
        contents: true,
        next: true,
        prev: true
    };

jQuery.fn.extend({
    find: function( selector ) {
        var i, ret, self,
            len = this.length;

        if ( typeof selector !== "string" ) {
            self = this;
            return this.pushStack( jQuery( selector ).filter(function() {
                for ( i = 0; i < len; i++ ) {
                    if ( jQuery.contains( self[ i ], this ) ) {
                        return true;
                    }
                }
            }) );
        }

        ret = [];
        for ( i = 0; i < len; i++ ) {
            jQuery.find( selector, this[ i ], ret );
        }

        // Needed because $( selector, context ) becomes $( context ).find( selector )
        ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );
        ret.selector = ( this.selector ? this.selector + " " : "" ) + selector;
        return ret;
    },

    has: function( target ) {
        var i,
            targets = jQuery( target, this ),
            len = targets.length;

        return this.filter(function() {
            for ( i = 0; i < len; i++ ) {
                if ( jQuery.contains( this, targets[i] ) ) {
                    return true;
                }
            }
        });
    },

    not: function( selector ) {
        return this.pushStack( winnow(this, selector, false) );
    },

    filter: function( selector ) {
        return this.pushStack( winnow(this, selector, true) );
    },

    is: function( selector ) {
        return !!selector && (
            typeof selector === "string" ?
                // If this is a positional/relative selector, check membership in the returned set
                // so $("p:first").is("p:last") won't return true for a doc with two "p".
                rneedsContext.test( selector ) ?
                    jQuery( selector, this.context ).index( this[0] ) >= 0 :
                    jQuery.filter( selector, this ).length > 0 :
                this.filter( selector ).length > 0 );
    },

    closest: function( selectors, context ) {
        var cur,
            i = 0,
            l = this.length,
            ret = [],
            pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
                jQuery( selectors, context || this.context ) :
                0;

        for ( ; i < l; i++ ) {
            cur = this[i];

            while ( cur && cur.ownerDocument && cur !== context && cur.nodeType !== 11 ) {
                if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) {
                    ret.push( cur );
                    break;
                }
                cur = cur.parentNode;
            }
        }

        return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret );
    },

    // Determine the position of an element within
    // the matched set of elements
    index: function( elem ) {

        // No argument, return index in parent
        if ( !elem ) {
            return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;
        }

        // index in selector
        if ( typeof elem === "string" ) {
            return jQuery.inArray( this[0], jQuery( elem ) );
        }

        // Locate the position of the desired element
        return jQuery.inArray(
            // If it receives a jQuery object, the first element is used
            elem.jquery ? elem[0] : elem, this );
    },

    add: function( selector, context ) {
        var set = typeof selector === "string" ?
                jQuery( selector, context ) :
                jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ),
            all = jQuery.merge( this.get(), set );

        return this.pushStack( jQuery.unique(all) );
    },

    addBack: function( selector ) {
        return this.add( selector == null ?
            this.prevObject : this.prevObject.filter(selector)
        );
    }
});

jQuery.fn.andSelf = jQuery.fn.addBack;

function sibling( cur, dir ) {
    do {
        cur = cur[ dir ];
    } while ( cur && cur.nodeType !== 1 );

    return cur;
}

jQuery.each({
    parent: function( elem ) {
        var parent = elem.parentNode;
        return parent && parent.nodeType !== 11 ? parent : null;
    },
    parents: function( elem ) {
        return jQuery.dir( elem, "parentNode" );
    },
    parentsUntil: function( elem, i, until ) {
        return jQuery.dir( elem, "parentNode", until );
    },
    next: function( elem ) {
        return sibling( elem, "nextSibling" );
    },
    prev: function( elem ) {
        return sibling( elem, "previousSibling" );
    },
    nextAll: function( elem ) {
        return jQuery.dir( elem, "nextSibling" );
    },
    prevAll: function( elem ) {
        return jQuery.dir( elem, "previousSibling" );
    },
    nextUntil: function( elem, i, until ) {
        return jQuery.dir( elem, "nextSibling", until );
    },
    prevUntil: function( elem, i, until ) {
        return jQuery.dir( elem, "previousSibling", until );
    },
    siblings: function( elem ) {
        return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );
    },
    children: function( elem ) {
        return jQuery.sibling( elem.firstChild );
    },
    contents: function( elem ) {
        return jQuery.nodeName( elem, "iframe" ) ?
            elem.contentDocument || elem.contentWindow.document :
            jQuery.merge( [], elem.childNodes );
    }
}, function( name, fn ) {
    jQuery.fn[ name ] = function( until, selector ) {
        var ret = jQuery.map( this, fn, until );

        if ( !runtil.test( name ) ) {
            selector = until;
        }

        if ( selector && typeof selector === "string" ) {
            ret = jQuery.filter( selector, ret );
        }

        ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret;

        if ( this.length > 1 && rparentsprev.test( name ) ) {
            ret = ret.reverse();
        }

        return this.pushStack( ret );
    };
});

jQuery.extend({
    filter: function( expr, elems, not ) {
        if ( not ) {
            expr = ":not(" + expr + ")";
        }

        return elems.length === 1 ?
            jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] :
            jQuery.find.matches(expr, elems);
    },

    dir: function( elem, dir, until ) {
        var matched = [],
            cur = elem[ dir ];

        while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {
            if ( cur.nodeType === 1 ) {
                matched.push( cur );
            }
            cur = cur[dir];
        }
        return matched;
    },

    sibling: function( n, elem ) {
        var r = [];

        for ( ; n; n = n.nextSibling ) {
            if ( n.nodeType === 1 && n !== elem ) {
                r.push( n );
            }
        }

        return r;
    }
});

// Implement the identical functionality for filter and not
function winnow( elements, qualifier, keep ) {

    // Can't pass null or undefined to indexOf in Firefox 4
    // Set to 0 to skip string check
    qualifier = qualifier || 0;

    if ( jQuery.isFunction( qualifier ) ) {
        return jQuery.grep(elements, function( elem, i ) {
            var retVal = !!qualifier.call( elem, i, elem );
            return retVal === keep;
        });

    } else if ( qualifier.nodeType ) {
        return jQuery.grep(elements, function( elem ) {
            return ( elem === qualifier ) === keep;
        });

    } else if ( typeof qualifier === "string" ) {
        var filtered = jQuery.grep(elements, function( elem ) {
            return elem.nodeType === 1;
        });

        if ( isSimple.test( qualifier ) ) {
            return jQuery.filter(qualifier, filtered, !keep);
        } else {
            qualifier = jQuery.filter( qualifier, filtered );
        }
    }

    return jQuery.grep(elements, function( elem ) {
        return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep;
    });
}
function createSafeFragment( document ) {
    var list = nodeNames.split( "|" ),
        safeFrag = document.createDocumentFragment();

    if ( safeFrag.createElement ) {
        while ( list.length ) {
            safeFrag.createElement(
                list.pop()
            );
        }
    }
    return safeFrag;
}

var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" +
        "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",
    rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g,
    rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"),
    rleadingWhitespace = /^\s+/,
    rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
    rtagName = /<([\w:]+)/,
    rtbody = /<tbody/i,
    rhtml = /<|&#?\w+;/,
    rnoInnerhtml = /<(?:script|style|link)/i,
    manipulation_rcheckableType = /^(?:checkbox|radio)$/i,
    // checked="checked" or checked
    rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
    rscriptType = /^$|\/(?:java|ecma)script/i,
    rscriptTypeMasked = /^true\/(.*)/,
    rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,

    // We have to close these tags to support XHTML (#13200)
    wrapMap = {
        option: [ 1, "<select multiple='multiple'>", "</select>" ],
        legend: [ 1, "<fieldset>", "</fieldset>" ],
        area: [ 1, "<map>", "</map>" ],
        param: [ 1, "<object>", "</object>" ],
        thead: [ 1, "<table>", "</table>" ],
        tr: [ 2, "<table><tbody>", "</tbody></table>" ],
        col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ],
        td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],

        // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,
        // unless wrapped in a div with non-breaking characters in front of it.
        _default: jQuery.support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>"  ]
    },
    safeFragment = createSafeFragment( document ),
    fragmentDiv = safeFragment.appendChild( document.createElement("div") );

wrapMap.optgroup = wrapMap.option;
wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
wrapMap.th = wrapMap.td;

jQuery.fn.extend({
    text: function( value ) {
        return jQuery.access( this, function( value ) {
            return value === undefined ?
                jQuery.text( this ) :
                this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );
        }, null, value, arguments.length );
    },

    wrapAll: function( html ) {
        if ( jQuery.isFunction( html ) ) {
            return this.each(function(i) {
                jQuery(this).wrapAll( html.call(this, i) );
            });
        }

        if ( this[0] ) {
            // The elements to wrap the target around
            var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);

            if ( this[0].parentNode ) {
                wrap.insertBefore( this[0] );
            }

            wrap.map(function() {
                var elem = this;

                while ( elem.firstChild && elem.firstChild.nodeType === 1 ) {
                    elem = elem.firstChild;
                }

                return elem;
            }).append( this );
        }

        return this;
    },

    wrapInner: function( html ) {
        if ( jQuery.isFunction( html ) ) {
            return this.each(function(i) {
                jQuery(this).wrapInner( html.call(this, i) );
            });
        }

        return this.each(function() {
            var self = jQuery( this ),
                contents = self.contents();

            if ( contents.length ) {
                contents.wrapAll( html );

            } else {
                self.append( html );
            }
        });
    },

    wrap: function( html ) {
        var isFunction = jQuery.isFunction( html );

        return this.each(function(i) {
            jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );
        });
    },

    unwrap: function() {
        return this.parent().each(function() {
            if ( !jQuery.nodeName( this, "body" ) ) {
                jQuery( this ).replaceWith( this.childNodes );
            }
        }).end();
    },

    append: function() {
        return this.domManip(arguments, true, function( elem ) {
            if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
                this.appendChild( elem );
            }
        });
    },

    prepend: function() {
        return this.domManip(arguments, true, function( elem ) {
            if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
                this.insertBefore( elem, this.firstChild );
            }
        });
    },

    before: function() {
        return this.domManip( arguments, false, function( elem ) {
            if ( this.parentNode ) {
                this.parentNode.insertBefore( elem, this );
            }
        });
    },

    after: function() {
        return this.domManip( arguments, false, function( elem ) {
            if ( this.parentNode ) {
                this.parentNode.insertBefore( elem, this.nextSibling );
            }
        });
    },

    // keepData is for internal use only--do not document
    remove: function( selector, keepData ) {
        var elem,
            i = 0;

        for ( ; (elem = this[i]) != null; i++ ) {
            if ( !selector || jQuery.filter( selector, [ elem ] ).length > 0 ) {
                if ( !keepData && elem.nodeType === 1 ) {
                    jQuery.cleanData( getAll( elem ) );
                }

                if ( elem.parentNode ) {
                    if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {
                        setGlobalEval( getAll( elem, "script" ) );
                    }
                    elem.parentNode.removeChild( elem );
                }
            }
        }

        return this;
    },

    empty: function() {
        var elem,
            i = 0;

        for ( ; (elem = this[i]) != null; i++ ) {
            // Remove element nodes and prevent memory leaks
            if ( elem.nodeType === 1 ) {
                jQuery.cleanData( getAll( elem, false ) );
            }

            // Remove any remaining nodes
            while ( elem.firstChild ) {
                elem.removeChild( elem.firstChild );
            }

            // If this is a select, ensure that it displays empty (#12336)
            // Support: IE<9
            if ( elem.options && jQuery.nodeName( elem, "select" ) ) {
                elem.options.length = 0;
            }
        }

        return this;
    },

    clone: function( dataAndEvents, deepDataAndEvents ) {
        dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
        deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;

        return this.map( function () {
            return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
        });
    },

    html: function( value ) {
        return jQuery.access( this, function( value ) {
            var elem = this[0] || {},
                i = 0,
                l = this.length;

            if ( value === undefined ) {
                return elem.nodeType === 1 ?
                    elem.innerHTML.replace( rinlinejQuery, "" ) :
                    undefined;
            }

            // See if we can take a shortcut and just use innerHTML
            if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
                ( jQuery.support.htmlSerialize || !rnoshimcache.test( value )  ) &&
                ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&
                !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) {

                value = value.replace( rxhtmlTag, "<$1></$2>" );

                try {
                    for (; i < l; i++ ) {
                        // Remove element nodes and prevent memory leaks
                        elem = this[i] || {};
                        if ( elem.nodeType === 1 ) {
                            jQuery.cleanData( getAll( elem, false ) );
                            elem.innerHTML = value;
                        }
                    }

                    elem = 0;

                // If using innerHTML throws an exception, use the fallback method
                } catch(e) {}
            }

            if ( elem ) {
                this.empty().append( value );
            }
        }, null, value, arguments.length );
    },

    replaceWith: function( value ) {
        var isFunc = jQuery.isFunction( value );

        // Make sure that the elements are removed from the DOM before they are inserted
        // this can help fix replacing a parent with child elements
        if ( !isFunc && typeof value !== "string" ) {
            value = jQuery( value ).not( this ).detach();
        }

        return this.domManip( [ value ], true, function( elem ) {
            var next = this.nextSibling,
                parent = this.parentNode;

            if ( parent ) {
                jQuery( this ).remove();
                parent.insertBefore( elem, next );
            }
        });
    },

    detach: function( selector ) {
        return this.remove( selector, true );
    },

    domManip: function( args, table, callback ) {

        // Flatten any nested arrays
        args = core_concat.apply( [], args );

        var first, node, hasScripts,
            scripts, doc, fragment,
            i = 0,
            l = this.length,
            set = this,
            iNoClone = l - 1,
            value = args[0],
            isFunction = jQuery.isFunction( value );

        // We can't cloneNode fragments that contain checked, in WebKit
        if ( isFunction || !( l <= 1 || typeof value !== "string" || jQuery.support.checkClone || !rchecked.test( value ) ) ) {
            return this.each(function( index ) {
                var self = set.eq( index );
                if ( isFunction ) {
                    args[0] = value.call( this, index, table ? self.html() : undefined );
                }
                self.domManip( args, table, callback );
            });
        }

        if ( l ) {
            fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );
            first = fragment.firstChild;

            if ( fragment.childNodes.length === 1 ) {
                fragment = first;
            }

            if ( first ) {
                table = table && jQuery.nodeName( first, "tr" );
                scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
                hasScripts = scripts.length;

                // Use the original fragment for the last item instead of the first because it can end up
                // being emptied incorrectly in certain situations (#8070).
                for ( ; i < l; i++ ) {
                    node = fragment;

                    if ( i !== iNoClone ) {
                        node = jQuery.clone( node, true, true );

                        // Keep references to cloned scripts for later restoration
                        if ( hasScripts ) {
                            jQuery.merge( scripts, getAll( node, "script" ) );
                        }
                    }

                    callback.call(
                        table && jQuery.nodeName( this[i], "table" ) ?
                            findOrAppend( this[i], "tbody" ) :
                            this[i],
                        node,
                        i
                    );
                }

                if ( hasScripts ) {
                    doc = scripts[ scripts.length - 1 ].ownerDocument;

                    // Reenable scripts
                    jQuery.map( scripts, restoreScript );

                    // Evaluate executable scripts on first document insertion
                    for ( i = 0; i < hasScripts; i++ ) {
                        node = scripts[ i ];
                        if ( rscriptType.test( node.type || "" ) &&
                            !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) {

                            if ( node.src ) {
                                // Hope ajax is available...
                                jQuery.ajax({
                                    url: node.src,
                                    type: "GET",
                                    dataType: "script",
                                    async: false,
                                    global: false,
                                    "throws": true
                                });
                            } else {
                                jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) );
                            }
                        }
                    }
                }

                // Fix #11809: Avoid leaking memory
                fragment = first = null;
            }
        }

        return this;
    }
});

function findOrAppend( elem, tag ) {
    return elem.getElementsByTagName( tag )[0] || elem.appendChild( elem.ownerDocument.createElement( tag ) );
}

// Replace/restore the type attribute of script elements for safe DOM manipulation
function disableScript( elem ) {
    var attr = elem.getAttributeNode("type");
    elem.type = ( attr && attr.specified ) + "/" + elem.type;
    return elem;
}
function restoreScript( elem ) {
    var match = rscriptTypeMasked.exec( elem.type );
    if ( match ) {
        elem.type = match[1];
    } else {
        elem.removeAttribute("type");
    }
    return elem;
}

// Mark scripts as having already been evaluated
function setGlobalEval( elems, refElements ) {
    var elem,
        i = 0;
    for ( ; (elem = elems[i]) != null; i++ ) {
        jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) );
    }
}

function cloneCopyEvent( src, dest ) {

    if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {
        return;
    }

    var type, i, l,
        oldData = jQuery._data( src ),
        curData = jQuery._data( dest, oldData ),
        events = oldData.events;

    if ( events ) {
        delete curData.handle;
        curData.events = {};

        for ( type in events ) {
            for ( i = 0, l = events[ type ].length; i < l; i++ ) {
                jQuery.event.add( dest, type, events[ type ][ i ] );
            }
        }
    }

    // make the cloned public data object a copy from the original
    if ( curData.data ) {
        curData.data = jQuery.extend( {}, curData.data );
    }
}

function fixCloneNodeIssues( src, dest ) {
    var nodeName, e, data;

    // We do not need to do anything for non-Elements
    if ( dest.nodeType !== 1 ) {
        return;
    }

    nodeName = dest.nodeName.toLowerCase();

    // IE6-8 copies events bound via attachEvent when using cloneNode.
    if ( !jQuery.support.noCloneEvent && dest[ jQuery.expando ] ) {
        data = jQuery._data( dest );

        for ( e in data.events ) {
            jQuery.removeEvent( dest, e, data.handle );
        }

        // Event data gets referenced instead of copied if the expando gets copied too
        dest.removeAttribute( jQuery.expando );
    }

    // IE blanks contents when cloning scripts, and tries to evaluate newly-set text
    if ( nodeName === "script" && dest.text !== src.text ) {
        disableScript( dest ).text = src.text;
        restoreScript( dest );

    // IE6-10 improperly clones children of object elements using classid.
    // IE10 throws NoModificationAllowedError if parent is null, #12132.
    } else if ( nodeName === "object" ) {
        if ( dest.parentNode ) {
            dest.outerHTML = src.outerHTML;
        }

        // This path appears unavoidable for IE9. When cloning an object
        // element in IE9, the outerHTML strategy above is not sufficient.
        // If the src has innerHTML and the destination does not,
        // copy the src.innerHTML into the dest.innerHTML. #10324
        if ( jQuery.support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {
            dest.innerHTML = src.innerHTML;
        }

    } else if ( nodeName === "input" && manipulation_rcheckableType.test( src.type ) ) {
        // IE6-8 fails to persist the checked state of a cloned checkbox
        // or radio button. Worse, IE6-7 fail to give the cloned element
        // a checked appearance if the defaultChecked value isn't also set

        dest.defaultChecked = dest.checked = src.checked;

        // IE6-7 get confused and end up setting the value of a cloned
        // checkbox/radio button to an empty string instead of "on"
        if ( dest.value !== src.value ) {
            dest.value = src.value;
        }

    // IE6-8 fails to return the selected option to the default selected
    // state when cloning options
    } else if ( nodeName === "option" ) {
        dest.defaultSelected = dest.selected = src.defaultSelected;

    // IE6-8 fails to set the defaultValue to the correct value when
    // cloning other types of input fields
    } else if ( nodeName === "input" || nodeName === "textarea" ) {
        dest.defaultValue = src.defaultValue;
    }
}

jQuery.each({
    appendTo: "append",
    prependTo: "prepend",
    insertBefore: "before",
    insertAfter: "after",
    replaceAll: "replaceWith"
}, function( name, original ) {
    jQuery.fn[ name ] = function( selector ) {
        var elems,
            i = 0,
            ret = [],
            insert = jQuery( selector ),
            last = insert.length - 1;

        for ( ; i <= last; i++ ) {
            elems = i === last ? this : this.clone(true);
            jQuery( insert[i] )[ original ]( elems );

            // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()
            core_push.apply( ret, elems.get() );
        }

        return this.pushStack( ret );
    };
});

function getAll( context, tag ) {
    var elems, elem,
        i = 0,
        found = typeof context.getElementsByTagName !== core_strundefined ? context.getElementsByTagName( tag || "*" ) :
            typeof context.querySelectorAll !== core_strundefined ? context.querySelectorAll( tag || "*" ) :
            undefined;

    if ( !found ) {
        for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {
            if ( !tag || jQuery.nodeName( elem, tag ) ) {
                found.push( elem );
            } else {
                jQuery.merge( found, getAll( elem, tag ) );
            }
        }
    }

    return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
        jQuery.merge( [ context ], found ) :
        found;
}

// Used in buildFragment, fixes the defaultChecked property
function fixDefaultChecked( elem ) {
    if ( manipulation_rcheckableType.test( elem.type ) ) {
        elem.defaultChecked = elem.checked;
    }
}

jQuery.extend({
    clone: function( elem, dataAndEvents, deepDataAndEvents ) {
        var destElements, node, clone, i, srcElements,
            inPage = jQuery.contains( elem.ownerDocument, elem );

        if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) {
            clone = elem.cloneNode( true );

        // IE<=8 does not properly clone detached, unknown element nodes
        } else {
            fragmentDiv.innerHTML = elem.outerHTML;
            fragmentDiv.removeChild( clone = fragmentDiv.firstChild );
        }

        if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) &&
                (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {

            // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2
            destElements = getAll( clone );
            srcElements = getAll( elem );

            // Fix all IE cloning issues
            for ( i = 0; (node = srcElements[i]) != null; ++i ) {
                // Ensure that the destination node is not null; Fixes #9587
                if ( destElements[i] ) {
                    fixCloneNodeIssues( node, destElements[i] );
                }
            }
        }

        // Copy the events from the original to the clone
        if ( dataAndEvents ) {
            if ( deepDataAndEvents ) {
                srcElements = srcElements || getAll( elem );
                destElements = destElements || getAll( clone );

                for ( i = 0; (node = srcElements[i]) != null; i++ ) {
                    cloneCopyEvent( node, destElements[i] );
                }
            } else {
                cloneCopyEvent( elem, clone );
            }
        }

        // Preserve script evaluation history
        destElements = getAll( clone, "script" );
        if ( destElements.length > 0 ) {
            setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
        }

        destElements = srcElements = node = null;

        // Return the cloned set
        return clone;
    },

    buildFragment: function( elems, context, scripts, selection ) {
        var j, elem, contains,
            tmp, tag, tbody, wrap,
            l = elems.length,

            // Ensure a safe fragment
            safe = createSafeFragment( context ),

            nodes = [],
            i = 0;

        for ( ; i < l; i++ ) {
            elem = elems[ i ];

            if ( elem || elem === 0 ) {

                // Add nodes directly
                if ( jQuery.type( elem ) === "object" ) {
                    jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );

                // Convert non-html into a text node
                } else if ( !rhtml.test( elem ) ) {
                    nodes.push( context.createTextNode( elem ) );

                // Convert html into DOM nodes
                } else {
                    tmp = tmp || safe.appendChild( context.createElement("div") );

                    // Deserialize a standard representation
                    tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase();
                    wrap = wrapMap[ tag ] || wrapMap._default;

                    tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1></$2>" ) + wrap[2];

                    // Descend through wrappers to the right content
                    j = wrap[0];
                    while ( j-- ) {
                        tmp = tmp.lastChild;
                    }

                    // Manually add leading whitespace removed by IE
                    if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {
                        nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );
                    }

                    // Remove IE's autoinserted <tbody> from table fragments
                    if ( !jQuery.support.tbody ) {

                        // String was a <table>, *may* have spurious <tbody>
                        elem = tag === "table" && !rtbody.test( elem ) ?
                            tmp.firstChild :

                            // String was a bare <thead> or <tfoot>
                            wrap[1] === "<table>" && !rtbody.test( elem ) ?
                                tmp :
                                0;

                        j = elem && elem.childNodes.length;
                        while ( j-- ) {
                            if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) {
                                elem.removeChild( tbody );
                            }
                        }
                    }

                    jQuery.merge( nodes, tmp.childNodes );

                    // Fix #12392 for WebKit and IE > 9
                    tmp.textContent = "";

                    // Fix #12392 for oldIE
                    while ( tmp.firstChild ) {
                        tmp.removeChild( tmp.firstChild );
                    }

                    // Remember the top-level container for proper cleanup
                    tmp = safe.lastChild;
                }
            }
        }

        // Fix #11356: Clear elements from fragment
        if ( tmp ) {
            safe.removeChild( tmp );
        }

        // Reset defaultChecked for any radios and checkboxes
        // about to be appended to the DOM in IE 6/7 (#8060)
        if ( !jQuery.support.appendChecked ) {
            jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked );
        }

        i = 0;
        while ( (elem = nodes[ i++ ]) ) {

            // #4087 - If origin and destination elements are the same, and this is
            // that element, do not do anything
            if ( selection && jQuery.inArray( elem, selection ) !== -1 ) {
                continue;
            }

            contains = jQuery.contains( elem.ownerDocument, elem );

            // Append to fragment
            tmp = getAll( safe.appendChild( elem ), "script" );

            // Preserve script evaluation history
            if ( contains ) {
                setGlobalEval( tmp );
            }

            // Capture executables
            if ( scripts ) {
                j = 0;
                while ( (elem = tmp[ j++ ]) ) {
                    if ( rscriptType.test( elem.type || "" ) ) {
                        scripts.push( elem );
                    }
                }
            }
        }

        tmp = null;

        return safe;
    },

    cleanData: function( elems, /* internal */ acceptData ) {
        var elem, type, id, data,
            i = 0,
            internalKey = jQuery.expando,
            cache = jQuery.cache,
            deleteExpando = jQuery.support.deleteExpando,
            special = jQuery.event.special;

        for ( ; (elem = elems[i]) != null; i++ ) {

            if ( acceptData || jQuery.acceptData( elem ) ) {

                id = elem[ internalKey ];
                data = id && cache[ id ];

                if ( data ) {
                    if ( data.events ) {
                        for ( type in data.events ) {
                            if ( special[ type ] ) {
                                jQuery.event.remove( elem, type );

                            // This is a shortcut to avoid jQuery.event.remove's overhead
                            } else {
                                jQuery.removeEvent( elem, type, data.handle );
                            }
                        }
                    }

                    // Remove cache only if it was not already removed by jQuery.event.remove
                    if ( cache[ id ] ) {

                        delete cache[ id ];

                        // IE does not allow us to delete expando properties from nodes,
                        // nor does it have a removeAttribute function on Document nodes;
                        // we must handle all of these cases
                        if ( deleteExpando ) {
                            delete elem[ internalKey ];

                        } else if ( typeof elem.removeAttribute !== core_strundefined ) {
                            elem.removeAttribute( internalKey );

                        } else {
                            elem[ internalKey ] = null;
                        }

                        core_deletedIds.push( id );
                    }
                }
            }
        }
    }
});
var iframe, getStyles, curCSS,
    ralpha = /alpha\([^)]*\)/i,
    ropacity = /opacity\s*=\s*([^)]*)/,
    rposition = /^(top|right|bottom|left)$/,
    // swappable if display is none or starts with table except "table", "table-cell", or "table-caption"
    // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
    rdisplayswap = /^(none|table(?!-c[ea]).+)/,
    rmargin = /^margin/,
    rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ),
    rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ),
    rrelNum = new RegExp( "^([+-])=(" + core_pnum + ")", "i" ),
    elemdisplay = { BODY: "block" },

    cssShow = { position: "absolute", visibility: "hidden", display: "block" },
    cssNormalTransform = {
        letterSpacing: 0,
        fontWeight: 400
    },

    cssExpand = [ "Top", "Right", "Bottom", "Left" ],
    cssPrefixes = [ "Webkit", "O", "Moz", "ms" ];

// return a css property mapped to a potentially vendor prefixed property
function vendorPropName( style, name ) {

    // shortcut for names that are not vendor prefixed
    if ( name in style ) {
        return name;
    }

    // check for vendor prefixed names
    var capName = name.charAt(0).toUpperCase() + name.slice(1),
        origName = name,
        i = cssPrefixes.length;

    while ( i-- ) {
        name = cssPrefixes[ i ] + capName;
        if ( name in style ) {
            return name;
        }
    }

    return origName;
}

function isHidden( elem, el ) {
    // isHidden might be called from jQuery#filter function;
    // in that case, element will be second argument
    elem = el || elem;
    return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
}

function showHide( elements, show ) {
    var display, elem, hidden,
        values = [],
        index = 0,
        length = elements.length;

    for ( ; index < length; index++ ) {
        elem = elements[ index ];
        if ( !elem.style ) {
            continue;
        }

        values[ index ] = jQuery._data( elem, "olddisplay" );
        display = elem.style.display;
        if ( show ) {
            // Reset the inline display of this element to learn if it is
            // being hidden by cascaded rules or not
            if ( !values[ index ] && display === "none" ) {
                elem.style.display = "";
            }

            // Set elements which have been overridden with display: none
            // in a stylesheet to whatever the default browser style is
            // for such an element
            if ( elem.style.display === "" && isHidden( elem ) ) {
                values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) );
            }
        } else {

            if ( !values[ index ] ) {
                hidden = isHidden( elem );

                if ( display && display !== "none" || !hidden ) {
                    jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) );
                }
            }
        }
    }

    // Set the display of most of the elements in a second loop
    // to avoid the constant reflow
    for ( index = 0; index < length; index++ ) {
        elem = elements[ index ];
        if ( !elem.style ) {
            continue;
        }
        if ( !show || elem.style.display === "none" || elem.style.display === "" ) {
            elem.style.display = show ? values[ index ] || "" : "none";
        }
    }

    return elements;
}

jQuery.fn.extend({
    css: function( name, value ) {
        return jQuery.access( this, function( elem, name, value ) {
            var len, styles,
                map = {},
                i = 0;

            if ( jQuery.isArray( name ) ) {
                styles = getStyles( elem );
                len = name.length;

                for ( ; i < len; i++ ) {
                    map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
                }

                return map;
            }

            return value !== undefined ?
                jQuery.style( elem, name, value ) :
                jQuery.css( elem, name );
        }, name, value, arguments.length > 1 );
    },
    show: function() {
        return showHide( this, true );
    },
    hide: function() {
        return showHide( this );
    },
    toggle: function( state ) {
        var bool = typeof state === "boolean";

        return this.each(function() {
            if ( bool ? state : isHidden( this ) ) {
                jQuery( this ).show();
            } else {
                jQuery( this ).hide();
            }
        });
    }
});

jQuery.extend({
    // Add in style property hooks for overriding the default
    // behavior of getting and setting a style property
    cssHooks: {
        opacity: {
            get: function( elem, computed ) {
                if ( computed ) {
                    // We should always get a number back from opacity
                    var ret = curCSS( elem, "opacity" );
                    return ret === "" ? "1" : ret;
                }
            }
        }
    },

    // Exclude the following css properties to add px
    cssNumber: {
        "columnCount": true,
        "fillOpacity": true,
        "fontWeight": true,
        "lineHeight": true,
        "opacity": true,
        "orphans": true,
        "widows": true,
        "zIndex": true,
        "zoom": true
    },

    // Add in properties whose names you wish to fix before
    // setting or getting the value
    cssProps: {
        // normalize float css property
        "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat"
    },

    // Get and set the style property on a DOM Node
    style: function( elem, name, value, extra ) {
        // Don't set styles on text and comment nodes
        if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
            return;
        }

        // Make sure that we're working with the right name
        var ret, type, hooks,
            origName = jQuery.camelCase( name ),
            style = elem.style;

        name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );

        // gets hook for the prefixed version
        // followed by the unprefixed version
        hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];

        // Check if we're setting a value
        if ( value !== undefined ) {
            type = typeof value;

            // convert relative number strings (+= or -=) to relative numbers. #7345
            if ( type === "string" && (ret = rrelNum.exec( value )) ) {
                value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );
                // Fixes bug #9237
                type = "number";
            }

            // Make sure that NaN and null values aren't set. See: #7116
            if ( value == null || type === "number" && isNaN( value ) ) {
                return;
            }

            // If a number was passed in, add 'px' to the (except for certain CSS properties)
            if ( type === "number" && !jQuery.cssNumber[ origName ] ) {
                value += "px";
            }

            // Fixes #8908, it can be done more correctly by specifing setters in cssHooks,
            // but it would mean to define eight (for every problematic property) identical functions
            if ( !jQuery.support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) {
                style[ name ] = "inherit";
            }

            // If a hook was provided, use that value, otherwise just set the specified value
            if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {

                // Wrapped to prevent IE from throwing errors when 'invalid' values are provided
                // Fixes bug #5509
                try {
                    style[ name ] = value;
                } catch(e) {}
            }

        } else {
            // If a hook was provided get the non-computed value from there
            if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {
                return ret;
            }

            // Otherwise just get the value from the style object
            return style[ name ];
        }
    },

    css: function( elem, name, extra, styles ) {
        var num, val, hooks,
            origName = jQuery.camelCase( name );

        // Make sure that we're working with the right name
        name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );

        // gets hook for the prefixed version
        // followed by the unprefixed version
        hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];

        // If a hook was provided get the computed value from there
        if ( hooks && "get" in hooks ) {
            val = hooks.get( elem, true, extra );
        }

        // Otherwise, if a way to get the computed value exists, use that
        if ( val === undefined ) {
            val = curCSS( elem, name, styles );
        }

        //convert "normal" to computed value
        if ( val === "normal" && name in cssNormalTransform ) {
            val = cssNormalTransform[ name ];
        }

        // Return, converting to number if forced or a qualifier was provided and val looks numeric
        if ( extra === "" || extra ) {
            num = parseFloat( val );
            return extra === true || jQuery.isNumeric( num ) ? num || 0 : val;
        }
        return val;
    },

    // A method for quickly swapping in/out CSS properties to get correct calculations
    swap: function( elem, options, callback, args ) {
        var ret, name,
            old = {};

        // Remember the old values, and insert the new ones
        for ( name in options ) {
            old[ name ] = elem.style[ name ];
            elem.style[ name ] = options[ name ];
        }

        ret = callback.apply( elem, args || [] );

        // Revert the old values
        for ( name in options ) {
            elem.style[ name ] = old[ name ];
        }

        return ret;
    }
});

// NOTE: we've included the "window" in window.getComputedStyle
// because jsdom on node.js will break without it.
if ( window.getComputedStyle ) {
    getStyles = function( elem ) {
        return window.getComputedStyle( elem, null );
    };

    curCSS = function( elem, name, _computed ) {
        var width, minWidth, maxWidth,
            computed = _computed || getStyles( elem ),

            // getPropertyValue is only needed for .css('filter') in IE9, see #12537
            ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined,
            style = elem.style;

        if ( computed ) {

            if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
                ret = jQuery.style( elem, name );
            }

            // A tribute to the "awesome hack by Dean Edwards"
            // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right
            // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels
            // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values
            if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {

                // Remember the original values
                width = style.width;
                minWidth = style.minWidth;
                maxWidth = style.maxWidth;

                // Put in the new values to get a computed value out
                style.minWidth = style.maxWidth = style.width = ret;
                ret = computed.width;

                // Revert the changed values
                style.width = width;
                style.minWidth = minWidth;
                style.maxWidth = maxWidth;
            }
        }

        return ret;
    };
} else if ( document.documentElement.currentStyle ) {
    getStyles = function( elem ) {
        return elem.currentStyle;
    };

    curCSS = function( elem, name, _computed ) {
        var left, rs, rsLeft,
            computed = _computed || getStyles( elem ),
            ret = computed ? computed[ name ] : undefined,
            style = elem.style;

        // Avoid setting ret to empty string here
        // so we don't default to auto
        if ( ret == null && style && style[ name ] ) {
            ret = style[ name ];
        }

        // From the awesome hack by Dean Edwards
        // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291

        // If we're not dealing with a regular pixel number
        // but a number that has a weird ending, we need to convert it to pixels
        // but not position css attributes, as those are proportional to the parent element instead
        // and we can't measure the parent instead because it might trigger a "stacking dolls" problem
        if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {

            // Remember the original values
            left = style.left;
            rs = elem.runtimeStyle;
            rsLeft = rs && rs.left;

            // Put in the new values to get a computed value out
            if ( rsLeft ) {
                rs.left = elem.currentStyle.left;
            }
            style.left = name === "fontSize" ? "1em" : ret;
            ret = style.pixelLeft + "px";

            // Revert the changed values
            style.left = left;
            if ( rsLeft ) {
                rs.left = rsLeft;
            }
        }

        return ret === "" ? "auto" : ret;
    };
}

function setPositiveNumber( elem, value, subtract ) {
    var matches = rnumsplit.exec( value );
    return matches ?
        // Guard against undefined "subtract", e.g., when used as in cssHooks
        Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) :
        value;
}

function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
    var i = extra === ( isBorderBox ? "border" : "content" ) ?
        // If we already have the right measurement, avoid augmentation
        4 :
        // Otherwise initialize for horizontal or vertical properties
        name === "width" ? 1 : 0,

        val = 0;

    for ( ; i < 4; i += 2 ) {
        // both box models exclude margin, so add it if we want it
        if ( extra === "margin" ) {
            val += jQuery.css( elem, extra + cssExpand[ i ], true, styles );
        }

        if ( isBorderBox ) {
            // border-box includes padding, so remove it if we want content
            if ( extra === "content" ) {
                val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
            }

            // at this point, extra isn't border nor margin, so remove border
            if ( extra !== "margin" ) {
                val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
            }
        } else {
            // at this point, extra isn't content, so add padding
            val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );

            // at this point, extra isn't content nor padding, so add border
            if ( extra !== "padding" ) {
                val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
            }
        }
    }

    return val;
}

function getWidthOrHeight( elem, name, extra ) {

    // Start with offset property, which is equivalent to the border-box value
    var valueIsBorderBox = true,
        val = name === "width" ? elem.offsetWidth : elem.offsetHeight,
        styles = getStyles( elem ),
        isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box";

    // some non-html elements return undefined for offsetWidth, so check for null/undefined
    // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
    // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
    if ( val <= 0 || val == null ) {
        // Fall back to computed then uncomputed css if necessary
        val = curCSS( elem, name, styles );
        if ( val < 0 || val == null ) {
            val = elem.style[ name ];
        }

        // Computed unit is not pixels. Stop here and return.
        if ( rnumnonpx.test(val) ) {
            return val;
        }

        // we need the check for style in case a browser which returns unreliable values
        // for getComputedStyle silently falls back to the reliable elem.style
        valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] );

        // Normalize "", auto, and prepare for extra
        val = parseFloat( val ) || 0;
    }

    // use the active box-sizing model to add/subtract irrelevant styles
    return ( val +
        augmentWidthOrHeight(
            elem,
            name,
            extra || ( isBorderBox ? "border" : "content" ),
            valueIsBorderBox,
            styles
        )
    ) + "px";
}

// Try to determine the default display value of an element
function css_defaultDisplay( nodeName ) {
    var doc = document,
        display = elemdisplay[ nodeName ];

    if ( !display ) {
        display = actualDisplay( nodeName, doc );

        // If the simple way fails, read from inside an iframe
        if ( display === "none" || !display ) {
            // Use the already-created iframe if possible
            iframe = ( iframe ||
                jQuery("<iframe frameborder='0' width='0' height='0'/>")
                .css( "cssText", "display:block !important" )
            ).appendTo( doc.documentElement );

            // Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse
            doc = ( iframe[0].contentWindow || iframe[0].contentDocument ).document;
            doc.write("<!doctype html><html><body>");
            doc.close();

            display = actualDisplay( nodeName, doc );
            iframe.detach();
        }

        // Store the correct default display
        elemdisplay[ nodeName ] = display;
    }

    return display;
}

// Called ONLY from within css_defaultDisplay
function actualDisplay( name, doc ) {
    var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
        display = jQuery.css( elem[0], "display" );
    elem.remove();
    return display;
}

jQuery.each([ "height", "width" ], function( i, name ) {
    jQuery.cssHooks[ name ] = {
        get: function( elem, computed, extra ) {
            if ( computed ) {
                // certain elements can have dimension info if we invisibly show them
                // however, it must have a current display style that would benefit from this
                return elem.offsetWidth === 0 && rdisplayswap.test( jQuery.css( elem, "display" ) ) ?
                    jQuery.swap( elem, cssShow, function() {
                        return getWidthOrHeight( elem, name, extra );
                    }) :
                    getWidthOrHeight( elem, name, extra );
            }
        },

        set: function( elem, value, extra ) {
            var styles = extra && getStyles( elem );
            return setPositiveNumber( elem, value, extra ?
                augmentWidthOrHeight(
                    elem,
                    name,
                    extra,
                    jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
                    styles
                ) : 0
            );
        }
    };
});

if ( !jQuery.support.opacity ) {
    jQuery.cssHooks.opacity = {
        get: function( elem, computed ) {
            // IE uses filters for opacity
            return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ?
                ( 0.01 * parseFloat( RegExp.$1 ) ) + "" :
                computed ? "1" : "";
        },

        set: function( elem, value ) {
            var style = elem.style,
                currentStyle = elem.currentStyle,
                opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "",
                filter = currentStyle && currentStyle.filter || style.filter || "";

            // IE has trouble with opacity if it does not have layout
            // Force it by setting the zoom level
            style.zoom = 1;

            // if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652
            // if value === "", then remove inline opacity #12685
            if ( ( value >= 1 || value === "" ) &&
                    jQuery.trim( filter.replace( ralpha, "" ) ) === "" &&
                    style.removeAttribute ) {

                // Setting style.filter to null, "" & " " still leave "filter:" in the cssText
                // if "filter:" is present at all, clearType is disabled, we want to avoid this
                // style.removeAttribute is IE Only, but so apparently is this code path...
                style.removeAttribute( "filter" );

                // if there is no filter style applied in a css rule or unset inline opacity, we are done
                if ( value === "" || currentStyle && !currentStyle.filter ) {
                    return;
                }
            }

            // otherwise, set new filter values
            style.filter = ralpha.test( filter ) ?
                filter.replace( ralpha, opacity ) :
                filter + " " + opacity;
        }
    };
}

// These hooks cannot be added until DOM ready because the support test
// for it is not run until after DOM ready
jQuery(function() {
    if ( !jQuery.support.reliableMarginRight ) {
        jQuery.cssHooks.marginRight = {
            get: function( elem, computed ) {
                if ( computed ) {
                    // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
                    // Work around by temporarily setting element display to inline-block
                    return jQuery.swap( elem, { "display": "inline-block" },
                        curCSS, [ elem, "marginRight" ] );
                }
            }
        };
    }

    // Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
    // getComputedStyle returns percent when specified for top/left/bottom/right
    // rather than make the css module depend on the offset module, we just check for it here
    if ( !jQuery.support.pixelPosition && jQuery.fn.position ) {
        jQuery.each( [ "top", "left" ], function( i, prop ) {
            jQuery.cssHooks[ prop ] = {
                get: function( elem, computed ) {
                    if ( computed ) {
                        computed = curCSS( elem, prop );
                        // if curCSS returns percentage, fallback to offset
                        return rnumnonpx.test( computed ) ?
                            jQuery( elem ).position()[ prop ] + "px" :
                            computed;
                    }
                }
            };
        });
    }

});

if ( jQuery.expr && jQuery.expr.filters ) {
    jQuery.expr.filters.hidden = function( elem ) {
        // Support: Opera <= 12.12
        // Opera reports offsetWidths and offsetHeights less than zero on some elements
        return elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||
            (!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || jQuery.css( elem, "display" )) === "none");
    };

    jQuery.expr.filters.visible = function( elem ) {
        return !jQuery.expr.filters.hidden( elem );
    };
}

// These hooks are used by animate to expand properties
jQuery.each({
    margin: "",
    padding: "",
    border: "Width"
}, function( prefix, suffix ) {
    jQuery.cssHooks[ prefix + suffix ] = {
        expand: function( value ) {
            var i = 0,
                expanded = {},

                // assumes a single number if not a string
                parts = typeof value === "string" ? value.split(" ") : [ value ];

            for ( ; i < 4; i++ ) {
                expanded[ prefix + cssExpand[ i ] + suffix ] =
                    parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
            }

            return expanded;
        }
    };

    if ( !rmargin.test( prefix ) ) {
        jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
    }
});
var r20 = /%20/g,
    rbracket = /\[\]$/,
    rCRLF = /\r?\n/g,
    rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
    rsubmittable = /^(?:input|select|textarea|keygen)/i;

jQuery.fn.extend({
    serialize: function() {
        return jQuery.param( this.serializeArray() );
    },
    serializeArray: function() {
        return this.map(function(){
            // Can add propHook for "elements" to filter or add form elements
            var elements = jQuery.prop( this, "elements" );
            return elements ? jQuery.makeArray( elements ) : this;
        })
        .filter(function(){
            var type = this.type;
            // Use .is(":disabled") so that fieldset[disabled] works
            return this.name && !jQuery( this ).is( ":disabled" ) &&
                rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
                ( this.checked || !manipulation_rcheckableType.test( type ) );
        })
        .map(function( i, elem ){
            var val = jQuery( this ).val();

            return val == null ?
                null :
                jQuery.isArray( val ) ?
                    jQuery.map( val, function( val ){
                        return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
                    }) :
                    { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
        }).get();
    }
});

//Serialize an array of form elements or a set of
//key/values into a query string
jQuery.param = function( a, traditional ) {
    var prefix,
        s = [],
        add = function( key, value ) {
            // If value is a function, invoke it and return its value
            value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value );
            s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
        };

    // Set traditional to true for jQuery <= 1.3.2 behavior.
    if ( traditional === undefined ) {
        traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
    }

    // If an array was passed in, assume that it is an array of form elements.
    if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
        // Serialize the form elements
        jQuery.each( a, function() {
            add( this.name, this.value );
        });

    } else {
        // If traditional, encode the "old" way (the way 1.3.2 or older
        // did it), otherwise encode params recursively.
        for ( prefix in a ) {
            buildParams( prefix, a[ prefix ], traditional, add );
        }
    }

    // Return the resulting serialization
    return s.join( "&" ).replace( r20, "+" );
};

function buildParams( prefix, obj, traditional, add ) {
    var name;

    if ( jQuery.isArray( obj ) ) {
        // Serialize array item.
        jQuery.each( obj, function( i, v ) {
            if ( traditional || rbracket.test( prefix ) ) {
                // Treat each array item as a scalar.
                add( prefix, v );

            } else {
                // Item is non-scalar (array or object), encode its numeric index.
                buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add );
            }
        });

    } else if ( !traditional && jQuery.type( obj ) === "object" ) {
        // Serialize object item.
        for ( name in obj ) {
            buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
        }

    } else {
        // Serialize scalar item.
        add( prefix, obj );
    }
}
jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " +
    "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
    "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) {

    // Handle event binding
    jQuery.fn[ name ] = function( data, fn ) {
        return arguments.length > 0 ?
            this.on( name, null, data, fn ) :
            this.trigger( name );
    };
});

jQuery.fn.hover = function( fnOver, fnOut ) {
    return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
};
var
    // Document location
    ajaxLocParts,
    ajaxLocation,
    ajax_nonce = jQuery.now(),

    ajax_rquery = /\?/,
    rhash = /#.*$/,
    rts = /([?&])_=[^&]*/,
    rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL
    // #7653, #8125, #8152: local protocol detection
    rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
    rnoContent = /^(?:GET|HEAD)$/,
    rprotocol = /^\/\//,
    rurl = /^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,

    // Keep a copy of the old load method
    _load = jQuery.fn.load,

    /* Prefilters
     * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
     * 2) These are called:
     *    - BEFORE asking for a transport
     *    - AFTER param serialization (s.data is a string if s.processData is true)
     * 3) key is the dataType
     * 4) the catchall symbol "*" can be used
     * 5) execution will start with transport dataType and THEN continue down to "*" if needed
     */
    prefilters = {},

    /* Transports bindings
     * 1) key is the dataType
     * 2) the catchall symbol "*" can be used
     * 3) selection will start with transport dataType and THEN go to "*" if needed
     */
    transports = {},

    // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
    allTypes = "*/".concat("*");

// #8138, IE may throw an exception when accessing
// a field from window.location if document.domain has been set
try {
    ajaxLocation = location.href;
} catch( e ) {
    // Use the href attribute of an A element
    // since IE will modify it given document.location
    ajaxLocation = document.createElement( "a" );
    ajaxLocation.href = "";
    ajaxLocation = ajaxLocation.href;
}

// Segment location into parts
ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];

// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
function addToPrefiltersOrTransports( structure ) {

    // dataTypeExpression is optional and defaults to "*"
    return function( dataTypeExpression, func ) {

        if ( typeof dataTypeExpression !== "string" ) {
            func = dataTypeExpression;
            dataTypeExpression = "*";
        }

        var dataType,
            i = 0,
            dataTypes = dataTypeExpression.toLowerCase().match( core_rnotwhite ) || [];

        if ( jQuery.isFunction( func ) ) {
            // For each dataType in the dataTypeExpression
            while ( (dataType = dataTypes[i++]) ) {
                // Prepend if requested
                if ( dataType[0] === "+" ) {
                    dataType = dataType.slice( 1 ) || "*";
                    (structure[ dataType ] = structure[ dataType ] || []).unshift( func );

                // Otherwise append
                } else {
                    (structure[ dataType ] = structure[ dataType ] || []).push( func );
                }
            }
        }
    };
}

// Base inspection function for prefilters and transports
function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {

    var inspected = {},
        seekingTransport = ( structure === transports );

    function inspect( dataType ) {
        var selected;
        inspected[ dataType ] = true;
        jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
            var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
            if( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
                options.dataTypes.unshift( dataTypeOrTransport );
                inspect( dataTypeOrTransport );
                return false;
            } else if ( seekingTransport ) {
                return !( selected = dataTypeOrTransport );
            }
        });
        return selected;
    }

    return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
}

// A special extend for ajax options
// that takes "flat" options (not to be deep extended)
// Fixes #9887
function ajaxExtend( target, src ) {
    var deep, key,
        flatOptions = jQuery.ajaxSettings.flatOptions || {};

    for ( key in src ) {
        if ( src[ key ] !== undefined ) {
            ( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];
        }
    }
    if ( deep ) {
        jQuery.extend( true, target, deep );
    }

    return target;
}

jQuery.fn.load = function( url, params, callback ) {
    if ( typeof url !== "string" && _load ) {
        return _load.apply( this, arguments );
    }

    var selector, response, type,
        self = this,
        off = url.indexOf(" ");

    if ( off >= 0 ) {
        selector = url.slice( off, url.length );
        url = url.slice( 0, off );
    }

    // If it's a function
    if ( jQuery.isFunction( params ) ) {

        // We assume that it's the callback
        callback = params;
        params = undefined;

    // Otherwise, build a param string
    } else if ( params && typeof params === "object" ) {
        type = "POST";
    }

    // If we have elements to modify, make the request
    if ( self.length > 0 ) {
        jQuery.ajax({
            url: url,

            // if "type" variable is undefined, then "GET" method will be used
            type: type,
            dataType: "html",
            data: params
        }).done(function( responseText ) {

            // Save response for use in complete callback
            response = arguments;

            self.html( selector ?

                // If a selector was specified, locate the right elements in a dummy div
                // Exclude scripts to avoid IE 'Permission Denied' errors
                jQuery("<div>").append( jQuery.parseHTML( responseText ) ).find( selector ) :

                // Otherwise use the full result
                responseText );

        }).complete( callback && function( jqXHR, status ) {
            self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );
        });
    }

    return this;
};

// Attach a bunch of functions for handling common AJAX events
jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ){
    jQuery.fn[ type ] = function( fn ){
        return this.on( type, fn );
    };
});

jQuery.each( [ "get", "post" ], function( i, method ) {
    jQuery[ method ] = function( url, data, callback, type ) {
        // shift arguments if data argument was omitted
        if ( jQuery.isFunction( data ) ) {
            type = type || callback;
            callback = data;
            data = undefined;
        }

        return jQuery.ajax({
            url: url,
            type: method,
            dataType: type,
            data: data,
            success: callback
        });
    };
});

jQuery.extend({

    // Counter for holding the number of active queries
    active: 0,

    // Last-Modified header cache for next request
    lastModified: {},
    etag: {},

    ajaxSettings: {
        url: ajaxLocation,
        type: "GET",
        isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
        global: true,
        processData: true,
        async: true,
        contentType: "application/x-www-form-urlencoded; charset=UTF-8",
        /*
        timeout: 0,
        data: null,
        dataType: null,
        username: null,
        password: null,
        cache: null,
        throws: false,
        traditional: false,
        headers: {},
        */

        accepts: {
            "*": allTypes,
            text: "text/plain",
            html: "text/html",
            xml: "application/xml, text/xml",
            json: "application/json, text/javascript"
        },

        contents: {
            xml: /xml/,
            html: /html/,
            json: /json/
        },

        responseFields: {
            xml: "responseXML",
            text: "responseText"
        },

        // Data converters
        // Keys separate source (or catchall "*") and destination types with a single space
        converters: {

            // Convert anything to text
            "* text": window.String,

            // Text to html (true = no transformation)
            "text html": true,

            // Evaluate text as a json expression
            "text json": jQuery.parseJSON,

            // Parse text as xml
            "text xml": jQuery.parseXML
        },

        // For options that shouldn't be deep extended:
        // you can add your own custom options here if
        // and when you create one that shouldn't be
        // deep extended (see ajaxExtend)
        flatOptions: {
            url: true,
            context: true
        }
    },

    // Creates a full fledged settings object into target
    // with both ajaxSettings and settings fields.
    // If target is omitted, writes into ajaxSettings.
    ajaxSetup: function( target, settings ) {
        return settings ?

            // Building a settings object
            ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :

            // Extending ajaxSettings
            ajaxExtend( jQuery.ajaxSettings, target );
    },

    ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
    ajaxTransport: addToPrefiltersOrTransports( transports ),

    // Main method
    ajax: function( url, options ) {

        // If url is an object, simulate pre-1.5 signature
        if ( typeof url === "object" ) {
            options = url;
            url = undefined;
        }

        // Force options to be an object
        options = options || {};

        var // Cross-domain detection vars
            parts,
            // Loop variable
            i,
            // URL without anti-cache param
            cacheURL,
            // Response headers as string
            responseHeadersString,
            // timeout handle
            timeoutTimer,

            // To know if global events are to be dispatched
            fireGlobals,

            transport,
            // Response headers
            responseHeaders,
            // Create the final options object
            s = jQuery.ajaxSetup( {}, options ),
            // Callbacks context
            callbackContext = s.context || s,
            // Context for global events is callbackContext if it is a DOM node or jQuery collection
            globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?
                jQuery( callbackContext ) :
                jQuery.event,
            // Deferreds
            deferred = jQuery.Deferred(),
            completeDeferred = jQuery.Callbacks("once memory"),
            // Status-dependent callbacks
            statusCode = s.statusCode || {},
            // Headers (they are sent all at once)
            requestHeaders = {},
            requestHeadersNames = {},
            // The jqXHR state
            state = 0,
            // Default abort message
            strAbort = "canceled",
            // Fake xhr
            jqXHR = {
                readyState: 0,

                // Builds headers hashtable if needed
                getResponseHeader: function( key ) {
                    var match;
                    if ( state === 2 ) {
                        if ( !responseHeaders ) {
                            responseHeaders = {};
                            while ( (match = rheaders.exec( responseHeadersString )) ) {
                                responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
                            }
                        }
                        match = responseHeaders[ key.toLowerCase() ];
                    }
                    return match == null ? null : match;
                },

                // Raw string
                getAllResponseHeaders: function() {
                    return state === 2 ? responseHeadersString : null;
                },

                // Caches the header
                setRequestHeader: function( name, value ) {
                    var lname = name.toLowerCase();
                    if ( !state ) {
                        name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
                        requestHeaders[ name ] = value;
                    }
                    return this;
                },

                // Overrides response content-type header
                overrideMimeType: function( type ) {
                    if ( !state ) {
                        s.mimeType = type;
                    }
                    return this;
                },

                // Status-dependent callbacks
                statusCode: function( map ) {
                    var code;
                    if ( map ) {
                        if ( state < 2 ) {
                            for ( code in map ) {
                                // Lazy-add the new callback in a way that preserves old ones
                                statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
                            }
                        } else {
                            // Execute the appropriate callbacks
                            jqXHR.always( map[ jqXHR.status ] );
                        }
                    }
                    return this;
                },

                // Cancel the request
                abort: function( statusText ) {
                    var finalText = statusText || strAbort;
                    if ( transport ) {
                        transport.abort( finalText );
                    }
                    done( 0, finalText );
                    return this;
                }
            };

        // Attach deferreds
        deferred.promise( jqXHR ).complete = completeDeferred.add;
        jqXHR.success = jqXHR.done;
        jqXHR.error = jqXHR.fail;

        // Remove hash character (#7531: and string promotion)
        // Add protocol if not provided (#5866: IE7 issue with protocol-less urls)
        // Handle falsy url in the settings object (#10093: consistency with old signature)
        // We also use the url parameter if available
        s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" );

        // Alias method option to type as per ticket #12004
        s.type = options.method || options.type || s.method || s.type;

        // Extract dataTypes list
        s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( core_rnotwhite ) || [""];

        // A cross-domain request is in order when we have a protocol:host:port mismatch
        if ( s.crossDomain == null ) {
            parts = rurl.exec( s.url.toLowerCase() );
            s.crossDomain = !!( parts &&
                ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||
                    ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? 80 : 443 ) ) !=
                        ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? 80 : 443 ) ) )
            );
        }

        // Convert data if not already a string
        if ( s.data && s.processData && typeof s.data !== "string" ) {
            s.data = jQuery.param( s.data, s.traditional );
        }

        // Apply prefilters
        inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );

        // If request was aborted inside a prefilter, stop there
        if ( state === 2 ) {
            return jqXHR;
        }

        // We can fire global events as of now if asked to
        fireGlobals = s.global;

        // Watch for a new set of requests
        if ( fireGlobals && jQuery.active++ === 0 ) {
            jQuery.event.trigger("ajaxStart");
        }

        // Uppercase the type
        s.type = s.type.toUpperCase();

        // Determine if request has content
        s.hasContent = !rnoContent.test( s.type );

        // Save the URL in case we're toying with the If-Modified-Since
        // and/or If-None-Match header later on
        cacheURL = s.url;

        // More options handling for requests with no content
        if ( !s.hasContent ) {

            // If data is available, append data to url
            if ( s.data ) {
                cacheURL = ( s.url += ( ajax_rquery.test( cacheURL ) ? "&" : "?" ) + s.data );
                // #9682: remove data so that it's not used in an eventual retry
                delete s.data;
            }

            // Add anti-cache in url if needed
            if ( s.cache === false ) {
                s.url = rts.test( cacheURL ) ?

                    // If there is already a '_' parameter, set its value
                    cacheURL.replace( rts, "$1_=" + ajax_nonce++ ) :

                    // Otherwise add one to the end
                    cacheURL + ( ajax_rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ajax_nonce++;
            }
        }

        // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
        if ( s.ifModified ) {
            if ( jQuery.lastModified[ cacheURL ] ) {
                jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
            }
            if ( jQuery.etag[ cacheURL ] ) {
                jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
            }
        }

        // Set the correct header, if data is being sent
        if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
            jqXHR.setRequestHeader( "Content-Type", s.contentType );
        }

        // Set the Accepts header for the server, depending on the dataType
        jqXHR.setRequestHeader(
            "Accept",
            s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
                s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
                s.accepts[ "*" ]
        );

        // Check for headers option
        for ( i in s.headers ) {
            jqXHR.setRequestHeader( i, s.headers[ i ] );
        }

        // Allow custom headers/mimetypes and early abort
        if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
            // Abort if not done already and return
            return jqXHR.abort();
        }

        // aborting is no longer a cancellation
        strAbort = "abort";

        // Install callbacks on deferreds
        for ( i in { success: 1, error: 1, complete: 1 } ) {
            jqXHR[ i ]( s[ i ] );
        }

        // Get transport
        transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );

        // If no transport, we auto-abort
        if ( !transport ) {
            done( -1, "No Transport" );
        } else {
            jqXHR.readyState = 1;

            // Send global event
            if ( fireGlobals ) {
                globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
            }
            // Timeout
            if ( s.async && s.timeout > 0 ) {
                timeoutTimer = setTimeout(function() {
                    jqXHR.abort("timeout");
                }, s.timeout );
            }

            try {
                state = 1;
                transport.send( requestHeaders, done );
            } catch ( e ) {
                // Propagate exception as error if not done
                if ( state < 2 ) {
                    done( -1, e );
                // Simply rethrow otherwise
                } else {
                    throw e;
                }
            }
        }

        // Callback for when everything is done
        function done( status, nativeStatusText, responses, headers ) {
            var isSuccess, success, error, response, modified,
                statusText = nativeStatusText;

            // Called once
            if ( state === 2 ) {
                return;
            }

            // State is "done" now
            state = 2;

            // Clear timeout if it exists
            if ( timeoutTimer ) {
                clearTimeout( timeoutTimer );
            }

            // Dereference transport for early garbage collection
            // (no matter how long the jqXHR object will be used)
            transport = undefined;

            // Cache response headers
            responseHeadersString = headers || "";

            // Set readyState
            jqXHR.readyState = status > 0 ? 4 : 0;

            // Get response data
            if ( responses ) {
                response = ajaxHandleResponses( s, jqXHR, responses );
            }

            // If successful, handle type chaining
            if ( status >= 200 && status < 300 || status === 304 ) {

                // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
                if ( s.ifModified ) {
                    modified = jqXHR.getResponseHeader("Last-Modified");
                    if ( modified ) {
                        jQuery.lastModified[ cacheURL ] = modified;
                    }
                    modified = jqXHR.getResponseHeader("etag");
                    if ( modified ) {
                        jQuery.etag[ cacheURL ] = modified;
                    }
                }

                // if no content
                if ( status === 204 ) {
                    isSuccess = true;
                    statusText = "nocontent";

                // if not modified
                } else if ( status === 304 ) {
                    isSuccess = true;
                    statusText = "notmodified";

                // If we have data, let's convert it
                } else {
                    isSuccess = ajaxConvert( s, response );
                    statusText = isSuccess.state;
                    success = isSuccess.data;
                    error = isSuccess.error;
                    isSuccess = !error;
                }
            } else {
                // We extract error from statusText
                // then normalize statusText and status for non-aborts
                error = statusText;
                if ( status || !statusText ) {
                    statusText = "error";
                    if ( status < 0 ) {
                        status = 0;
                    }
                }
            }

            // Set data for the fake xhr object
            jqXHR.status = status;
            jqXHR.statusText = ( nativeStatusText || statusText ) + "";

            // Success/Error
            if ( isSuccess ) {
                deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
            } else {
                deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
            }

            // Status-dependent callbacks
            jqXHR.statusCode( statusCode );
            statusCode = undefined;

            if ( fireGlobals ) {
                globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
                    [ jqXHR, s, isSuccess ? success : error ] );
            }

            // Complete
            completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );

            if ( fireGlobals ) {
                globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
                // Handle the global AJAX counter
                if ( !( --jQuery.active ) ) {
                    jQuery.event.trigger("ajaxStop");
                }
            }
        }

        return jqXHR;
    },

    getScript: function( url, callback ) {
        return jQuery.get( url, undefined, callback, "script" );
    },

    getJSON: function( url, data, callback ) {
        return jQuery.get( url, data, callback, "json" );
    }
});

/* Handles responses to an ajax request:
 * - sets all responseXXX fields accordingly
 * - finds the right dataType (mediates between content-type and expected dataType)
 * - returns the corresponding response
 */
function ajaxHandleResponses( s, jqXHR, responses ) {
    var firstDataType, ct, finalDataType, type,
        contents = s.contents,
        dataTypes = s.dataTypes,
        responseFields = s.responseFields;

    // Fill responseXXX fields
    for ( type in responseFields ) {
        if ( type in responses ) {
            jqXHR[ responseFields[type] ] = responses[ type ];
        }
    }

    // Remove auto dataType and get content-type in the process
    while( dataTypes[ 0 ] === "*" ) {
        dataTypes.shift();
        if ( ct === undefined ) {
            ct = s.mimeType || jqXHR.getResponseHeader("Content-Type");
        }
    }

    // Check if we're dealing with a known content-type
    if ( ct ) {
        for ( type in contents ) {
            if ( contents[ type ] && contents[ type ].test( ct ) ) {
                dataTypes.unshift( type );
                break;
            }
        }
    }

    // Check to see if we have a response for the expected dataType
    if ( dataTypes[ 0 ] in responses ) {
        finalDataType = dataTypes[ 0 ];
    } else {
        // Try convertible dataTypes
        for ( type in responses ) {
            if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
                finalDataType = type;
                break;
            }
            if ( !firstDataType ) {
                firstDataType = type;
            }
        }
        // Or just use first one
        finalDataType = finalDataType || firstDataType;
    }

    // If we found a dataType
    // We add the dataType to the list if needed
    // and return the corresponding response
    if ( finalDataType ) {
        if ( finalDataType !== dataTypes[ 0 ] ) {
            dataTypes.unshift( finalDataType );
        }
        return responses[ finalDataType ];
    }
}

// Chain conversions given the request and the original response
function ajaxConvert( s, response ) {
    var conv2, current, conv, tmp,
        converters = {},
        i = 0,
        // Work with a copy of dataTypes in case we need to modify it for conversion
        dataTypes = s.dataTypes.slice(),
        prev = dataTypes[ 0 ];

    // Apply the dataFilter if provided
    if ( s.dataFilter ) {
        response = s.dataFilter( response, s.dataType );
    }

    // Create converters map with lowercased keys
    if ( dataTypes[ 1 ] ) {
        for ( conv in s.converters ) {
            converters[ conv.toLowerCase() ] = s.converters[ conv ];
        }
    }

    // Convert to each sequential dataType, tolerating list modification
    for ( ; (current = dataTypes[++i]); ) {

        // There's only work to do if current dataType is non-auto
        if ( current !== "*" ) {

            // Convert response if prev dataType is non-auto and differs from current
            if ( prev !== "*" && prev !== current ) {

                // Seek a direct converter
                conv = converters[ prev + " " + current ] || converters[ "* " + current ];

                // If none found, seek a pair
                if ( !conv ) {
                    for ( conv2 in converters ) {

                        // If conv2 outputs current
                        tmp = conv2.split(" ");
                        if ( tmp[ 1 ] === current ) {

                            // If prev can be converted to accepted input
                            conv = converters[ prev + " " + tmp[ 0 ] ] ||
                                converters[ "* " + tmp[ 0 ] ];
                            if ( conv ) {
                                // Condense equivalence converters
                                if ( conv === true ) {
                                    conv = converters[ conv2 ];

                                // Otherwise, insert the intermediate dataType
                                } else if ( converters[ conv2 ] !== true ) {
                                    current = tmp[ 0 ];
                                    dataTypes.splice( i--, 0, current );
                                }

                                break;
                            }
                        }
                    }
                }

                // Apply converter (if not an equivalence)
                if ( conv !== true ) {

                    // Unless errors are allowed to bubble, catch and return them
                    if ( conv && s["throws"] ) {
                        response = conv( response );
                    } else {
                        try {
                            response = conv( response );
                        } catch ( e ) {
                            return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current };
                        }
                    }
                }
            }

            // Update prev for next iteration
            prev = current;
        }
    }

    return { state: "success", data: response };
}
// Install script dataType
jQuery.ajaxSetup({
    accepts: {
        script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
    },
    contents: {
        script: /(?:java|ecma)script/
    },
    converters: {
        "text script": function( text ) {
            jQuery.globalEval( text );
            return text;
        }
    }
});

// Handle cache's special case and global
jQuery.ajaxPrefilter( "script", function( s ) {
    if ( s.cache === undefined ) {
        s.cache = false;
    }
    if ( s.crossDomain ) {
        s.type = "GET";
        s.global = false;
    }
});

// Bind script tag hack transport
jQuery.ajaxTransport( "script", function(s) {

    // This transport only deals with cross domain requests
    if ( s.crossDomain ) {

        var script,
            head = document.head || jQuery("head")[0] || document.documentElement;

        return {

            send: function( _, callback ) {

                script = document.createElement("script");

                script.async = true;

                if ( s.scriptCharset ) {
                    script.charset = s.scriptCharset;
                }

                script.src = s.url;

                // Attach handlers for all browsers
                script.onload = script.onreadystatechange = function( _, isAbort ) {

                    if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {

                        // Handle memory leak in IE
                        script.onload = script.onreadystatechange = null;

                        // Remove the script
                        if ( script.parentNode ) {
                            script.parentNode.removeChild( script );
                        }

                        // Dereference the script
                        script = null;

                        // Callback if not abort
                        if ( !isAbort ) {
                            callback( 200, "success" );
                        }
                    }
                };

                // Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending
                // Use native DOM manipulation to avoid our domManip AJAX trickery
                head.insertBefore( script, head.firstChild );
            },

            abort: function() {
                if ( script ) {
                    script.onload( undefined, true );
                }
            }
        };
    }
});
var oldCallbacks = [],
    rjsonp = /(=)\?(?=&|$)|\?\?/;

// Default jsonp settings
jQuery.ajaxSetup({
    jsonp: "callback",
    jsonpCallback: function() {
        var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( ajax_nonce++ ) );
        this[ callback ] = true;
        return callback;
    }
});

// Detect, normalize options and install callbacks for jsonp requests
jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {

    var callbackName, overwritten, responseContainer,
        jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
            "url" :
            typeof s.data === "string" && !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && rjsonp.test( s.data ) && "data"
        );

    // Handle iff the expected data type is "jsonp" or we have a parameter to set
    if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {

        // Get callback name, remembering preexisting value associated with it
        callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
            s.jsonpCallback() :
            s.jsonpCallback;

        // Insert callback into url or form data
        if ( jsonProp ) {
            s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
        } else if ( s.jsonp !== false ) {
            s.url += ( ajax_rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
        }

        // Use data converter to retrieve json after script execution
        s.converters["script json"] = function() {
            if ( !responseContainer ) {
                jQuery.error( callbackName + " was not called" );
            }
            return responseContainer[ 0 ];
        };

        // force json dataType
        s.dataTypes[ 0 ] = "json";

        // Install callback
        overwritten = window[ callbackName ];
        window[ callbackName ] = function() {
            responseContainer = arguments;
        };

        // Clean-up function (fires after converters)
        jqXHR.always(function() {
            // Restore preexisting value
            window[ callbackName ] = overwritten;

            // Save back as free
            if ( s[ callbackName ] ) {
                // make sure that re-using the options doesn't screw things around
                s.jsonpCallback = originalSettings.jsonpCallback;

                // save the callback name for future use
                oldCallbacks.push( callbackName );
            }

            // Call if it was a function and we have a response
            if ( responseContainer && jQuery.isFunction( overwritten ) ) {
                overwritten( responseContainer[ 0 ] );
            }

            responseContainer = overwritten = undefined;
        });

        // Delegate to script
        return "script";
    }
});
var xhrCallbacks, xhrSupported,
    xhrId = 0,
    // #5280: Internet Explorer will keep connections alive if we don't abort on unload
    xhrOnUnloadAbort = window.ActiveXObject && function() {
        // Abort all pending requests
        var key;
        for ( key in xhrCallbacks ) {
            xhrCallbacks[ key ]( undefined, true );
        }
    };

// Functions to create xhrs
function createStandardXHR() {
    try {
        return new window.XMLHttpRequest();
    } catch( e ) {}
}

function createActiveXHR() {
    try {
        return new window.ActiveXObject("Microsoft.XMLHTTP");
    } catch( e ) {}
}

// Create the request object
// (This is still attached to ajaxSettings for backward compatibility)
jQuery.ajaxSettings.xhr = window.ActiveXObject ?
    /* Microsoft failed to properly
     * implement the XMLHttpRequest in IE7 (can't request local files),
     * so we use the ActiveXObject when it is available
     * Additionally XMLHttpRequest can be disabled in IE7/IE8 so
     * we need a fallback.
     */
    function() {
        return !this.isLocal && createStandardXHR() || createActiveXHR();
    } :
    // For all other browsers, use the standard XMLHttpRequest object
    createStandardXHR;

// Determine support properties
xhrSupported = jQuery.ajaxSettings.xhr();
jQuery.support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
xhrSupported = jQuery.support.ajax = !!xhrSupported;

// Create transport if the browser can provide an xhr
if ( xhrSupported ) {

    jQuery.ajaxTransport(function( s ) {
        // Cross domain only allowed if supported through XMLHttpRequest
        if ( !s.crossDomain || jQuery.support.cors ) {

            var callback;

            return {
                send: function( headers, complete ) {

                    // Get a new xhr
                    var handle, i,
                        xhr = s.xhr();

                    // Open the socket
                    // Passing null username, generates a login popup on Opera (#2865)
                    if ( s.username ) {
                        xhr.open( s.type, s.url, s.async, s.username, s.password );
                    } else {
                        xhr.open( s.type, s.url, s.async );
                    }

                    // Apply custom fields if provided
                    if ( s.xhrFields ) {
                        for ( i in s.xhrFields ) {
                            xhr[ i ] = s.xhrFields[ i ];
                        }
                    }

                    // Override mime type if needed
                    if ( s.mimeType && xhr.overrideMimeType ) {
                        xhr.overrideMimeType( s.mimeType );
                    }

                    // X-Requested-With header
                    // For cross-domain requests, seeing as conditions for a preflight are
                    // akin to a jigsaw puzzle, we simply never set it to be sure.
                    // (it can always be set on a per-request basis or even using ajaxSetup)
                    // For same-domain requests, won't change header if already provided.
                    if ( !s.crossDomain && !headers["X-Requested-With"] ) {
                        headers["X-Requested-With"] = "XMLHttpRequest";
                    }

                    // Need an extra try/catch for cross domain requests in Firefox 3
                    try {
                        for ( i in headers ) {
                            xhr.setRequestHeader( i, headers[ i ] );
                        }
                    } catch( err ) {}

                    // Do send the request
                    // This may raise an exception which is actually
                    // handled in jQuery.ajax (so no try/catch here)
                    xhr.send( ( s.hasContent && s.data ) || null );

                    // Listener
                    callback = function( _, isAbort ) {
                        var status, responseHeaders, statusText, responses;

                        // Firefox throws exceptions when accessing properties
                        // of an xhr when a network error occurred
                        // http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE)
                        try {

                            // Was never called and is aborted or complete
                            if ( callback && ( isAbort || xhr.readyState === 4 ) ) {

                                // Only called once
                                callback = undefined;

                                // Do not keep as active anymore
                                if ( handle ) {
                                    xhr.onreadystatechange = jQuery.noop;
                                    if ( xhrOnUnloadAbort ) {
                                        delete xhrCallbacks[ handle ];
                                    }
                                }

                                // If it's an abort
                                if ( isAbort ) {
                                    // Abort it manually if needed
                                    if ( xhr.readyState !== 4 ) {
                                        xhr.abort();
                                    }
                                } else {
                                    responses = {};
                                    status = xhr.status;
                                    responseHeaders = xhr.getAllResponseHeaders();

                                    // When requesting binary data, IE6-9 will throw an exception
                                    // on any attempt to access responseText (#11426)
                                    if ( typeof xhr.responseText === "string" ) {
                                        responses.text = xhr.responseText;
                                    }

                                    // Firefox throws an exception when accessing
                                    // statusText for faulty cross-domain requests
                                    try {
                                        statusText = xhr.statusText;
                                    } catch( e ) {
                                        // We normalize with Webkit giving an empty statusText
                                        statusText = "";
                                    }

                                    // Filter status for non standard behaviors

                                    // If the request is local and we have data: assume a success
                                    // (success with no data won't get notified, that's the best we
                                    // can do given current implementations)
                                    if ( !status && s.isLocal && !s.crossDomain ) {
                                        status = responses.text ? 200 : 404;
                                    // IE - #1450: sometimes returns 1223 when it should be 204
                                    } else if ( status === 1223 ) {
                                        status = 204;
                                    }
                                }
                            }
                        } catch( firefoxAccessException ) {
                            if ( !isAbort ) {
                                complete( -1, firefoxAccessException );
                            }
                        }

                        // Call complete if needed
                        if ( responses ) {
                            complete( status, statusText, responses, responseHeaders );
                        }
                    };

                    if ( !s.async ) {
                        // if we're in sync mode we fire the callback
                        callback();
                    } else if ( xhr.readyState === 4 ) {
                        // (IE6 & IE7) if it's in cache and has been
                        // retrieved directly we need to fire the callback
                        setTimeout( callback );
                    } else {
                        handle = ++xhrId;
                        if ( xhrOnUnloadAbort ) {
                            // Create the active xhrs callbacks list if needed
                            // and attach the unload handler
                            if ( !xhrCallbacks ) {
                                xhrCallbacks = {};
                                jQuery( window ).unload( xhrOnUnloadAbort );
                            }
                            // Add to list of active xhrs callbacks
                            xhrCallbacks[ handle ] = callback;
                        }
                        xhr.onreadystatechange = callback;
                    }
                },

                abort: function() {
                    if ( callback ) {
                        callback( undefined, true );
                    }
                }
            };
        }
    });
}
var fxNow, timerId,
    rfxtypes = /^(?:toggle|show|hide)$/,
    rfxnum = new RegExp( "^(?:([+-])=|)(" + core_pnum + ")([a-z%]*)$", "i" ),
    rrun = /queueHooks$/,
    animationPrefilters = [ defaultPrefilter ],
    tweeners = {
        "*": [function( prop, value ) {
            var end, unit,
                tween = this.createTween( prop, value ),
                parts = rfxnum.exec( value ),
                target = tween.cur(),
                start = +target || 0,
                scale = 1,
                maxIterations = 20;

            if ( parts ) {
                end = +parts[2];
                unit = parts[3] || ( jQuery.cssNumber[ prop ] ? "" : "px" );

                // We need to compute starting value
                if ( unit !== "px" && start ) {
                    // Iteratively approximate from a nonzero starting point
                    // Prefer the current property, because this process will be trivial if it uses the same units
                    // Fallback to end or a simple constant
                    start = jQuery.css( tween.elem, prop, true ) || end || 1;

                    do {
                        // If previous iteration zeroed out, double until we get *something*
                        // Use a string for doubling factor so we don't accidentally see scale as unchanged below
                        scale = scale || ".5";

                        // Adjust and apply
                        start = start / scale;
                        jQuery.style( tween.elem, prop, start + unit );

                    // Update scale, tolerating zero or NaN from tween.cur()
                    // And breaking the loop if scale is unchanged or perfect, or if we've just had enough
                    } while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
                }

                tween.unit = unit;
                tween.start = start;
                // If a +=/-= token was provided, we're doing a relative animation
                tween.end = parts[1] ? start + ( parts[1] + 1 ) * end : end;
            }
            return tween;
        }]
    };

// Animations created synchronously will run synchronously
function createFxNow() {
    setTimeout(function() {
        fxNow = undefined;
    });
    return ( fxNow = jQuery.now() );
}

function createTweens( animation, props ) {
    jQuery.each( props, function( prop, value ) {
        var collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
            index = 0,
            length = collection.length;
        for ( ; index < length; index++ ) {
            if ( collection[ index ].call( animation, prop, value ) ) {

                // we're done with this property
                return;
            }
        }
    });
}

function Animation( elem, properties, options ) {
    var result,
        stopped,
        index = 0,
        length = animationPrefilters.length,
        deferred = jQuery.Deferred().always( function() {
            // don't match elem in the :animated selector
            delete tick.elem;
        }),
        tick = function() {
            if ( stopped ) {
                return false;
            }
            var currentTime = fxNow || createFxNow(),
                remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
                // archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)
                temp = remaining / animation.duration || 0,
                percent = 1 - temp,
                index = 0,
                length = animation.tweens.length;

            for ( ; index < length ; index++ ) {
                animation.tweens[ index ].run( percent );
            }

            deferred.notifyWith( elem, [ animation, percent, remaining ]);

            if ( percent < 1 && length ) {
                return remaining;
            } else {
                deferred.resolveWith( elem, [ animation ] );
                return false;
            }
        },
        animation = deferred.promise({
            elem: elem,
            props: jQuery.extend( {}, properties ),
            opts: jQuery.extend( true, { specialEasing: {} }, options ),
            originalProperties: properties,
            originalOptions: options,
            startTime: fxNow || createFxNow(),
            duration: options.duration,
            tweens: [],
            createTween: function( prop, end ) {
                var tween = jQuery.Tween( elem, animation.opts, prop, end,
                        animation.opts.specialEasing[ prop ] || animation.opts.easing );
                animation.tweens.push( tween );
                return tween;
            },
            stop: function( gotoEnd ) {
                var index = 0,
                    // if we are going to the end, we want to run all the tweens
                    // otherwise we skip this part
                    length = gotoEnd ? animation.tweens.length : 0;
                if ( stopped ) {
                    return this;
                }
                stopped = true;
                for ( ; index < length ; index++ ) {
                    animation.tweens[ index ].run( 1 );
                }

                // resolve when we played the last frame
                // otherwise, reject
                if ( gotoEnd ) {
                    deferred.resolveWith( elem, [ animation, gotoEnd ] );
                } else {
                    deferred.rejectWith( elem, [ animation, gotoEnd ] );
                }
                return this;
            }
        }),
        props = animation.props;

    propFilter( props, animation.opts.specialEasing );

    for ( ; index < length ; index++ ) {
        result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
        if ( result ) {
            return result;
        }
    }

    createTweens( animation, props );

    if ( jQuery.isFunction( animation.opts.start ) ) {
        animation.opts.start.call( elem, animation );
    }

    jQuery.fx.timer(
        jQuery.extend( tick, {
            elem: elem,
            anim: animation,
            queue: animation.opts.queue
        })
    );

    // attach callbacks from options
    return animation.progress( animation.opts.progress )
        .done( animation.opts.done, animation.opts.complete )
        .fail( animation.opts.fail )
        .always( animation.opts.always );
}

function propFilter( props, specialEasing ) {
    var value, name, index, easing, hooks;

    // camelCase, specialEasing and expand cssHook pass
    for ( index in props ) {
        name = jQuery.camelCase( index );
        easing = specialEasing[ name ];
        value = props[ index ];
        if ( jQuery.isArray( value ) ) {
            easing = value[ 1 ];
            value = props[ index ] = value[ 0 ];
        }

        if ( index !== name ) {
            props[ name ] = value;
            delete props[ index ];
        }

        hooks = jQuery.cssHooks[ name ];
        if ( hooks && "expand" in hooks ) {
            value = hooks.expand( value );
            delete props[ name ];

            // not quite $.extend, this wont overwrite keys already present.
            // also - reusing 'index' from above because we have the correct "name"
            for ( index in value ) {
                if ( !( index in props ) ) {
                    props[ index ] = value[ index ];
                    specialEasing[ index ] = easing;
                }
            }
        } else {
            specialEasing[ name ] = easing;
        }
    }
}

jQuery.Animation = jQuery.extend( Animation, {

    tweener: function( props, callback ) {
        if ( jQuery.isFunction( props ) ) {
            callback = props;
            props = [ "*" ];
        } else {
            props = props.split(" ");
        }

        var prop,
            index = 0,
            length = props.length;

        for ( ; index < length ; index++ ) {
            prop = props[ index ];
            tweeners[ prop ] = tweeners[ prop ] || [];
            tweeners[ prop ].unshift( callback );
        }
    },

    prefilter: function( callback, prepend ) {
        if ( prepend ) {
            animationPrefilters.unshift( callback );
        } else {
            animationPrefilters.push( callback );
        }
    }
});

function defaultPrefilter( elem, props, opts ) {
    /*jshint validthis:true */
    var prop, index, length,
        value, dataShow, toggle,
        tween, hooks, oldfire,
        anim = this,
        style = elem.style,
        orig = {},
        handled = [],
        hidden = elem.nodeType && isHidden( elem );

    // handle queue: false promises
    if ( !opts.queue ) {
        hooks = jQuery._queueHooks( elem, "fx" );
        if ( hooks.unqueued == null ) {
            hooks.unqueued = 0;
            oldfire = hooks.empty.fire;
            hooks.empty.fire = function() {
                if ( !hooks.unqueued ) {
                    oldfire();
                }
            };
        }
        hooks.unqueued++;

        anim.always(function() {
            // doing this makes sure that the complete handler will be called
            // before this completes
            anim.always(function() {
                hooks.unqueued--;
                if ( !jQuery.queue( elem, "fx" ).length ) {
                    hooks.empty.fire();
                }
            });
        });
    }

    // height/width overflow pass
    if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
        // Make sure that nothing sneaks out
        // Record all 3 overflow attributes because IE does not
        // change the overflow attribute when overflowX and
        // overflowY are set to the same value
        opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];

        // Set display property to inline-block for height/width
        // animations on inline elements that are having width/height animated
        if ( jQuery.css( elem, "display" ) === "inline" &&
                jQuery.css( elem, "float" ) === "none" ) {

            // inline-level elements accept inline-block;
            // block-level elements need to be inline with layout
            if ( !jQuery.support.inlineBlockNeedsLayout || css_defaultDisplay( elem.nodeName ) === "inline" ) {
                style.display = "inline-block";

            } else {
                style.zoom = 1;
            }
        }
    }

    if ( opts.overflow ) {
        style.overflow = "hidden";
        if ( !jQuery.support.shrinkWrapBlocks ) {
            anim.always(function() {
                style.overflow = opts.overflow[ 0 ];
                style.overflowX = opts.overflow[ 1 ];
                style.overflowY = opts.overflow[ 2 ];
            });
        }
    }


    // show/hide pass
    for ( index in props ) {
        value = props[ index ];
        if ( rfxtypes.exec( value ) ) {
            delete props[ index ];
            toggle = toggle || value === "toggle";
            if ( value === ( hidden ? "hide" : "show" ) ) {
                continue;
            }
            handled.push( index );
        }
    }

    length = handled.length;
    if ( length ) {
        dataShow = jQuery._data( elem, "fxshow" ) || jQuery._data( elem, "fxshow", {} );
        if ( "hidden" in dataShow ) {
            hidden = dataShow.hidden;
        }

        // store state if its toggle - enables .stop().toggle() to "reverse"
        if ( toggle ) {
            dataShow.hidden = !hidden;
        }
        if ( hidden ) {
            jQuery( elem ).show();
        } else {
            anim.done(function() {
                jQuery( elem ).hide();
            });
        }
        anim.done(function() {
            var prop;
            jQuery._removeData( elem, "fxshow" );
            for ( prop in orig ) {
                jQuery.style( elem, prop, orig[ prop ] );
            }
        });
        for ( index = 0 ; index < length ; index++ ) {
            prop = handled[ index ];
            tween = anim.createTween( prop, hidden ? dataShow[ prop ] : 0 );
            orig[ prop ] = dataShow[ prop ] || jQuery.style( elem, prop );

            if ( !( prop in dataShow ) ) {
                dataShow[ prop ] = tween.start;
                if ( hidden ) {
                    tween.end = tween.start;
                    tween.start = prop === "width" || prop === "height" ? 1 : 0;
                }
            }
        }
    }
}

function Tween( elem, options, prop, end, easing ) {
    return new Tween.prototype.init( elem, options, prop, end, easing );
}
jQuery.Tween = Tween;

Tween.prototype = {
    constructor: Tween,
    init: function( elem, options, prop, end, easing, unit ) {
        this.elem = elem;
        this.prop = prop;
        this.easing = easing || "swing";
        this.options = options;
        this.start = this.now = this.cur();
        this.end = end;
        this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
    },
    cur: function() {
        var hooks = Tween.propHooks[ this.prop ];

        return hooks && hooks.get ?
            hooks.get( this ) :
            Tween.propHooks._default.get( this );
    },
    run: function( percent ) {
        var eased,
            hooks = Tween.propHooks[ this.prop ];

        if ( this.options.duration ) {
            this.pos = eased = jQuery.easing[ this.easing ](
                percent, this.options.duration * percent, 0, 1, this.options.duration
            );
        } else {
            this.pos = eased = percent;
        }
        this.now = ( this.end - this.start ) * eased + this.start;

        if ( this.options.step ) {
            this.options.step.call( this.elem, this.now, this );
        }

        if ( hooks && hooks.set ) {
            hooks.set( this );
        } else {
            Tween.propHooks._default.set( this );
        }
        return this;
    }
};

Tween.prototype.init.prototype = Tween.prototype;

Tween.propHooks = {
    _default: {
        get: function( tween ) {
            var result;

            if ( tween.elem[ tween.prop ] != null &&
                (!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {
                return tween.elem[ tween.prop ];
            }

            // passing an empty string as a 3rd parameter to .css will automatically
            // attempt a parseFloat and fallback to a string if the parse fails
            // so, simple values such as "10px" are parsed to Float.
            // complex values such as "rotate(1rad)" are returned as is.
            result = jQuery.css( tween.elem, tween.prop, "" );
            // Empty strings, null, undefined and "auto" are converted to 0.
            return !result || result === "auto" ? 0 : result;
        },
        set: function( tween ) {
            // use step hook for back compat - use cssHook if its there - use .style if its
            // available and use plain properties where available
            if ( jQuery.fx.step[ tween.prop ] ) {
                jQuery.fx.step[ tween.prop ]( tween );
            } else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {
                jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
            } else {
                tween.elem[ tween.prop ] = tween.now;
            }
        }
    }
};

// Remove in 2.0 - this supports IE8's panic based approach
// to setting things on disconnected nodes

Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
    set: function( tween ) {
        if ( tween.elem.nodeType && tween.elem.parentNode ) {
            tween.elem[ tween.prop ] = tween.now;
        }
    }
};

jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
    var cssFn = jQuery.fn[ name ];
    jQuery.fn[ name ] = function( speed, easing, callback ) {
        return speed == null || typeof speed === "boolean" ?
            cssFn.apply( this, arguments ) :
            this.animate( genFx( name, true ), speed, easing, callback );
    };
});

jQuery.fn.extend({
    fadeTo: function( speed, to, easing, callback ) {

        // show any hidden elements after setting opacity to 0
        return this.filter( isHidden ).css( "opacity", 0 ).show()

            // animate to the value specified
            .end().animate({ opacity: to }, speed, easing, callback );
    },
    animate: function( prop, speed, easing, callback ) {
        var empty = jQuery.isEmptyObject( prop ),
            optall = jQuery.speed( speed, easing, callback ),
            doAnimation = function() {
                // Operate on a copy of prop so per-property easing won't be lost
                var anim = Animation( this, jQuery.extend( {}, prop ), optall );
                doAnimation.finish = function() {
                    anim.stop( true );
                };
                // Empty animations, or finishing resolves immediately
                if ( empty || jQuery._data( this, "finish" ) ) {
                    anim.stop( true );
                }
            };
            doAnimation.finish = doAnimation;

        return empty || optall.queue === false ?
            this.each( doAnimation ) :
            this.queue( optall.queue, doAnimation );
    },
    stop: function( type, clearQueue, gotoEnd ) {
        var stopQueue = function( hooks ) {
            var stop = hooks.stop;
            delete hooks.stop;
            stop( gotoEnd );
        };

        if ( typeof type !== "string" ) {
            gotoEnd = clearQueue;
            clearQueue = type;
            type = undefined;
        }
        if ( clearQueue && type !== false ) {
            this.queue( type || "fx", [] );
        }

        return this.each(function() {
            var dequeue = true,
                index = type != null && type + "queueHooks",
                timers = jQuery.timers,
                data = jQuery._data( this );

            if ( index ) {
                if ( data[ index ] && data[ index ].stop ) {
                    stopQueue( data[ index ] );
                }
            } else {
                for ( index in data ) {
                    if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
                        stopQueue( data[ index ] );
                    }
                }
            }

            for ( index = timers.length; index--; ) {
                if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
                    timers[ index ].anim.stop( gotoEnd );
                    dequeue = false;
                    timers.splice( index, 1 );
                }
            }

            // start the next in the queue if the last step wasn't forced
            // timers currently will call their complete callbacks, which will dequeue
            // but only if they were gotoEnd
            if ( dequeue || !gotoEnd ) {
                jQuery.dequeue( this, type );
            }
        });
    },
    finish: function( type ) {
        if ( type !== false ) {
            type = type || "fx";
        }
        return this.each(function() {
            var index,
                data = jQuery._data( this ),
                queue = data[ type + "queue" ],
                hooks = data[ type + "queueHooks" ],
                timers = jQuery.timers,
                length = queue ? queue.length : 0;

            // enable finishing flag on private data
            data.finish = true;

            // empty the queue first
            jQuery.queue( this, type, [] );

            if ( hooks && hooks.cur && hooks.cur.finish ) {
                hooks.cur.finish.call( this );
            }

            // look for any active animations, and finish them
            for ( index = timers.length; index--; ) {
                if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
                    timers[ index ].anim.stop( true );
                    timers.splice( index, 1 );
                }
            }

            // look for any animations in the old queue and finish them
            for ( index = 0; index < length; index++ ) {
                if ( queue[ index ] && queue[ index ].finish ) {
                    queue[ index ].finish.call( this );
                }
            }

            // turn off finishing flag
            delete data.finish;
        });
    }
});

// Generate parameters to create a standard animation
function genFx( type, includeWidth ) {
    var which,
        attrs = { height: type },
        i = 0;

    // if we include width, step value is 1 to do all cssExpand values,
    // if we don't include width, step value is 2 to skip over Left and Right
    includeWidth = includeWidth? 1 : 0;
    for( ; i < 4 ; i += 2 - includeWidth ) {
        which = cssExpand[ i ];
        attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
    }

    if ( includeWidth ) {
        attrs.opacity = attrs.width = type;
    }

    return attrs;
}

// Generate shortcuts for custom animations
jQuery.each({
    slideDown: genFx("show"),
    slideUp: genFx("hide"),
    slideToggle: genFx("toggle"),
    fadeIn: { opacity: "show" },
    fadeOut: { opacity: "hide" },
    fadeToggle: { opacity: "toggle" }
}, function( name, props ) {
    jQuery.fn[ name ] = function( speed, easing, callback ) {
        return this.animate( props, speed, easing, callback );
    };
});

jQuery.speed = function( speed, easing, fn ) {
    var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
        complete: fn || !fn && easing ||
            jQuery.isFunction( speed ) && speed,
        duration: speed,
        easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
    };

    opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
        opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;

    // normalize opt.queue - true/undefined/null -> "fx"
    if ( opt.queue == null || opt.queue === true ) {
        opt.queue = "fx";
    }

    // Queueing
    opt.old = opt.complete;

    opt.complete = function() {
        if ( jQuery.isFunction( opt.old ) ) {
            opt.old.call( this );
        }

        if ( opt.queue ) {
            jQuery.dequeue( this, opt.queue );
        }
    };

    return opt;
};

jQuery.easing = {
    linear: function( p ) {
        return p;
    },
    swing: function( p ) {
        return 0.5 - Math.cos( p*Math.PI ) / 2;
    }
};

jQuery.timers = [];
jQuery.fx = Tween.prototype.init;
jQuery.fx.tick = function() {
    var timer,
        timers = jQuery.timers,
        i = 0;

    fxNow = jQuery.now();

    for ( ; i < timers.length; i++ ) {
        timer = timers[ i ];
        // Checks the timer has not already been removed
        if ( !timer() && timers[ i ] === timer ) {
            timers.splice( i--, 1 );
        }
    }

    if ( !timers.length ) {
        jQuery.fx.stop();
    }
    fxNow = undefined;
};

jQuery.fx.timer = function( timer ) {
    if ( timer() && jQuery.timers.push( timer ) ) {
        jQuery.fx.start();
    }
};

jQuery.fx.interval = 13;

jQuery.fx.start = function() {
    if ( !timerId ) {
        timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
    }
};

jQuery.fx.stop = function() {
    clearInterval( timerId );
    timerId = null;
};

jQuery.fx.speeds = {
    slow: 600,
    fast: 200,
    // Default speed
    _default: 400
};

// Back Compat <1.8 extension point
jQuery.fx.step = {};

if ( jQuery.expr && jQuery.expr.filters ) {
    jQuery.expr.filters.animated = function( elem ) {
        return jQuery.grep(jQuery.timers, function( fn ) {
            return elem === fn.elem;
        }).length;
    };
}
jQuery.fn.offset = function( options ) {
    if ( arguments.length ) {
        return options === undefined ?
            this :
            this.each(function( i ) {
                jQuery.offset.setOffset( this, options, i );
            });
    }

    var docElem, win,
        box = { top: 0, left: 0 },
        elem = this[ 0 ],
        doc = elem && elem.ownerDocument;

    if ( !doc ) {
        return;
    }

    docElem = doc.documentElement;

    // Make sure it's not a disconnected DOM node
    if ( !jQuery.contains( docElem, elem ) ) {
        return box;
    }

    // If we don't have gBCR, just use 0,0 rather than error
    // BlackBerry 5, iOS 3 (original iPhone)
    if ( typeof elem.getBoundingClientRect !== core_strundefined ) {
        box = elem.getBoundingClientRect();
    }
    win = getWindow( doc );
    return {
        top: box.top  + ( win.pageYOffset || docElem.scrollTop )  - ( docElem.clientTop  || 0 ),
        left: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )
    };
};

jQuery.offset = {

    setOffset: function( elem, options, i ) {
        var position = jQuery.css( elem, "position" );

        // set position first, in-case top/left are set even on static elem
        if ( position === "static" ) {
            elem.style.position = "relative";
        }

        var curElem = jQuery( elem ),
            curOffset = curElem.offset(),
            curCSSTop = jQuery.css( elem, "top" ),
            curCSSLeft = jQuery.css( elem, "left" ),
            calculatePosition = ( position === "absolute" || position === "fixed" ) && jQuery.inArray("auto", [curCSSTop, curCSSLeft]) > -1,
            props = {}, curPosition = {}, curTop, curLeft;

        // need to be able to calculate position if either top or left is auto and position is either absolute or fixed
        if ( calculatePosition ) {
            curPosition = curElem.position();
            curTop = curPosition.top;
            curLeft = curPosition.left;
        } else {
            curTop = parseFloat( curCSSTop ) || 0;
            curLeft = parseFloat( curCSSLeft ) || 0;
        }

        if ( jQuery.isFunction( options ) ) {
            options = options.call( elem, i, curOffset );
        }

        if ( options.top != null ) {
            props.top = ( options.top - curOffset.top ) + curTop;
        }
        if ( options.left != null ) {
            props.left = ( options.left - curOffset.left ) + curLeft;
        }

        if ( "using" in options ) {
            options.using.call( elem, props );
        } else {
            curElem.css( props );
        }
    }
};


jQuery.fn.extend({

    position: function() {
        if ( !this[ 0 ] ) {
            return;
        }

        var offsetParent, offset,
            parentOffset = { top: 0, left: 0 },
            elem = this[ 0 ];

        // fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is it's only offset parent
        if ( jQuery.css( elem, "position" ) === "fixed" ) {
            // we assume that getBoundingClientRect is available when computed position is fixed
            offset = elem.getBoundingClientRect();
        } else {
            // Get *real* offsetParent
            offsetParent = this.offsetParent();

            // Get correct offsets
            offset = this.offset();
            if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) {
                parentOffset = offsetParent.offset();
            }

            // Add offsetParent borders
            parentOffset.top  += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true );
            parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true );
        }

        // Subtract parent offsets and element margins
        // note: when an element has margin: auto the offsetLeft and marginLeft
        // are the same in Safari causing offset.left to incorrectly be 0
        return {
            top:  offset.top  - parentOffset.top - jQuery.css( elem, "marginTop", true ),
            left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true)
        };
    },

    offsetParent: function() {
        return this.map(function() {
            var offsetParent = this.offsetParent || document.documentElement;
            while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && jQuery.css( offsetParent, "position") === "static" ) ) {
                offsetParent = offsetParent.offsetParent;
            }
            return offsetParent || document.documentElement;
        });
    }
});


// Create scrollLeft and scrollTop methods
jQuery.each( {scrollLeft: "pageXOffset", scrollTop: "pageYOffset"}, function( method, prop ) {
    var top = /Y/.test( prop );

    jQuery.fn[ method ] = function( val ) {
        return jQuery.access( this, function( elem, method, val ) {
            var win = getWindow( elem );

            if ( val === undefined ) {
                return win ? (prop in win) ? win[ prop ] :
                    win.document.documentElement[ method ] :
                    elem[ method ];
            }

            if ( win ) {
                win.scrollTo(
                    !top ? val : jQuery( win ).scrollLeft(),
                    top ? val : jQuery( win ).scrollTop()
                );

            } else {
                elem[ method ] = val;
            }
        }, method, val, arguments.length, null );
    };
});

function getWindow( elem ) {
    return jQuery.isWindow( elem ) ?
        elem :
        elem.nodeType === 9 ?
            elem.defaultView || elem.parentWindow :
            false;
}
// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
    jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) {
        // margin is only for outerHeight, outerWidth
        jQuery.fn[ funcName ] = function( margin, value ) {
            var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
                extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );

            return jQuery.access( this, function( elem, type, value ) {
                var doc;

                if ( jQuery.isWindow( elem ) ) {
                    // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
                    // isn't a whole lot we can do. See pull request at this URL for discussion:
                    // https://github.com/jquery/jquery/pull/764
                    return elem.document.documentElement[ "client" + name ];
                }

                // Get document width or height
                if ( elem.nodeType === 9 ) {
                    doc = elem.documentElement;

                    // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest
                    // unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.
                    return Math.max(
                        elem.body[ "scroll" + name ], doc[ "scroll" + name ],
                        elem.body[ "offset" + name ], doc[ "offset" + name ],
                        doc[ "client" + name ]
                    );
                }

                return value === undefined ?
                    // Get width or height on the element, requesting but not forcing parseFloat
                    jQuery.css( elem, type, extra ) :

                    // Set width or height on the element
                    jQuery.style( elem, type, value, extra );
            }, type, chainable ? margin : undefined, chainable, null );
        };
    });
});
// Limit scope pollution from any deprecated API
// (function() {

// })();
// Expose jQuery to the global object
window.jQuery = window.$ = jQuery;

// Expose jQuery as an AMD module, but only for AMD loaders that
// understand the issues with loading multiple versions of jQuery
// in a page that all might call define(). The loader will indicate
// they have special allowances for multiple jQuery versions by
// specifying define.amd.jQuery = true. Register as a named module,
// since jQuery can be concatenated with other files that may use define,
// but not use a proper concatenation script that understands anonymous
// AMD modules. A named AMD is safest and most robust way to register.
// Lowercase jquery is used because AMD module names are derived from
// file names, and jQuery is normally delivered in a lowercase file name.
// Do this after creating the global so that if an AMD module wants to call
// noConflict to hide this version of jQuery, it will work.
if ( typeof define === "function" && define.amd && define.amd.jQuery ) {
    define( "jquery", [], function () { return jQuery; } );
}

})( window );
</script>

<script language="javascript">
/*
 Highcharts JS v7.1.2 (2019-06-03)

 (c) 2009-2018 Torstein Honsi

 License: www.highcharts.com/license
*/
(function(O,J){"object"===typeof module&&module.exports?(J["default"]=J,module.exports=O.document?J(O):J):"function"===typeof define&&define.amd?define("highcharts/highcharts",function(){return J(O)}):(O.Highcharts&&O.Highcharts.error(16,!0),O.Highcharts=J(O))})("undefined"!==typeof window?window:this,function(O){function J(a,E,H,B){a.hasOwnProperty(E)||(a[E]=B.apply(null,H))}var G={};J(G,"parts/Globals.js",[],function(){var a="undefined"===typeof O?"undefined"!==typeof window?window:{}:O,E=a.document,
H=a.navigator&&a.navigator.userAgent||"",B=E&&E.createElementNS&&!!E.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect,h=/(edge|msie|trident)/i.test(H)&&!a.opera,e=-1!==H.indexOf("Firefox"),q=-1!==H.indexOf("Chrome"),t=e&&4>parseInt(H.split("Firefox/")[1],10);return{product:"Highcharts",version:"7.1.2",deg2rad:2*Math.PI/360,doc:E,hasBidiBug:t,hasTouch:E&&"undefined"!==typeof E.documentElement.ontouchstart,isMS:h,isWebKit:-1!==H.indexOf("AppleWebKit"),isFirefox:e,isChrome:q,isSafari:!q&&
-1!==H.indexOf("Safari"),isTouchDevice:/(Mobile|Android|Windows Phone)/.test(H),SVG_NS:"http://www.w3.org/2000/svg",chartCount:0,seriesTypes:{},symbolSizes:{},svg:B,win:a,marginNames:["plotTop","marginRight","marginBottom","plotLeft"],noop:function(){},charts:[],dateFormats:{}}});J(G,"parts/Utilities.js",[G["parts/Globals.js"]],function(a){a.timers=[];var E=a.charts,H=a.doc,B=a.win;a.error=function(h,e,q){var t=a.isNumber(h)?"Highcharts error #"+h+": www.highcharts.com/errors/"+h:h,u=function(){if(e)throw Error(t);
B.console&&console.log(t)};q?a.fireEvent(q,"displayError",{code:h,message:t},u):u()};a.Fx=function(a,e,q){this.options=e;this.elem=a;this.prop=q};a.Fx.prototype={dSetter:function(){var a=this.paths[0],e=this.paths[1],q=[],t=this.now,u=a.length,v;if(1===t)q=this.toD;else if(u===e.length&&1>t)for(;u--;)v=parseFloat(a[u]),q[u]=isNaN(v)?e[u]:t*parseFloat(e[u]-v)+v;else q=e;this.elem.attr("d",q,null,!0)},update:function(){var a=this.elem,e=this.prop,q=this.now,t=this.options.step;if(this[e+"Setter"])this[e+
"Setter"]();else a.attr?a.element&&a.attr(e,q,null,!0):a.style[e]=q+this.unit;t&&t.call(a,q,this)},run:function(h,e,q){var t=this,u=t.options,v=function(a){return v.stopped?!1:t.step(a)},n=B.requestAnimationFrame||function(a){setTimeout(a,13)},g=function(){for(var d=0;d<a.timers.length;d++)a.timers[d]()||a.timers.splice(d--,1);a.timers.length&&n(g)};h!==e||this.elem["forceAnimate:"+this.prop]?(this.startTime=+new Date,this.start=h,this.end=e,this.unit=q,this.now=this.start,this.pos=0,v.elem=this.elem,
v.prop=this.prop,v()&&1===a.timers.push(v)&&n(g)):(delete u.curAnim[this.prop],u.complete&&0===Object.keys(u.curAnim).length&&u.complete.call(this.elem))},step:function(h){var e=+new Date,q,t=this.options,u=this.elem,v=t.complete,n=t.duration,g=t.curAnim;u.attr&&!u.element?h=!1:h||e>=n+this.startTime?(this.now=this.end,this.pos=1,this.update(),q=g[this.prop]=!0,a.objectEach(g,function(a){!0!==a&&(q=!1)}),q&&v&&v.call(u),h=!1):(this.pos=t.easing((e-this.startTime)/n),this.now=this.start+(this.end-
this.start)*this.pos,this.update(),h=!0);return h},initPath:function(h,e,q){function t(a){var b,l;for(c=a.length;c--;)b="M"===a[c]||"L"===a[c],l=/[a-zA-Z]/.test(a[c+3]),b&&l&&a.splice(c+1,0,a[c+1],a[c+2],a[c+1],a[c+2])}function u(a,d){for(;a.length<k;){a[0]=d[k-a.length];var l=a.slice(0,b);[].splice.apply(a,[0,0].concat(l));x&&(l=a.slice(a.length-b),[].splice.apply(a,[a.length,0].concat(l)),c--)}a[0]="M"}function v(a,c){for(var l=(k-a.length)/b;0<l&&l--;)p=a.slice().splice(a.length/K-b,b*K),p[0]=
c[k-b-l*b],m&&(p[b-6]=p[b-2],p[b-5]=p[b-1]),[].splice.apply(a,[a.length/K,0].concat(p)),x&&l--}e=e||"";var n,g=h.startX,d=h.endX,m=-1<e.indexOf("C"),b=m?7:3,k,p,c;e=e.split(" ");q=q.slice();var x=h.isArea,K=x?2:1,w;m&&(t(e),t(q));if(g&&d){for(c=0;c<g.length;c++)if(g[c]===d[0]){n=c;break}else if(g[0]===d[d.length-g.length+c]){n=c;w=!0;break}else if(g[g.length-1]===d[d.length-g.length+c]){n=g.length-c;break}"undefined"===typeof n&&(e=[])}e.length&&a.isNumber(n)&&(k=q.length+n*K*b,w?(u(e,q),v(q,e)):
(u(q,e),v(e,q)));return[e,q]},fillSetter:function(){a.Fx.prototype.strokeSetter.apply(this,arguments)},strokeSetter:function(){this.elem.attr(this.prop,a.color(this.start).tweenTo(a.color(this.end),this.pos),null,!0)}};a.merge=function(){var h,e=arguments,q,t={},u=function(e,n){"object"!==typeof e&&(e={});a.objectEach(n,function(g,d){!a.isObject(g,!0)||a.isClass(g)||a.isDOMElement(g)?e[d]=n[d]:e[d]=u(e[d]||{},g)});return e};!0===e[0]&&(t=e[1],e=Array.prototype.slice.call(e,2));q=e.length;for(h=0;h<
q;h++)t=u(t,e[h]);return t};a.pInt=function(a,e){return parseInt(a,e||10)};a.isString=function(a){return"string"===typeof a};a.isArray=function(a){a=Object.prototype.toString.call(a);return"[object Array]"===a||"[object Array Iterator]"===a};a.isObject=function(h,e){return!!h&&"object"===typeof h&&(!e||!a.isArray(h))};a.isDOMElement=function(h){return a.isObject(h)&&"number"===typeof h.nodeType};a.isClass=function(h){var e=h&&h.constructor;return!(!a.isObject(h,!0)||a.isDOMElement(h)||!e||!e.name||
"Object"===e.name)};a.isNumber=function(a){return"number"===typeof a&&!isNaN(a)&&Infinity>a&&-Infinity<a};a.erase=function(a,e){for(var h=a.length;h--;)if(a[h]===e){a.splice(h,1);break}};a.defined=function(a){return"undefined"!==typeof a&&null!==a};a.attr=function(h,e,q){var t;a.isString(e)?a.defined(q)?h.setAttribute(e,q):h&&h.getAttribute&&((t=h.getAttribute(e))||"class"!==e||(t=h.getAttribute(e+"Name"))):a.defined(e)&&a.isObject(e)&&a.objectEach(e,function(a,e){h.setAttribute(e,a)});return t};
a.splat=function(h){return a.isArray(h)?h:[h]};a.syncTimeout=function(a,e,q){if(e)return setTimeout(a,e,q);a.call(0,q)};a.clearTimeout=function(h){a.defined(h)&&clearTimeout(h)};a.extend=function(a,e){var h;a||(a={});for(h in e)a[h]=e[h];return a};a.pick=function(){var a=arguments,e,q,t=a.length;for(e=0;e<t;e++)if(q=a[e],"undefined"!==typeof q&&null!==q)return q};a.css=function(h,e){a.isMS&&!a.svg&&e&&"undefined"!==typeof e.opacity&&(e.filter="alpha(opacity\x3d"+100*e.opacity+")");a.extend(h.style,
e)};a.createElement=function(h,e,q,t,u){h=H.createElement(h);var v=a.css;e&&a.extend(h,e);u&&v(h,{padding:"0",border:"none",margin:"0"});q&&v(h,q);t&&t.appendChild(h);return h};a.extendClass=function(h,e){var q=function(){};q.prototype=new h;a.extend(q.prototype,e);return q};a.pad=function(a,e,q){return Array((e||2)+1-String(a).replace("-","").length).join(q||"0")+a};a.relativeLength=function(a,e,q){return/%$/.test(a)?e*parseFloat(a)/100+(q||0):parseFloat(a)};a.wrap=function(a,e,q){var h=a[e];a[e]=
function(){var a=Array.prototype.slice.call(arguments),e=arguments,n=this;n.proceed=function(){h.apply(n,arguments.length?arguments:e)};a.unshift(h);a=q.apply(this,a);n.proceed=null;return a}};a.datePropsToTimestamps=function(h){a.objectEach(h,function(e,q){a.isObject(e)&&"function"===typeof e.getTime?h[q]=e.getTime():(a.isObject(e)||a.isArray(e))&&a.datePropsToTimestamps(e)})};a.formatSingle=function(h,e,q){var t=/\.([0-9])/,u=a.defaultOptions.lang;/f$/.test(h)?(q=(q=h.match(t))?q[1]:-1,null!==e&&
(e=a.numberFormat(e,q,u.decimalPoint,-1<h.indexOf(",")?u.thousandsSep:""))):e=(q||a.time).dateFormat(h,e);return e};a.format=function(h,e,q){for(var t="{",u=!1,v,n,g,d,m=[],b;h;){t=h.indexOf(t);if(-1===t)break;v=h.slice(0,t);if(u){v=v.split(":");n=v.shift().split(".");d=n.length;b=e;for(g=0;g<d;g++)b&&(b=b[n[g]]);v.length&&(b=a.formatSingle(v.join(":"),b,q));m.push(b)}else m.push(v);h=h.slice(t+1);t=(u=!u)?"}":"{"}m.push(h);return m.join("")};a.getMagnitude=function(a){return Math.pow(10,Math.floor(Math.log(a)/
Math.LN10))};a.normalizeTickInterval=function(h,e,q,t,u){var v,n=h;q=a.pick(q,1);v=h/q;e||(e=u?[1,1.2,1.5,2,2.5,3,4,5,6,8,10]:[1,2,2.5,5,10],!1===t&&(1===q?e=e.filter(function(a){return 0===a%1}):.1>=q&&(e=[1/q])));for(t=0;t<e.length&&!(n=e[t],u&&n*q>=h||!u&&v<=(e[t]+(e[t+1]||e[t]))/2);t++);return n=a.correctFloat(n*q,-Math.round(Math.log(.001)/Math.LN10))};a.stableSort=function(a,e){var h=a.length,t,u;for(u=0;u<h;u++)a[u].safeI=u;a.sort(function(a,n){t=e(a,n);return 0===t?a.safeI-n.safeI:t});for(u=
0;u<h;u++)delete a[u].safeI};a.arrayMin=function(a){for(var e=a.length,h=a[0];e--;)a[e]<h&&(h=a[e]);return h};a.arrayMax=function(a){for(var e=a.length,h=a[0];e--;)a[e]>h&&(h=a[e]);return h};a.destroyObjectProperties=function(h,e){a.objectEach(h,function(a,t){a&&a!==e&&a.destroy&&a.destroy();delete h[t]})};a.discardElement=function(h){var e=a.garbageBin;e||(e=a.createElement("div"));h&&e.appendChild(h);e.innerHTML=""};a.correctFloat=function(a,e){return parseFloat(a.toPrecision(e||14))};a.setAnimation=
function(h,e){e.renderer.globalAnimation=a.pick(h,e.options.chart.animation,!0)};a.animObject=function(h){return a.isObject(h)?a.merge(h):{duration:h?500:0}};a.timeUnits={millisecond:1,second:1E3,minute:6E4,hour:36E5,day:864E5,week:6048E5,month:24192E5,year:314496E5};a.numberFormat=function(h,e,q,t){h=+h||0;e=+e;var u=a.defaultOptions.lang,v=(h.toString().split(".")[1]||"").split("e")[0].length,n,g,d=h.toString().split("e");-1===e?e=Math.min(v,20):a.isNumber(e)?e&&d[1]&&0>d[1]&&(n=e+ +d[1],0<=n?(d[0]=
(+d[0]).toExponential(n).split("e")[0],e=n):(d[0]=d[0].split(".")[0]||0,h=20>e?(d[0]*Math.pow(10,d[1])).toFixed(e):0,d[1]=0)):e=2;g=(Math.abs(d[1]?d[0]:h)+Math.pow(10,-Math.max(e,v)-1)).toFixed(e);v=String(a.pInt(g));n=3<v.length?v.length%3:0;q=a.pick(q,u.decimalPoint);t=a.pick(t,u.thousandsSep);h=(0>h?"-":"")+(n?v.substr(0,n)+t:"");h+=v.substr(n).replace(/(\d{3})(?=\d)/g,"$1"+t);e&&(h+=q+g.slice(-e));d[1]&&0!==+h&&(h+="e"+d[1]);return h};Math.easeInOutSine=function(a){return-.5*(Math.cos(Math.PI*
a)-1)};a.getStyle=function(h,e,q){if("width"===e)return Math.max(0,Math.min(h.offsetWidth,h.scrollWidth,h.getBoundingClientRect&&"none"===a.getStyle(h,"transform",!1)?Math.floor(h.getBoundingClientRect().width):Infinity)-a.getStyle(h,"padding-left")-a.getStyle(h,"padding-right"));if("height"===e)return Math.max(0,Math.min(h.offsetHeight,h.scrollHeight)-a.getStyle(h,"padding-top")-a.getStyle(h,"padding-bottom"));B.getComputedStyle||a.error(27,!0);if(h=B.getComputedStyle(h,void 0))h=h.getPropertyValue(e),
a.pick(q,"opacity"!==e)&&(h=a.pInt(h));return h};a.inArray=function(a,e,q){return e.indexOf(a,q)};a.find=Array.prototype.find?function(a,e){return a.find(e)}:function(a,e){var h,t=a.length;for(h=0;h<t;h++)if(e(a[h],h))return a[h]};a.keys=Object.keys;a.offset=function(a){var e=H.documentElement;a=a.parentElement||a.parentNode?a.getBoundingClientRect():{top:0,left:0};return{top:a.top+(B.pageYOffset||e.scrollTop)-(e.clientTop||0),left:a.left+(B.pageXOffset||e.scrollLeft)-(e.clientLeft||0)}};a.stop=function(h,
e){for(var q=a.timers.length;q--;)a.timers[q].elem!==h||e&&e!==a.timers[q].prop||(a.timers[q].stopped=!0)};a.objectEach=function(a,e,q){for(var h in a)a.hasOwnProperty(h)&&e.call(q||a[h],a[h],h,a)};a.objectEach({map:"map",each:"forEach",grep:"filter",reduce:"reduce",some:"some"},function(h,e){a[e]=function(a){return Array.prototype[h].apply(a,[].slice.call(arguments,1))}});a.addEvent=function(h,e,q,t){void 0===t&&(t={});var u,v=h.addEventListener||a.addEventListenerPolyfill;u="function"===typeof h&&
h.prototype?h.prototype.protoEvents=h.prototype.protoEvents||{}:h.hcEvents=h.hcEvents||{};a.Point&&h instanceof a.Point&&h.series&&h.series.chart&&(h.series.chart.runTrackerClick=!0);v&&v.call(h,e,q,!1);u[e]||(u[e]=[]);u[e].push({fn:q,order:"number"===typeof t.order?t.order:Infinity});u[e].sort(function(a,g){return a.order-g.order});return function(){a.removeEvent(h,e,q)}};a.removeEvent=function(h,e,q){function t(n,g){var d=h.removeEventListener||a.removeEventListenerPolyfill;d&&d.call(h,n,g,!1)}
function u(n){var g,d;h.nodeName&&(e?(g={},g[e]=!0):g=n,a.objectEach(g,function(a,b){if(n[b])for(d=n[b].length;d--;)t(b,n[b][d].fn)}))}var v;["protoEvents","hcEvents"].forEach(function(a){var g=h[a];g&&(e?(v=g[e]||[],q?(g[e]=v.filter(function(a){return q!==a.fn}),t(e,q)):(u(g),g[e]=[])):(u(g),h[a]={}))})};a.fireEvent=function(h,e,q,t){var u,v;q=q||{};H.createEvent&&(h.dispatchEvent||h.fireEvent)?(u=H.createEvent("Events"),u.initEvent(e,!0,!0),a.extend(u,q),h.dispatchEvent?h.dispatchEvent(u):h.fireEvent(e,
u)):(q.target||a.extend(q,{preventDefault:function(){q.defaultPrevented=!0},target:h,type:e}),function(a,g){void 0===a&&(a=[]);void 0===g&&(g=[]);var d=0,m=0,b=a.length+g.length;for(v=0;v<b;v++)!1===(a[d]?g[m]?a[d].order<=g[m].order?a[d++]:g[m++]:a[d++]:g[m++]).fn.call(h,q)&&q.preventDefault()}(h.protoEvents&&h.protoEvents[e],h.hcEvents&&h.hcEvents[e]));t&&!q.defaultPrevented&&t.call(h,q)};a.animate=function(h,e,q){var t,u="",v,n,g;a.isObject(q)||(g=arguments,q={duration:g[2],easing:g[3],complete:g[4]});
a.isNumber(q.duration)||(q.duration=400);q.easing="function"===typeof q.easing?q.easing:Math[q.easing]||Math.easeInOutSine;q.curAnim=a.merge(e);a.objectEach(e,function(d,g){a.stop(h,g);n=new a.Fx(h,q,g);v=null;"d"===g?(n.paths=n.initPath(h,h.d,e.d),n.toD=e.d,t=0,v=1):h.attr?t=h.attr(g):(t=parseFloat(a.getStyle(h,g))||0,"opacity"!==g&&(u="px"));v||(v=d);v&&v.match&&v.match("px")&&(v=v.replace(/px/g,""));n.run(t,v,u)})};a.seriesType=function(h,e,q,t,u){var v=a.getOptions(),n=a.seriesTypes;v.plotOptions[h]=
a.merge(v.plotOptions[e],q);n[h]=a.extendClass(n[e]||function(){},t);n[h].prototype.type=h;u&&(n[h].prototype.pointClass=a.extendClass(a.Point,u));return n[h]};a.uniqueKey=function(){var a=Math.random().toString(36).substring(2,9),e=0;return function(){return"highcharts-"+a+"-"+e++}}();a.isFunction=function(a){return"function"===typeof a};B.jQuery&&(B.jQuery.fn.highcharts=function(){var h=[].slice.call(arguments);if(this[0])return h[0]?(new (a[a.isString(h[0])?h.shift():"Chart"])(this[0],h[0],h[1]),
this):E[a.attr(this[0],"data-highcharts-chart")]})});J(G,"parts/Color.js",[G["parts/Globals.js"]],function(a){var E=a.isNumber,H=a.merge,B=a.pInt;a.Color=function(h){if(!(this instanceof a.Color))return new a.Color(h);this.init(h)};a.Color.prototype={parsers:[{regex:/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]?(?:\.[0-9]+)?)\s*\)/,parse:function(a){return[B(a[1]),B(a[2]),B(a[3]),parseFloat(a[4],10)]}},{regex:/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/,
parse:function(a){return[B(a[1]),B(a[2]),B(a[3]),1]}}],names:{white:"#ffffff",black:"#000000"},init:function(h){var e,q,t,u;if((this.input=h=this.names[h&&h.toLowerCase?h.toLowerCase():""]||h)&&h.stops)this.stops=h.stops.map(function(e){return new a.Color(e[1])});else if(h&&h.charAt&&"#"===h.charAt()&&(e=h.length,h=parseInt(h.substr(1),16),7===e?q=[(h&16711680)>>16,(h&65280)>>8,h&255,1]:4===e&&(q=[(h&3840)>>4|(h&3840)>>8,(h&240)>>4|h&240,(h&15)<<4|h&15,1])),!q)for(t=this.parsers.length;t--&&!q;)u=
this.parsers[t],(e=u.regex.exec(h))&&(q=u.parse(e));this.rgba=q||[]},get:function(a){var e=this.input,h=this.rgba,t;this.stops?(t=H(e),t.stops=[].concat(t.stops),this.stops.forEach(function(e,h){t.stops[h]=[t.stops[h][0],e.get(a)]})):t=h&&E(h[0])?"rgb"===a||!a&&1===h[3]?"rgb("+h[0]+","+h[1]+","+h[2]+")":"a"===a?h[3]:"rgba("+h.join(",")+")":e;return t},brighten:function(a){var e,h=this.rgba;if(this.stops)this.stops.forEach(function(e){e.brighten(a)});else if(E(a)&&0!==a)for(e=0;3>e;e++)h[e]+=B(255*
a),0>h[e]&&(h[e]=0),255<h[e]&&(h[e]=255);return this},setOpacity:function(a){this.rgba[3]=a;return this},tweenTo:function(a,e){var h=this.rgba,t=a.rgba;t.length&&h&&h.length?(a=1!==t[3]||1!==h[3],e=(a?"rgba(":"rgb(")+Math.round(t[0]+(h[0]-t[0])*(1-e))+","+Math.round(t[1]+(h[1]-t[1])*(1-e))+","+Math.round(t[2]+(h[2]-t[2])*(1-e))+(a?","+(t[3]+(h[3]-t[3])*(1-e)):"")+")"):e=a.input||"none";return e}};a.color=function(h){return new a.Color(h)}});J(G,"parts/SvgRenderer.js",[G["parts/Globals.js"]],function(a){var E,
H,B=a.addEvent,h=a.animate,e=a.attr,q=a.charts,t=a.color,u=a.css,v=a.createElement,n=a.defined,g=a.deg2rad,d=a.destroyObjectProperties,m=a.doc,b=a.extend,k=a.erase,p=a.hasTouch,c=a.isArray,x=a.isFirefox,K=a.isMS,w=a.isObject,F=a.isString,C=a.isWebKit,l=a.merge,D=a.noop,A=a.objectEach,z=a.pick,I=a.pInt,f=a.removeEvent,r=a.splat,Q=a.stop,N=a.svg,L=a.SVG_NS,M=a.symbolSizes,R=a.win;E=a.SVGElement=function(){return this};b(E.prototype,{opacity:1,SVG_NS:L,textProps:"direction fontSize fontWeight fontFamily fontStyle color lineHeight width textAlign textDecoration textOverflow textOutline cursor".split(" "),
init:function(y,f){this.element="span"===f?v(f):m.createElementNS(this.SVG_NS,f);this.renderer=y;a.fireEvent(this,"afterInit")},animate:function(y,f,b){var c=a.animObject(z(f,this.renderer.globalAnimation,!0));z(m.hidden,m.msHidden,m.webkitHidden,!1)&&(c.duration=0);0!==c.duration?(b&&(c.complete=b),h(this,y,c)):(this.attr(y,void 0,b),a.objectEach(y,function(a,y){c.step&&c.step.call(this,a,{prop:y,pos:1})},this));return this},complexColor:function(y,f,b){var r=this.renderer,d,p,k,g,S,L,m,x,e,D,w,
z=[],N;a.fireEvent(this.renderer,"complexColor",{args:arguments},function(){y.radialGradient?p="radialGradient":y.linearGradient&&(p="linearGradient");p&&(k=y[p],S=r.gradients,m=y.stops,D=b.radialReference,c(k)&&(y[p]=k={x1:k[0],y1:k[1],x2:k[2],y2:k[3],gradientUnits:"userSpaceOnUse"}),"radialGradient"===p&&D&&!n(k.gradientUnits)&&(g=k,k=l(k,r.getRadialAttr(D,g),{gradientUnits:"userSpaceOnUse"})),A(k,function(a,y){"id"!==y&&z.push(y,a)}),A(m,function(a){z.push(a)}),z=z.join(","),S[z]?w=S[z].attr("id"):
(k.id=w=a.uniqueKey(),S[z]=L=r.createElement(p).attr(k).add(r.defs),L.radAttr=g,L.stops=[],m.forEach(function(y){0===y[1].indexOf("rgba")?(d=a.color(y[1]),x=d.get("rgb"),e=d.get("a")):(x=y[1],e=1);y=r.createElement("stop").attr({offset:y[0],"stop-color":x,"stop-opacity":e}).add(L);L.stops.push(y)})),N="url("+r.url+"#"+w+")",b.setAttribute(f,N),b.gradient=z,y.toString=function(){return N})})},applyTextOutline:function(y){var f=this.element,b,c,r;-1!==y.indexOf("contrast")&&(y=y.replace(/contrast/g,
this.renderer.getContrast(f.style.fill)));y=y.split(" ");b=y[y.length-1];(c=y[0])&&"none"!==c&&a.svg&&(this.fakeTS=!0,y=[].slice.call(f.getElementsByTagName("tspan")),this.ySetter=this.xSetter,c=c.replace(/(^[\d\.]+)(.*?)$/g,function(a,y,f){return 2*y+f}),this.removeTextOutline(y),r=f.firstChild,y.forEach(function(a,y){0===y&&(a.setAttribute("x",f.getAttribute("x")),y=f.getAttribute("y"),a.setAttribute("y",y||0),null===y&&f.setAttribute("y",0));a=a.cloneNode(1);e(a,{"class":"highcharts-text-outline",
fill:b,stroke:b,"stroke-width":c,"stroke-linejoin":"round"});f.insertBefore(a,r)}))},removeTextOutline:function(a){for(var y=a.length,f;y--;)f=a[y],"highcharts-text-outline"===f.getAttribute("class")&&k(a,this.element.removeChild(f))},symbolCustomAttribs:"x y width height r start end innerR anchorX anchorY rounded".split(" "),attr:function(y,f,b,c){var r,k=this.element,l,p=this,d,g,L=this.symbolCustomAttribs;"string"===typeof y&&void 0!==f&&(r=y,y={},y[r]=f);"string"===typeof y?p=(this[y+"Getter"]||
this._defaultGetter).call(this,y,k):(A(y,function(f,b){d=!1;c||Q(this,b);this.symbolName&&-1!==a.inArray(b,L)&&(l||(this.symbolAttr(y),l=!0),d=!0);!this.rotation||"x"!==b&&"y"!==b||(this.doTransform=!0);d||(g=this[b+"Setter"]||this._defaultSetter,g.call(this,f,b,k),!this.styledMode&&this.shadows&&/^(width|height|visibility|x|y|d|transform|cx|cy|r)$/.test(b)&&this.updateShadows(b,f,g))},this),this.afterSetters());b&&b.call(this);return p},afterSetters:function(){this.doTransform&&(this.updateTransform(),
this.doTransform=!1)},updateShadows:function(a,f,b){for(var y=this.shadows,c=y.length;c--;)b.call(y[c],"height"===a?Math.max(f-(y[c].cutHeight||0),0):"d"===a?this.d:f,a,y[c])},addClass:function(a,f){var y=this.attr("class")||"";f||(a=(a||"").split(/ /g).reduce(function(a,f){-1===y.indexOf(f)&&a.push(f);return a},y?[y]:[]).join(" "));a!==y&&this.attr("class",a);return this},hasClass:function(a){return-1!==(this.attr("class")||"").split(" ").indexOf(a)},removeClass:function(a){return this.attr("class",
(this.attr("class")||"").replace(a,""))},symbolAttr:function(a){var y=this;"x y r start end width height innerR anchorX anchorY clockwise".split(" ").forEach(function(f){y[f]=z(a[f],y[f])});y.attr({d:y.renderer.symbols[y.symbolName](y.x,y.y,y.width,y.height,y)})},clip:function(a){return this.attr("clip-path",a?"url("+this.renderer.url+"#"+a.id+")":"none")},crisp:function(a,f){var y;f=f||a.strokeWidth||0;y=Math.round(f)%2/2;a.x=Math.floor(a.x||this.x||0)+y;a.y=Math.floor(a.y||this.y||0)+y;a.width=
Math.floor((a.width||this.width||0)-2*y);a.height=Math.floor((a.height||this.height||0)-2*y);n(a.strokeWidth)&&(a.strokeWidth=f);return a},css:function(a){var y=this.styles,f={},c=this.element,r,k="",l,p=!y,d=["textOutline","textOverflow","width"];a&&a.color&&(a.fill=a.color);y&&A(a,function(a,b){a!==y[b]&&(f[b]=a,p=!0)});p&&(y&&(a=b(y,f)),a&&(null===a.width||"auto"===a.width?delete this.textWidth:"text"===c.nodeName.toLowerCase()&&a.width&&(r=this.textWidth=I(a.width))),this.styles=a,r&&!N&&this.renderer.forExport&&
delete a.width,c.namespaceURI===this.SVG_NS?(l=function(a,y){return"-"+y.toLowerCase()},A(a,function(a,y){-1===d.indexOf(y)&&(k+=y.replace(/([A-Z])/g,l)+":"+a+";")}),k&&e(c,"style",k)):u(c,a),this.added&&("text"===this.element.nodeName&&this.renderer.buildText(this),a&&a.textOutline&&this.applyTextOutline(a.textOutline)));return this},getStyle:function(a){return R.getComputedStyle(this.element||this,"").getPropertyValue(a)},strokeWidth:function(){if(!this.renderer.styledMode)return this["stroke-width"]||
0;var a=this.getStyle("stroke-width"),f;a.indexOf("px")===a.length-2?a=I(a):(f=m.createElementNS(L,"rect"),e(f,{width:a,"stroke-width":0}),this.element.parentNode.appendChild(f),a=f.getBBox().width,f.parentNode.removeChild(f));return a},on:function(a,f){var y=this,b=y.element;p&&"click"===a?(b.ontouchstart=function(a){y.touchEventFired=Date.now();a.preventDefault();f.call(b,a)},b.onclick=function(a){(-1===R.navigator.userAgent.indexOf("Android")||1100<Date.now()-(y.touchEventFired||0))&&f.call(b,
a)}):b["on"+a]=f;return this},setRadialReference:function(a){var y=this.renderer.gradients[this.element.gradient];this.element.radialReference=a;y&&y.radAttr&&y.animate(this.renderer.getRadialAttr(a,y.radAttr));return this},translate:function(a,f){return this.attr({translateX:a,translateY:f})},invert:function(a){this.inverted=a;this.updateTransform();return this},updateTransform:function(){var a=this.translateX||0,f=this.translateY||0,b=this.scaleX,c=this.scaleY,r=this.inverted,k=this.rotation,l=
this.matrix,p=this.element;r&&(a+=this.width,f+=this.height);a=["translate("+a+","+f+")"];n(l)&&a.push("matrix("+l.join(",")+")");r?a.push("rotate(90) scale(-1,1)"):k&&a.push("rotate("+k+" "+z(this.rotationOriginX,p.getAttribute("x"),0)+" "+z(this.rotationOriginY,p.getAttribute("y")||0)+")");(n(b)||n(c))&&a.push("scale("+z(b,1)+" "+z(c,1)+")");a.length&&p.setAttribute("transform",a.join(" "))},toFront:function(){var a=this.element;a.parentNode.appendChild(a);return this},align:function(a,f,b){var y,
c,r,p,l={};c=this.renderer;r=c.alignedObjects;var d,g;if(a){if(this.alignOptions=a,this.alignByTranslate=f,!b||F(b))this.alignTo=y=b||"renderer",k(r,this),r.push(this),b=null}else a=this.alignOptions,f=this.alignByTranslate,y=this.alignTo;b=z(b,c[y],c);y=a.align;c=a.verticalAlign;r=(b.x||0)+(a.x||0);p=(b.y||0)+(a.y||0);"right"===y?d=1:"center"===y&&(d=2);d&&(r+=(b.width-(a.width||0))/d);l[f?"translateX":"x"]=Math.round(r);"bottom"===c?g=1:"middle"===c&&(g=2);g&&(p+=(b.height-(a.height||0))/g);l[f?
"translateY":"y"]=Math.round(p);this[this.placed?"animate":"attr"](l);this.placed=!0;this.alignAttr=l;return this},getBBox:function(a,f){var y,c=this.renderer,r,k=this.element,l=this.styles,p,d=this.textStr,A,L=c.cache,m=c.cacheKeys,x=k.namespaceURI===this.SVG_NS,e;f=z(f,this.rotation);r=f*g;p=c.styledMode?k&&E.prototype.getStyle.call(k,"font-size"):l&&l.fontSize;n(d)&&(e=d.toString(),-1===e.indexOf("\x3c")&&(e=e.replace(/[0-9]/g,"0")),e+=["",f||0,p,this.textWidth,l&&l.textOverflow].join());e&&!a&&
(y=L[e]);if(!y){if(x||c.forExport){try{(A=this.fakeTS&&function(a){[].forEach.call(k.querySelectorAll(".highcharts-text-outline"),function(f){f.style.display=a})})&&A("none"),y=k.getBBox?b({},k.getBBox()):{width:k.offsetWidth,height:k.offsetHeight},A&&A("")}catch(Y){""}if(!y||0>y.width)y={width:0,height:0}}else y=this.htmlGetBBox();c.isSVG&&(a=y.width,c=y.height,x&&(y.height=c={"11px,17":14,"13px,20":16}[l&&l.fontSize+","+Math.round(c)]||c),f&&(y.width=Math.abs(c*Math.sin(r))+Math.abs(a*Math.cos(r)),
y.height=Math.abs(c*Math.cos(r))+Math.abs(a*Math.sin(r))));if(e&&0<y.height){for(;250<m.length;)delete L[m.shift()];L[e]||m.push(e);L[e]=y}}return y},show:function(a){return this.attr({visibility:a?"inherit":"visible"})},hide:function(){return this.attr({visibility:"hidden"})},fadeOut:function(a){var f=this;f.animate({opacity:0},{duration:a||150,complete:function(){f.attr({y:-9999})}})},add:function(a){var f=this.renderer,y=this.element,b;a&&(this.parentGroup=a);this.parentInverted=a&&a.inverted;
void 0!==this.textStr&&f.buildText(this);this.added=!0;if(!a||a.handleZ||this.zIndex)b=this.zIndexSetter();b||(a?a.element:f.box).appendChild(y);if(this.onAdd)this.onAdd();return this},safeRemoveChild:function(a){var f=a.parentNode;f&&f.removeChild(a)},destroy:function(){var a=this,f=a.element||{},b=a.renderer,c=b.isSVG&&"SPAN"===f.nodeName&&a.parentGroup,r=f.ownerSVGElement,l=a.clipPath;f.onclick=f.onmouseout=f.onmouseover=f.onmousemove=f.point=null;Q(a);l&&r&&([].forEach.call(r.querySelectorAll("[clip-path],[CLIP-PATH]"),
function(a){-1<a.getAttribute("clip-path").indexOf(l.element.id)&&a.removeAttribute("clip-path")}),a.clipPath=l.destroy());if(a.stops){for(r=0;r<a.stops.length;r++)a.stops[r]=a.stops[r].destroy();a.stops=null}a.safeRemoveChild(f);for(b.styledMode||a.destroyShadows();c&&c.div&&0===c.div.childNodes.length;)f=c.parentGroup,a.safeRemoveChild(c.div),delete c.div,c=f;a.alignTo&&k(b.alignedObjects,a);A(a,function(f,y){delete a[y]})},shadow:function(a,f,b){var y=[],c,r,l=this.element,k,p,d,g;if(!a)this.destroyShadows();
else if(!this.shadows){p=z(a.width,3);d=(a.opacity||.15)/p;g=this.parentInverted?"(-1,-1)":"("+z(a.offsetX,1)+", "+z(a.offsetY,1)+")";for(c=1;c<=p;c++)r=l.cloneNode(0),k=2*p+1-2*c,e(r,{stroke:a.color||"#000000","stroke-opacity":d*c,"stroke-width":k,transform:"translate"+g,fill:"none"}),r.setAttribute("class",(r.getAttribute("class")||"")+" highcharts-shadow"),b&&(e(r,"height",Math.max(e(r,"height")-k,0)),r.cutHeight=k),f?f.element.appendChild(r):l.parentNode&&l.parentNode.insertBefore(r,l),y.push(r);
this.shadows=y}return this},destroyShadows:function(){(this.shadows||[]).forEach(function(a){this.safeRemoveChild(a)},this);this.shadows=void 0},xGetter:function(a){"circle"===this.element.nodeName&&("x"===a?a="cx":"y"===a&&(a="cy"));return this._defaultGetter(a)},_defaultGetter:function(a){a=z(this[a+"Value"],this[a],this.element?this.element.getAttribute(a):null,0);/^[\-0-9\.]+$/.test(a)&&(a=parseFloat(a));return a},dSetter:function(a,f,b){a&&a.join&&(a=a.join(" "));/(NaN| {2}|^$)/.test(a)&&(a=
"M 0 0");this[f]!==a&&(b.setAttribute(f,a),this[f]=a)},dashstyleSetter:function(a){var f,y=this["stroke-width"];"inherit"===y&&(y=1);if(a=a&&a.toLowerCase()){a=a.replace("shortdashdotdot","3,1,1,1,1,1,").replace("shortdashdot","3,1,1,1").replace("shortdot","1,1,").replace("shortdash","3,1,").replace("longdash","8,3,").replace(/dot/g,"1,3,").replace("dash","4,3,").replace(/,$/,"").split(",");for(f=a.length;f--;)a[f]=I(a[f])*y;a=a.join(",").replace(/NaN/g,"none");this.element.setAttribute("stroke-dasharray",
a)}},alignSetter:function(a){var f={left:"start",center:"middle",right:"end"};f[a]&&(this.alignValue=a,this.element.setAttribute("text-anchor",f[a]))},opacitySetter:function(a,f,b){this[f]=a;b.setAttribute(f,a)},titleSetter:function(a){var f=this.element.getElementsByTagName("title")[0];f||(f=m.createElementNS(this.SVG_NS,"title"),this.element.appendChild(f));f.firstChild&&f.removeChild(f.firstChild);f.appendChild(m.createTextNode(String(z(a,"")).replace(/<[^>]*>/g,"").replace(/&lt;/g,"\x3c").replace(/&gt;/g,
"\x3e")))},textSetter:function(a){a!==this.textStr&&(delete this.bBox,delete this.textPxLength,this.textStr=a,this.added&&this.renderer.buildText(this))},setTextPath:function(f,b){var y=this.element,c={textAnchor:"text-anchor"},r,k=!1,p,d=this.textPathWrapper,g=!d;b=l(!0,{enabled:!0,attributes:{dy:-5,startOffset:"50%",textAnchor:"middle"}},b);r=b.attributes;if(f&&b&&b.enabled){this.options&&this.options.padding&&(r.dx=-this.options.padding);d||(this.textPathWrapper=d=this.renderer.createElement("textPath"),
k=!0);p=d.element;(b=f.element.getAttribute("id"))||f.element.setAttribute("id",b=a.uniqueKey());if(g)for(f=y.getElementsByTagName("tspan");f.length;)f[0].setAttribute("y",0),p.appendChild(f[0]);k&&d.add({element:this.text?this.text.element:y});p.setAttributeNS("http://www.w3.org/1999/xlink","href",this.renderer.url+"#"+b);n(r.dy)&&(p.parentNode.setAttribute("dy",r.dy),delete r.dy);n(r.dx)&&(p.parentNode.setAttribute("dx",r.dx),delete r.dx);a.objectEach(r,function(a,f){p.setAttribute(c[f]||f,a)});
y.removeAttribute("transform");this.removeTextOutline.call(d,[].slice.call(y.getElementsByTagName("tspan")));this.text&&!this.renderer.styledMode&&this.attr({fill:"none","stroke-width":0});this.applyTextOutline=this.updateTransform=D}else d&&(delete this.updateTransform,delete this.applyTextOutline,this.destroyTextPath(y,f));return this},destroyTextPath:function(a,f){var b;f.element.setAttribute("id","");for(b=this.textPathWrapper.element.childNodes;b.length;)a.firstChild.appendChild(b[0]);a.firstChild.removeChild(this.textPathWrapper.element);
delete f.textPathWrapper},fillSetter:function(a,f,b){"string"===typeof a?b.setAttribute(f,a):a&&this.complexColor(a,f,b)},visibilitySetter:function(a,f,b){"inherit"===a?b.removeAttribute(f):this[f]!==a&&b.setAttribute(f,a);this[f]=a},zIndexSetter:function(a,f){var b=this.renderer,y=this.parentGroup,c=(y||b).element||b.box,r,k=this.element,l=!1,p,b=c===b.box;r=this.added;var d;n(a)?(k.setAttribute("data-z-index",a),a=+a,this[f]===a&&(r=!1)):n(this[f])&&k.removeAttribute("data-z-index");this[f]=a;if(r){(a=
this.zIndex)&&y&&(y.handleZ=!0);f=c.childNodes;for(d=f.length-1;0<=d&&!l;d--)if(y=f[d],r=y.getAttribute("data-z-index"),p=!n(r),y!==k)if(0>a&&p&&!b&&!d)c.insertBefore(k,f[d]),l=!0;else if(I(r)<=a||p&&(!n(a)||0<=a))c.insertBefore(k,f[d+1]||null),l=!0;l||(c.insertBefore(k,f[b?3:0]||null),l=!0)}return l},_defaultSetter:function(a,f,b){b.setAttribute(f,a)}});E.prototype.yGetter=E.prototype.xGetter;E.prototype.translateXSetter=E.prototype.translateYSetter=E.prototype.rotationSetter=E.prototype.verticalAlignSetter=
E.prototype.rotationOriginXSetter=E.prototype.rotationOriginYSetter=E.prototype.scaleXSetter=E.prototype.scaleYSetter=E.prototype.matrixSetter=function(a,f){this[f]=a;this.doTransform=!0};E.prototype["stroke-widthSetter"]=E.prototype.strokeSetter=function(a,f,b){this[f]=a;this.stroke&&this["stroke-width"]?(E.prototype.fillSetter.call(this,this.stroke,"stroke",b),b.setAttribute("stroke-width",this["stroke-width"]),this.hasStroke=!0):"stroke-width"===f&&0===a&&this.hasStroke&&(b.removeAttribute("stroke"),
this.hasStroke=!1)};H=a.SVGRenderer=function(){this.init.apply(this,arguments)};b(H.prototype,{Element:E,SVG_NS:L,init:function(a,f,b,c,r,k,l){var y;y=this.createElement("svg").attr({version:"1.1","class":"highcharts-root"});l||y.css(this.getStyle(c));c=y.element;a.appendChild(c);e(a,"dir","ltr");-1===a.innerHTML.indexOf("xmlns")&&e(c,"xmlns",this.SVG_NS);this.isSVG=!0;this.box=c;this.boxWrapper=y;this.alignedObjects=[];this.url=(x||C)&&m.getElementsByTagName("base").length?R.location.href.split("#")[0].replace(/<[^>]*>/g,
"").replace(/([\('\)])/g,"\\$1").replace(/ /g,"%20"):"";this.createElement("desc").add().element.appendChild(m.createTextNode("Created with Highcharts 7.1.2"));this.defs=this.createElement("defs").add();this.allowHTML=k;this.forExport=r;this.styledMode=l;this.gradients={};this.cache={};this.cacheKeys=[];this.imgCount=0;this.setSize(f,b,!1);var p;x&&a.getBoundingClientRect&&(f=function(){u(a,{left:0,top:0});p=a.getBoundingClientRect();u(a,{left:Math.ceil(p.left)-p.left+"px",top:Math.ceil(p.top)-p.top+
"px"})},f(),this.unSubPixelFix=B(R,"resize",f))},definition:function(a){function f(a,c){var y;r(a).forEach(function(a){var r=b.createElement(a.tagName),k={};A(a,function(a,f){"tagName"!==f&&"children"!==f&&"textContent"!==f&&(k[f]=a)});r.attr(k);r.add(c||b.defs);a.textContent&&r.element.appendChild(m.createTextNode(a.textContent));f(a.children||[],r);y=r});return y}var b=this;return f(a)},getStyle:function(a){return this.style=b({fontFamily:'"Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif',
fontSize:"12px"},a)},setStyle:function(a){this.boxWrapper.css(this.getStyle(a))},isHidden:function(){return!this.boxWrapper.getBBox().width},destroy:function(){var a=this.defs;this.box=null;this.boxWrapper=this.boxWrapper.destroy();d(this.gradients||{});this.gradients=null;a&&(this.defs=a.destroy());this.unSubPixelFix&&this.unSubPixelFix();return this.alignedObjects=null},createElement:function(a){var f=new this.Element;f.init(this,a);return f},draw:D,getRadialAttr:function(a,f){return{cx:a[0]-a[2]/
2+f.cx*a[2],cy:a[1]-a[2]/2+f.cy*a[2],r:f.r*a[2]}},truncate:function(a,f,b,c,r,k,l){var y=this,p=a.rotation,d,g=c?1:0,A=(b||c).length,L=A,x=[],e=function(a){f.firstChild&&f.removeChild(f.firstChild);a&&f.appendChild(m.createTextNode(a))},n=function(k,p){p=p||k;if(void 0===x[p])if(f.getSubStringLength)try{x[p]=r+f.getSubStringLength(0,c?p+1:p)}catch(Z){""}else y.getSpanWidth&&(e(l(b||c,k)),x[p]=r+y.getSpanWidth(a,f));return x[p]},D,w;a.rotation=0;D=n(f.textContent.length);if(w=r+D>k){for(;g<=A;)L=Math.ceil((g+
A)/2),c&&(d=l(c,L)),D=n(L,d&&d.length-1),g===A?g=A+1:D>k?A=L-1:g=L;0===A?e(""):b&&A===b.length-1||e(d||l(b||c,L))}c&&c.splice(0,L);a.actualWidth=D;a.rotation=p;return w},escapes:{"\x26":"\x26amp;","\x3c":"\x26lt;","\x3e":"\x26gt;","'":"\x26#39;",'"':"\x26quot;"},buildText:function(a){var f=a.element,b=this,c=b.forExport,r=z(a.textStr,"").toString(),y=-1!==r.indexOf("\x3c"),k=f.childNodes,p,l=e(f,"x"),d=a.styles,g=a.textWidth,x=d&&d.lineHeight,n=d&&d.textOutline,D=d&&"ellipsis"===d.textOverflow,w=
d&&"nowrap"===d.whiteSpace,Q=d&&d.fontSize,M,C,h=k.length,d=g&&!a.added&&this.box,F=function(a){var c;b.styledMode||(c=/(px|em)$/.test(a&&a.style.fontSize)?a.style.fontSize:Q||b.style.fontSize||12);return x?I(x):b.fontMetrics(c,a.getAttribute("style")?a:f).h},R=function(a,f){A(b.escapes,function(b,c){f&&-1!==f.indexOf(b)||(a=a.toString().replace(new RegExp(b,"g"),c))});return a},v=function(a,f){var b;b=a.indexOf("\x3c");a=a.substring(b,a.indexOf("\x3e")-b);b=a.indexOf(f+"\x3d");if(-1!==b&&(b=b+f.length+
1,f=a.charAt(b),'"'===f||"'"===f))return a=a.substring(b+1),a.substring(0,a.indexOf(f))};M=[r,D,w,x,n,Q,g].join();if(M!==a.textCache){for(a.textCache=M;h--;)f.removeChild(k[h]);y||n||D||g||-1!==r.indexOf(" ")?(d&&d.appendChild(f),y?(r=b.styledMode?r.replace(/<(b|strong)>/g,'\x3cspan class\x3d"highcharts-strong"\x3e').replace(/<(i|em)>/g,'\x3cspan class\x3d"highcharts-emphasized"\x3e'):r.replace(/<(b|strong)>/g,'\x3cspan style\x3d"font-weight:bold"\x3e').replace(/<(i|em)>/g,'\x3cspan style\x3d"font-style:italic"\x3e'),
r=r.replace(/<a/g,"\x3cspan").replace(/<\/(b|strong|i|em|a)>/g,"\x3c/span\x3e").split(/<br.*?>/g)):r=[r],r=r.filter(function(a){return""!==a}),r.forEach(function(r,y){var k,d=0,A=0;r=r.replace(/^\s+|\s+$/g,"").replace(/<span/g,"|||\x3cspan").replace(/<\/span>/g,"\x3c/span\x3e|||");k=r.split("|||");k.forEach(function(r){if(""!==r||1===k.length){var x={},n=m.createElementNS(b.SVG_NS,"tspan"),z,M;(z=v(r,"class"))&&e(n,"class",z);if(z=v(r,"style"))z=z.replace(/(;| |^)color([ :])/,"$1fill$2"),e(n,"style",
z);(M=v(r,"href"))&&!c&&(e(n,"onclick",'location.href\x3d"'+M+'"'),e(n,"class","highcharts-anchor"),b.styledMode||u(n,{cursor:"pointer"}));r=R(r.replace(/<[a-zA-Z\/](.|\n)*?>/g,"")||" ");if(" "!==r){n.appendChild(m.createTextNode(r));d?x.dx=0:y&&null!==l&&(x.x=l);e(n,x);f.appendChild(n);!d&&C&&(!N&&c&&u(n,{display:"block"}),e(n,"dy",F(n)));if(g){var h=r.replace(/([^\^])-/g,"$1- ").split(" "),x=!w&&(1<k.length||y||1<h.length);M=0;var I=F(n);if(D)p=b.truncate(a,n,r,void 0,0,Math.max(0,g-parseInt(Q||
12,10)),function(a,f){return a.substring(0,f)+"\u2026"});else if(x)for(;h.length;)h.length&&!w&&0<M&&(n=m.createElementNS(L,"tspan"),e(n,{dy:I,x:l}),z&&e(n,"style",z),n.appendChild(m.createTextNode(h.join(" ").replace(/- /g,"-"))),f.appendChild(n)),b.truncate(a,n,null,h,0===M?A:0,g,function(a,f){return h.slice(0,f).join(" ").replace(/- /g,"-")}),A=a.actualWidth,M++}d++}}});C=C||f.childNodes.length}),D&&p&&a.attr("title",R(a.textStr,["\x26lt;","\x26gt;"])),d&&d.removeChild(f),n&&a.applyTextOutline&&
a.applyTextOutline(n)):f.appendChild(m.createTextNode(R(r)))}},getContrast:function(a){a=t(a).rgba;a[0]*=1;a[1]*=1.2;a[2]*=.5;return 459<a[0]+a[1]+a[2]?"#000000":"#FFFFFF"},button:function(a,f,c,r,k,d,p,g,A,L){var y=this.label(a,f,c,A,null,null,L,null,"button"),n=0,x=this.styledMode;y.attr(l({padding:8,r:2},k));if(!x){var m,e,D,w;k=l({fill:"#f7f7f7",stroke:"#cccccc","stroke-width":1,style:{color:"#333333",cursor:"pointer",fontWeight:"normal"}},k);m=k.style;delete k.style;d=l(k,{fill:"#e6e6e6"},d);
e=d.style;delete d.style;p=l(k,{fill:"#e6ebf5",style:{color:"#000000",fontWeight:"bold"}},p);D=p.style;delete p.style;g=l(k,{style:{color:"#cccccc"}},g);w=g.style;delete g.style}B(y.element,K?"mouseover":"mouseenter",function(){3!==n&&y.setState(1)});B(y.element,K?"mouseout":"mouseleave",function(){3!==n&&y.setState(n)});y.setState=function(a){1!==a&&(y.state=n=a);y.removeClass(/highcharts-button-(normal|hover|pressed|disabled)/).addClass("highcharts-button-"+["normal","hover","pressed","disabled"][a||
0]);x||y.attr([k,d,p,g][a||0]).css([m,e,D,w][a||0])};x||y.attr(k).css(b({cursor:"default"},m));return y.on("click",function(a){3!==n&&r.call(y,a)})},crispLine:function(a,f){a[1]===a[4]&&(a[1]=a[4]=Math.round(a[1])-f%2/2);a[2]===a[5]&&(a[2]=a[5]=Math.round(a[2])+f%2/2);return a},path:function(a){var f=this.styledMode?{}:{fill:"none"};c(a)?f.d=a:w(a)&&b(f,a);return this.createElement("path").attr(f)},circle:function(a,f,b){a=w(a)?a:void 0===a?{}:{x:a,y:f,r:b};f=this.createElement("circle");f.xSetter=
f.ySetter=function(a,f,b){b.setAttribute("c"+f,a)};return f.attr(a)},arc:function(a,f,b,c,r,k){w(a)?(c=a,f=c.y,b=c.r,a=c.x):c={innerR:c,start:r,end:k};a=this.symbol("arc",a,f,b,b,c);a.r=b;return a},rect:function(a,f,b,c,r,k){r=w(a)?a.r:r;var d=this.createElement("rect");a=w(a)?a:void 0===a?{}:{x:a,y:f,width:Math.max(b,0),height:Math.max(c,0)};this.styledMode||(void 0!==k&&(a.strokeWidth=k,a=d.crisp(a)),a.fill="none");r&&(a.r=r);d.rSetter=function(a,f,b){d.r=a;e(b,{rx:a,ry:a})};d.rGetter=function(){return d.r};
return d.attr(a)},setSize:function(a,f,b){var c=this.alignedObjects,r=c.length;this.width=a;this.height=f;for(this.boxWrapper.animate({width:a,height:f},{step:function(){this.attr({viewBox:"0 0 "+this.attr("width")+" "+this.attr("height")})},duration:z(b,!0)?void 0:0});r--;)c[r].align()},g:function(a){var f=this.createElement("g");return a?f.attr({"class":"highcharts-"+a}):f},image:function(a,f,c,r,k,d){var p={preserveAspectRatio:"none"},l,y=function(a,f){a.setAttributeNS?a.setAttributeNS("http://www.w3.org/1999/xlink",
"href",f):a.setAttribute("hc-svg-href",f)},g=function(f){y(l.element,a);d.call(l,f)};1<arguments.length&&b(p,{x:f,y:c,width:r,height:k});l=this.createElement("image").attr(p);d?(y(l.element,"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw\x3d\x3d"),p=new R.Image,B(p,"load",g),p.src=a,p.complete&&g({})):y(l.element,a);return l},symbol:function(a,f,c,r,k,d){var p=this,l,y=/^url\((.*?)\)$/,g=y.test(a),A=!g&&(this.symbols[a]?a:"circle"),L=A&&this.symbols[A],x=n(f)&&L&&L.call(this.symbols,
Math.round(f),Math.round(c),r,k,d),e,D;L?(l=this.path(x),p.styledMode||l.attr("fill","none"),b(l,{symbolName:A,x:f,y:c,width:r,height:k}),d&&b(l,d)):g&&(e=a.match(y)[1],l=this.image(e),l.imgwidth=z(M[e]&&M[e].width,d&&d.width),l.imgheight=z(M[e]&&M[e].height,d&&d.height),D=function(){l.attr({width:l.width,height:l.height})},["width","height"].forEach(function(a){l[a+"Setter"]=function(a,f){var b={},c=this["img"+f],r="width"===f?"translateX":"translateY";this[f]=a;n(c)&&(d&&"within"===d.backgroundSize&&
this.width&&this.height&&(c=Math.round(c*Math.min(this.width/this.imgwidth,this.height/this.imgheight))),this.element&&this.element.setAttribute(f,c),this.alignByTranslate||(b[r]=((this[f]||0)-c)/2,this.attr(b)))}}),n(f)&&l.attr({x:f,y:c}),l.isImg=!0,n(l.imgwidth)&&n(l.imgheight)?D():(l.attr({width:0,height:0}),v("img",{onload:function(){var a=q[p.chartIndex];0===this.width&&(u(this,{position:"absolute",top:"-999em"}),m.body.appendChild(this));M[e]={width:this.width,height:this.height};l.imgwidth=
this.width;l.imgheight=this.height;l.element&&D();this.parentNode&&this.parentNode.removeChild(this);p.imgCount--;if(!p.imgCount&&a&&a.onload)a.onload()},src:e}),this.imgCount++));return l},symbols:{circle:function(a,f,b,c){return this.arc(a+b/2,f+c/2,b/2,c/2,{start:.5*Math.PI,end:2.5*Math.PI,open:!1})},square:function(a,f,b,c){return["M",a,f,"L",a+b,f,a+b,f+c,a,f+c,"Z"]},triangle:function(a,f,b,c){return["M",a+b/2,f,"L",a+b,f+c,a,f+c,"Z"]},"triangle-down":function(a,f,b,c){return["M",a,f,"L",a+b,
f,a+b/2,f+c,"Z"]},diamond:function(a,f,b,c){return["M",a+b/2,f,"L",a+b,f+c/2,a+b/2,f+c,a,f+c/2,"Z"]},arc:function(a,f,b,c,r){var d=r.start,k=r.r||b,l=r.r||c||b,p=r.end-.001;b=r.innerR;c=z(r.open,.001>Math.abs(r.end-r.start-2*Math.PI));var y=Math.cos(d),g=Math.sin(d),A=Math.cos(p),p=Math.sin(p),d=.001>r.end-d-Math.PI?0:1;r=["M",a+k*y,f+l*g,"A",k,l,0,d,z(r.clockwise,1),a+k*A,f+l*p];n(b)&&r.push(c?"M":"L",a+b*A,f+b*p,"A",b,b,0,d,0,a+b*y,f+b*g);r.push(c?"":"Z");return r},callout:function(a,f,b,c,r){var d=
Math.min(r&&r.r||0,b,c),k=d+6,l=r&&r.anchorX;r=r&&r.anchorY;var p;p=["M",a+d,f,"L",a+b-d,f,"C",a+b,f,a+b,f,a+b,f+d,"L",a+b,f+c-d,"C",a+b,f+c,a+b,f+c,a+b-d,f+c,"L",a+d,f+c,"C",a,f+c,a,f+c,a,f+c-d,"L",a,f+d,"C",a,f,a,f,a+d,f];l&&l>b?r>f+k&&r<f+c-k?p.splice(13,3,"L",a+b,r-6,a+b+6,r,a+b,r+6,a+b,f+c-d):p.splice(13,3,"L",a+b,c/2,l,r,a+b,c/2,a+b,f+c-d):l&&0>l?r>f+k&&r<f+c-k?p.splice(33,3,"L",a,r+6,a-6,r,a,r-6,a,f+d):p.splice(33,3,"L",a,c/2,l,r,a,c/2,a,f+d):r&&r>c&&l>a+k&&l<a+b-k?p.splice(23,3,"L",l+6,f+
c,l,f+c+6,l-6,f+c,a+d,f+c):r&&0>r&&l>a+k&&l<a+b-k&&p.splice(3,3,"L",l-6,f,l,f-6,l+6,f,b-d,f);return p}},clipRect:function(f,b,c,r){var d=a.uniqueKey()+"-",l=this.createElement("clipPath").attr({id:d}).add(this.defs);f=this.rect(f,b,c,r,0).add(l);f.id=d;f.clipPath=l;f.count=0;return f},text:function(a,f,b,c){var r={};if(c&&(this.allowHTML||!this.forExport))return this.html(a,f,b);r.x=Math.round(f||0);b&&(r.y=Math.round(b));n(a)&&(r.text=a);a=this.createElement("text").attr(r);c||(a.xSetter=function(a,
f,b){var c=b.getElementsByTagName("tspan"),r,d=b.getAttribute(f),l;for(l=0;l<c.length;l++)r=c[l],r.getAttribute(f)===d&&r.setAttribute(f,a);b.setAttribute(f,a)});return a},fontMetrics:function(a,f){a=!this.styledMode&&/px/.test(a)||!R.getComputedStyle?a||f&&f.style&&f.style.fontSize||this.style&&this.style.fontSize:f&&E.prototype.getStyle.call(f,"font-size");a=/px/.test(a)?I(a):12;f=24>a?a+3:Math.round(1.2*a);return{h:f,b:Math.round(.8*f),f:a}},rotCorr:function(a,f,b){var c=a;f&&b&&(c=Math.max(c*
Math.cos(f*g),4));return{x:-a/3*Math.sin(f*g),y:c}},label:function(c,r,d,k,p,g,A,L,x){var y=this,e=y.styledMode,m=y.g("button"!==x&&"label"),D=m.text=y.text("",0,0,A).attr({zIndex:1}),w,z,N=0,M=3,Q=0,C,h,I,F,R,v={},K,t,q=/^url\((.*?)\)$/.test(k),u=e||q,S=function(){return e?w.strokeWidth()%2/2:(K?parseInt(K,10):0)%2/2},U,P,T;x&&m.addClass("highcharts-"+x);U=function(){var a=D.element.style,f={};z=(void 0===C||void 0===h||R)&&n(D.textStr)&&D.getBBox();m.width=(C||z.width||0)+2*M+Q;m.height=(h||z.height||
0)+2*M;t=M+Math.min(y.fontMetrics(a&&a.fontSize,D).b,z?z.height:Infinity);u&&(w||(m.box=w=y.symbols[k]||q?y.symbol(k):y.rect(),w.addClass(("button"===x?"":"highcharts-label-box")+(x?" highcharts-"+x+"-box":"")),w.add(m),a=S(),f.x=a,f.y=(L?-t:0)+a),f.width=Math.round(m.width),f.height=Math.round(m.height),w.attr(b(f,v)),v={})};P=function(){var a=Q+M,f;f=L?0:t;n(C)&&z&&("center"===R||"right"===R)&&(a+={center:.5,right:1}[R]*(C-z.width));if(a!==D.x||f!==D.y)D.attr("x",a),D.hasBoxWidthChanged&&(z=D.getBBox(!0),
U()),void 0!==f&&D.attr("y",f);D.x=a;D.y=f};T=function(a,f){w?w.attr(a,f):v[a]=f};m.onAdd=function(){D.add(m);m.attr({text:c||0===c?c:"",x:r,y:d});w&&n(p)&&m.attr({anchorX:p,anchorY:g})};m.widthSetter=function(f){C=a.isNumber(f)?f:null};m.heightSetter=function(a){h=a};m["text-alignSetter"]=function(a){R=a};m.paddingSetter=function(a){n(a)&&a!==M&&(M=m.padding=a,P())};m.paddingLeftSetter=function(a){n(a)&&a!==Q&&(Q=a,P())};m.alignSetter=function(a){a={left:0,center:.5,right:1}[a];a!==N&&(N=a,z&&m.attr({x:I}))};
m.textSetter=function(a){void 0!==a&&D.attr({text:a});U();P()};m["stroke-widthSetter"]=function(a,f){a&&(u=!0);K=this["stroke-width"]=a;T(f,a)};e?m.rSetter=function(a,f){T(f,a)}:m.strokeSetter=m.fillSetter=m.rSetter=function(a,f){"r"!==f&&("fill"===f&&a&&(u=!0),m[f]=a);T(f,a)};m.anchorXSetter=function(a,f){p=m.anchorX=a;T(f,Math.round(a)-S()-I)};m.anchorYSetter=function(a,f){g=m.anchorY=a;T(f,a-F)};m.xSetter=function(a){m.x=a;N&&(a-=N*((C||z.width)+2*M),m["forceAnimate:x"]=!0);I=Math.round(a);m.attr("translateX",
I)};m.ySetter=function(a){F=m.y=Math.round(a);m.attr("translateY",F)};var B=m.css;A={css:function(a){if(a){var f={};a=l(a);m.textProps.forEach(function(b){void 0!==a[b]&&(f[b]=a[b],delete a[b])});D.css(f);"width"in f&&U();"fontSize"in f&&(U(),P())}return B.call(m,a)},getBBox:function(){return{width:z.width+2*M,height:z.height+2*M,x:z.x-M,y:z.y-M}},destroy:function(){f(m.element,"mouseenter");f(m.element,"mouseleave");D&&(D=D.destroy());w&&(w=w.destroy());E.prototype.destroy.call(m);m=y=U=P=T=null}};
e||(A.shadow=function(a){a&&(U(),w&&w.shadow(a));return m});return b(m,A)}});a.Renderer=H});J(G,"parts/Html.js",[G["parts/Globals.js"]],function(a){var E=a.attr,H=a.createElement,B=a.css,h=a.defined,e=a.extend,q=a.isFirefox,t=a.isMS,u=a.isWebKit,v=a.pick,n=a.pInt,g=a.SVGElement,d=a.SVGRenderer,m=a.win;e(g.prototype,{htmlCss:function(a){var b="SPAN"===this.element.tagName&&a&&"width"in a,d=v(b&&a.width,void 0),c;b&&(delete a.width,this.textWidth=d,c=!0);a&&"ellipsis"===a.textOverflow&&(a.whiteSpace=
"nowrap",a.overflow="hidden");this.styles=e(this.styles,a);B(this.element,a);c&&this.htmlUpdateTransform();return this},htmlGetBBox:function(){var a=this.element;return{x:a.offsetLeft,y:a.offsetTop,width:a.offsetWidth,height:a.offsetHeight}},htmlUpdateTransform:function(){if(this.added){var a=this.renderer,d=this.element,p=this.translateX||0,c=this.translateY||0,g=this.x||0,m=this.y||0,e=this.textAlign||"left",F={left:0,center:.5,right:1}[e],C=this.styles,l=C&&C.whiteSpace;B(d,{marginLeft:p,marginTop:c});
!a.styledMode&&this.shadows&&this.shadows.forEach(function(a){B(a,{marginLeft:p+1,marginTop:c+1})});this.inverted&&[].forEach.call(d.childNodes,function(b){a.invertChild(b,d)});if("SPAN"===d.tagName){var C=this.rotation,D=this.textWidth&&n(this.textWidth),A=[C,e,d.innerHTML,this.textWidth,this.textAlign].join(),z;(z=D!==this.oldTextWidth)&&!(z=D>this.oldTextWidth)&&((z=this.textPxLength)||(B(d,{width:"",whiteSpace:l||"nowrap"}),z=d.offsetWidth),z=z>D);z&&(/[ \-]/.test(d.textContent||d.innerText)||
"ellipsis"===d.style.textOverflow)?(B(d,{width:D+"px",display:"block",whiteSpace:l||"normal"}),this.oldTextWidth=D,this.hasBoxWidthChanged=!0):this.hasBoxWidthChanged=!1;A!==this.cTT&&(l=a.fontMetrics(d.style.fontSize,d).b,!h(C)||C===(this.oldRotation||0)&&e===this.oldAlign||this.setSpanRotation(C,F,l),this.getSpanCorrection(!h(C)&&this.textPxLength||d.offsetWidth,l,F,C,e));B(d,{left:g+(this.xCorr||0)+"px",top:m+(this.yCorr||0)+"px"});this.cTT=A;this.oldRotation=C;this.oldAlign=e}}else this.alignOnAdd=
!0},setSpanRotation:function(a,d,p){var b={},k=this.renderer.getTransformKey();b[k]=b.transform="rotate("+a+"deg)";b[k+(q?"Origin":"-origin")]=b.transformOrigin=100*d+"% "+p+"px";B(this.element,b)},getSpanCorrection:function(a,d,p){this.xCorr=-a*p;this.yCorr=-d}});e(d.prototype,{getTransformKey:function(){return t&&!/Edge/.test(m.navigator.userAgent)?"-ms-transform":u?"-webkit-transform":q?"MozTransform":m.opera?"-o-transform":""},html:function(b,d,p){var c=this.createElement("span"),k=c.element,
m=c.renderer,n=m.isSVG,h=function(a,b){["opacity","visibility"].forEach(function(c){a[c+"Setter"]=function(d,l,f){var r=a.div?a.div.style:b;g.prototype[c+"Setter"].call(this,d,l,f);r&&(r[l]=d)}});a.addedSetters=!0},C=a.charts[m.chartIndex],C=C&&C.styledMode;c.textSetter=function(a){a!==k.innerHTML&&(delete this.bBox,delete this.oldTextWidth);this.textStr=a;k.innerHTML=v(a,"");c.doTransform=!0};n&&h(c,c.element.style);c.xSetter=c.ySetter=c.alignSetter=c.rotationSetter=function(a,b){"align"===b&&(b=
"textAlign");c[b]=a;c.doTransform=!0};c.afterSetters=function(){this.doTransform&&(this.htmlUpdateTransform(),this.doTransform=!1)};c.attr({text:b,x:Math.round(d),y:Math.round(p)}).css({position:"absolute"});C||c.css({fontFamily:this.style.fontFamily,fontSize:this.style.fontSize});k.style.whiteSpace="nowrap";c.css=c.htmlCss;n&&(c.add=function(a){var b,d=m.box.parentNode,l=[];if(this.parentGroup=a){if(b=a.div,!b){for(;a;)l.push(a),a=a.parentGroup;l.reverse().forEach(function(a){function f(f,b){a[b]=
f;"translateX"===b?r.left=f+"px":r.top=f+"px";a.doTransform=!0}var r,p=E(a.element,"class");p&&(p={className:p});b=a.div=a.div||H("div",p,{position:"absolute",left:(a.translateX||0)+"px",top:(a.translateY||0)+"px",display:a.display,opacity:a.opacity,pointerEvents:a.styles&&a.styles.pointerEvents},b||d);r=b.style;e(a,{classSetter:function(a){return function(f){this.element.setAttribute("class",f);a.className=f}}(b),on:function(){l[0].div&&c.on.apply({element:l[0].div},arguments);return a},translateXSetter:f,
translateYSetter:f});a.addedSetters||h(a)})}}else b=d;b.appendChild(k);c.added=!0;c.alignOnAdd&&c.htmlUpdateTransform();return c});return c}})});J(G,"parts/Time.js",[G["parts/Globals.js"]],function(a){var E=a.defined,H=a.extend,B=a.merge,h=a.pick,e=a.timeUnits,q=a.win;a.Time=function(a){this.update(a,!1)};a.Time.prototype={defaultOptions:{},update:function(a){var e=h(a&&a.useUTC,!0),v=this;this.options=a=B(!0,this.options||{},a);this.Date=a.Date||q.Date||Date;this.timezoneOffset=(this.useUTC=e)&&
a.timezoneOffset;this.getTimezoneOffset=this.timezoneOffsetFunction();(this.variableTimezone=!(e&&!a.getTimezoneOffset&&!a.timezone))||this.timezoneOffset?(this.get=function(a,g){var d=g.getTime(),m=d-v.getTimezoneOffset(g);g.setTime(m);a=g["getUTC"+a]();g.setTime(d);return a},this.set=function(a,g,d){var m;if("Milliseconds"===a||"Seconds"===a||"Minutes"===a&&0===g.getTimezoneOffset()%60)g["set"+a](d);else m=v.getTimezoneOffset(g),m=g.getTime()-m,g.setTime(m),g["setUTC"+a](d),a=v.getTimezoneOffset(g),
m=g.getTime()+a,g.setTime(m)}):e?(this.get=function(a,g){return g["getUTC"+a]()},this.set=function(a,g,d){return g["setUTC"+a](d)}):(this.get=function(a,g){return g["get"+a]()},this.set=function(a,g,d){return g["set"+a](d)})},makeTime:function(e,q,v,n,g,d){var m,b,k;this.useUTC?(m=this.Date.UTC.apply(0,arguments),b=this.getTimezoneOffset(m),m+=b,k=this.getTimezoneOffset(m),b!==k?m+=k-b:b-36E5!==this.getTimezoneOffset(m-36E5)||a.isSafari||(m-=36E5)):m=(new this.Date(e,q,h(v,1),h(n,0),h(g,0),h(d,0))).getTime();
return m},timezoneOffsetFunction:function(){var e=this,h=this.options,v=q.moment;if(!this.useUTC)return function(a){return 6E4*(new Date(a)).getTimezoneOffset()};if(h.timezone){if(v)return function(a){return 6E4*-v.tz(a,h.timezone).utcOffset()};a.error(25)}return this.useUTC&&h.getTimezoneOffset?function(a){return 6E4*h.getTimezoneOffset(a)}:function(){return 6E4*(e.timezoneOffset||0)}},dateFormat:function(e,h,v){if(!a.defined(h)||isNaN(h))return a.defaultOptions.lang.invalidDate||"";e=a.pick(e,"%Y-%m-%d %H:%M:%S");
var n=this,g=new this.Date(h),d=this.get("Hours",g),m=this.get("Day",g),b=this.get("Date",g),k=this.get("Month",g),p=this.get("FullYear",g),c=a.defaultOptions.lang,x=c.weekdays,q=c.shortWeekdays,w=a.pad,g=a.extend({a:q?q[m]:x[m].substr(0,3),A:x[m],d:w(b),e:w(b,2," "),w:m,b:c.shortMonths[k],B:c.months[k],m:w(k+1),o:k+1,y:p.toString().substr(2,2),Y:p,H:w(d),k:d,I:w(d%12||12),l:d%12||12,M:w(n.get("Minutes",g)),p:12>d?"AM":"PM",P:12>d?"am":"pm",S:w(g.getSeconds()),L:w(Math.floor(h%1E3),3)},a.dateFormats);
a.objectEach(g,function(a,b){for(;-1!==e.indexOf("%"+b);)e=e.replace("%"+b,"function"===typeof a?a.call(n,h):a)});return v?e.substr(0,1).toUpperCase()+e.substr(1):e},resolveDTLFormat:function(e){return a.isObject(e,!0)?e:(e=a.splat(e),{main:e[0],from:e[1],to:e[2]})},getTimeTicks:function(a,q,v,n){var g=this,d=[],m,b={},k;m=new g.Date(q);var p=a.unitRange,c=a.count||1,x;n=h(n,1);if(E(q)){g.set("Milliseconds",m,p>=e.second?0:c*Math.floor(g.get("Milliseconds",m)/c));p>=e.second&&g.set("Seconds",m,p>=
e.minute?0:c*Math.floor(g.get("Seconds",m)/c));p>=e.minute&&g.set("Minutes",m,p>=e.hour?0:c*Math.floor(g.get("Minutes",m)/c));p>=e.hour&&g.set("Hours",m,p>=e.day?0:c*Math.floor(g.get("Hours",m)/c));p>=e.day&&g.set("Date",m,p>=e.month?1:Math.max(1,c*Math.floor(g.get("Date",m)/c)));p>=e.month&&(g.set("Month",m,p>=e.year?0:c*Math.floor(g.get("Month",m)/c)),k=g.get("FullYear",m));p>=e.year&&g.set("FullYear",m,k-k%c);p===e.week&&(k=g.get("Day",m),g.set("Date",m,g.get("Date",m)-k+n+(k<n?-7:0)));k=g.get("FullYear",
m);n=g.get("Month",m);var K=g.get("Date",m),w=g.get("Hours",m);q=m.getTime();g.variableTimezone&&(x=v-q>4*e.month||g.getTimezoneOffset(q)!==g.getTimezoneOffset(v));q=m.getTime();for(m=1;q<v;)d.push(q),q=p===e.year?g.makeTime(k+m*c,0):p===e.month?g.makeTime(k,n+m*c):!x||p!==e.day&&p!==e.week?x&&p===e.hour&&1<c?g.makeTime(k,n,K,w+m*c):q+p*c:g.makeTime(k,n,K+m*c*(p===e.day?1:7)),m++;d.push(q);p<=e.hour&&1E4>d.length&&d.forEach(function(a){0===a%18E5&&"000000000"===g.dateFormat("%H%M%S%L",a)&&(b[a]="day")})}d.info=
H(a,{higherRanks:b,totalRange:p*c});return d}}});J(G,"parts/Options.js",[G["parts/Globals.js"]],function(a){var E=a.color,H=a.merge;a.defaultOptions={colors:"#7cb5ec #434348 #90ed7d #f7a35c #8085e9 #f15c80 #e4d354 #2b908f #f45b5b #91e8e1".split(" "),symbols:["circle","diamond","square","triangle","triangle-down"],lang:{loading:"Loading...",months:"January February March April May June July August September October November December".split(" "),shortMonths:"Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),
weekdays:"Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),decimalPoint:".",numericSymbols:"kMGTPE".split(""),resetZoom:"Reset zoom",resetZoomTitle:"Reset zoom level 1:1",thousandsSep:" "},global:{},time:a.Time.prototype.defaultOptions,chart:{styledMode:!1,borderRadius:0,colorCount:10,defaultSeriesType:"line",ignoreHiddenSeries:!0,spacing:[10,10,15,10],resetZoomButton:{theme:{zIndex:6},position:{align:"right",x:-10,y:10}},width:null,height:null,borderColor:"#335cad",backgroundColor:"#ffffff",
plotBorderColor:"#cccccc"},title:{text:"Chart title",align:"center",margin:15,widthAdjust:-44},subtitle:{text:"",align:"center",widthAdjust:-44},plotOptions:{},labels:{style:{position:"absolute",color:"#333333"}},legend:{enabled:!0,align:"center",alignColumns:!0,layout:"horizontal",labelFormatter:function(){return this.name},borderColor:"#999999",borderRadius:0,navigation:{activeColor:"#003399",inactiveColor:"#cccccc"},itemStyle:{color:"#333333",cursor:"pointer",fontSize:"12px",fontWeight:"bold",
textOverflow:"ellipsis"},itemHoverStyle:{color:"#000000"},itemHiddenStyle:{color:"#cccccc"},shadow:!1,itemCheckboxStyle:{position:"absolute",width:"13px",height:"13px"},squareSymbol:!0,symbolPadding:5,verticalAlign:"bottom",x:0,y:0,title:{style:{fontWeight:"bold"}}},loading:{labelStyle:{fontWeight:"bold",position:"relative",top:"45%"},style:{position:"absolute",backgroundColor:"#ffffff",opacity:.5,textAlign:"center"}},tooltip:{enabled:!0,animation:a.svg,borderRadius:3,dateTimeLabelFormats:{millisecond:"%A, %b %e, %H:%M:%S.%L",
second:"%A, %b %e, %H:%M:%S",minute:"%A, %b %e, %H:%M",hour:"%A, %b %e, %H:%M",day:"%A, %b %e, %Y",week:"Week from %A, %b %e, %Y",month:"%B %Y",year:"%Y"},footerFormat:"",padding:8,snap:a.isTouchDevice?25:10,headerFormat:'\x3cspan style\x3d"font-size: 10px"\x3e{point.key}\x3c/span\x3e\x3cbr/\x3e',pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.y}\x3c/b\x3e\x3cbr/\x3e',backgroundColor:E("#f7f7f7").setOpacity(.85).get(),borderWidth:1,shadow:!0,
style:{color:"#333333",cursor:"default",fontSize:"12px",pointerEvents:"none",whiteSpace:"nowrap"}},credits:{enabled:!0,href:"https://www.highcharts.com?credits",position:{align:"right",x:-10,verticalAlign:"bottom",y:-5},style:{cursor:"pointer",color:"#999999",fontSize:"9px"},text:"Highcharts.com"}};a.setOptions=function(B){a.defaultOptions=H(!0,a.defaultOptions,B);a.time.update(H(a.defaultOptions.global,a.defaultOptions.time),!1);return a.defaultOptions};a.getOptions=function(){return a.defaultOptions};
a.defaultPlotOptions=a.defaultOptions.plotOptions;a.time=new a.Time(H(a.defaultOptions.global,a.defaultOptions.time));a.dateFormat=function(B,h,e){return a.time.dateFormat(B,h,e)};""});J(G,"parts/Tick.js",[G["parts/Globals.js"]],function(a){var E=a.correctFloat,H=a.defined,B=a.destroyObjectProperties,h=a.fireEvent,e=a.isNumber,q=a.merge,t=a.pick,u=a.deg2rad;a.Tick=function(a,e,g,d,m){this.axis=a;this.pos=e;this.type=g||"";this.isNewLabel=this.isNew=!0;this.parameters=m||{};this.tickmarkOffset=this.parameters.tickmarkOffset;
this.options=this.parameters.options;g||d||this.addLabel()};a.Tick.prototype={addLabel:function(){var e=this,n=e.axis,g=n.options,d=n.chart,m=n.categories,b=n.names,k=e.pos,p=t(e.options&&e.options.labels,g.labels),c=n.tickPositions,x=k===c[0],h=k===c[c.length-1],m=this.parameters.category||(m?t(m[k],b[k],k):k),w=e.label,c=c.info,F,C,l,D;n.isDatetimeAxis&&c&&(C=d.time.resolveDTLFormat(g.dateTimeLabelFormats[!g.grid&&c.higherRanks[k]||c.unitName]),F=C.main);e.isFirst=x;e.isLast=h;e.formatCtx={axis:n,
chart:d,isFirst:x,isLast:h,dateTimeLabelFormat:F,tickPositionInfo:c,value:n.isLog?E(n.lin2log(m)):m,pos:k};g=n.labelFormatter.call(e.formatCtx,this.formatCtx);if(D=C&&C.list)e.shortenLabel=function(){for(l=0;l<D.length;l++)if(w.attr({text:n.labelFormatter.call(a.extend(e.formatCtx,{dateTimeLabelFormat:D[l]}))}),w.getBBox().width<n.getSlotWidth(e)-2*t(p.padding,5))return;w.attr({text:""})};if(H(w))w&&w.textStr!==g&&(!w.textWidth||p.style&&p.style.width||w.styles.width||w.css({width:null}),w.attr({text:g}),
w.textPxLength=w.getBBox().width);else{if(e.label=w=H(g)&&p.enabled?d.renderer.text(g,0,0,p.useHTML).add(n.labelGroup):null)d.styledMode||w.css(q(p.style)),w.textPxLength=w.getBBox().width;e.rotation=0}},getLabelSize:function(){return this.label?this.label.getBBox()[this.axis.horiz?"height":"width"]:0},handleOverflow:function(a){var e=this.axis,g=e.options.labels,d=a.x,m=e.chart.chartWidth,b=e.chart.spacing,k=t(e.labelLeft,Math.min(e.pos,b[3])),b=t(e.labelRight,Math.max(e.isRadial?0:e.pos+e.len,m-
b[1])),p=this.label,c=this.rotation,x={left:0,center:.5,right:1}[e.labelAlign||p.attr("align")],h=p.getBBox().width,w=e.getSlotWidth(this),F=w,C=1,l,D={};if(c||"justify"!==t(g.overflow,"justify"))0>c&&d-x*h<k?l=Math.round(d/Math.cos(c*u)-k):0<c&&d+x*h>b&&(l=Math.round((m-d)/Math.cos(c*u)));else if(m=d+(1-x)*h,d-x*h<k?F=a.x+F*(1-x)-k:m>b&&(F=b-a.x+F*x,C=-1),F=Math.min(w,F),F<w&&"center"===e.labelAlign&&(a.x+=C*(w-F-x*(w-Math.min(h,F)))),h>F||e.autoRotation&&(p.styles||{}).width)l=F;l&&(this.shortenLabel?
this.shortenLabel():(D.width=Math.floor(l),(g.style||{}).textOverflow||(D.textOverflow="ellipsis"),p.css(D)))},getPosition:function(e,n,g,d){var m=this.axis,b=m.chart,k=d&&b.oldChartHeight||b.chartHeight;e={x:e?a.correctFloat(m.translate(n+g,null,null,d)+m.transB):m.left+m.offset+(m.opposite?(d&&b.oldChartWidth||b.chartWidth)-m.right-m.left:0),y:e?k-m.bottom+m.offset-(m.opposite?m.height:0):a.correctFloat(k-m.translate(n+g,null,null,d)-m.transB)};e.y=Math.max(Math.min(e.y,1E5),-1E5);h(this,"afterGetPosition",
{pos:e});return e},getLabelPosition:function(a,e,g,d,m,b,k,p){var c=this.axis,x=c.transA,n=c.reversed,w=c.staggerLines,F=c.tickRotCorr||{x:0,y:0},C=m.y,l=d||c.reserveSpaceDefault?0:-c.labelOffset*("center"===c.labelAlign?.5:1),D={};H(C)||(C=0===c.side?g.rotation?-8:-g.getBBox().height:2===c.side?F.y+8:Math.cos(g.rotation*u)*(F.y-g.getBBox(!1,0).height/2));a=a+m.x+l+F.x-(b&&d?b*x*(n?-1:1):0);e=e+C-(b&&!d?b*x*(n?1:-1):0);w&&(g=k/(p||1)%w,c.opposite&&(g=w-g-1),e+=c.labelOffset/w*g);D.x=a;D.y=Math.round(e);
h(this,"afterGetLabelPosition",{pos:D,tickmarkOffset:b,index:k});return D},getMarkPath:function(a,e,g,d,m,b){return b.crispLine(["M",a,e,"L",a+(m?0:-g),e+(m?g:0)],d)},renderGridLine:function(a,e,g){var d=this.axis,m=d.options,b=this.gridLine,k={},p=this.pos,c=this.type,x=t(this.tickmarkOffset,d.tickmarkOffset),n=d.chart.renderer,w=c?c+"Grid":"grid",h=m[w+"LineWidth"],C=m[w+"LineColor"],m=m[w+"LineDashStyle"];b||(d.chart.styledMode||(k.stroke=C,k["stroke-width"]=h,m&&(k.dashstyle=m)),c||(k.zIndex=
1),a&&(e=0),this.gridLine=b=n.path().attr(k).addClass("highcharts-"+(c?c+"-":"")+"grid-line").add(d.gridGroup));if(b&&(g=d.getPlotLinePath({value:p+x,lineWidth:b.strokeWidth()*g,force:"pass",old:a})))b[a||this.isNew?"attr":"animate"]({d:g,opacity:e})},renderMark:function(a,e,g){var d=this.axis,m=d.options,b=d.chart.renderer,k=this.type,p=k?k+"Tick":"tick",c=d.tickSize(p),x=this.mark,n=!x,w=a.x;a=a.y;var h=t(m[p+"Width"],!k&&d.isXAxis?1:0),m=m[p+"Color"];c&&(d.opposite&&(c[0]=-c[0]),n&&(this.mark=
x=b.path().addClass("highcharts-"+(k?k+"-":"")+"tick").add(d.axisGroup),d.chart.styledMode||x.attr({stroke:m,"stroke-width":h})),x[n?"attr":"animate"]({d:this.getMarkPath(w,a,c[0],x.strokeWidth()*g,d.horiz,b),opacity:e}))},renderLabel:function(a,n,g,d){var m=this.axis,b=m.horiz,k=m.options,p=this.label,c=k.labels,x=c.step,m=t(this.tickmarkOffset,m.tickmarkOffset),h=!0,w=a.x;a=a.y;p&&e(w)&&(p.xy=a=this.getLabelPosition(w,a,p,b,c,m,d,x),this.isFirst&&!this.isLast&&!t(k.showFirstLabel,1)||this.isLast&&
!this.isFirst&&!t(k.showLastLabel,1)?h=!1:!b||c.step||c.rotation||n||0===g||this.handleOverflow(a),x&&d%x&&(h=!1),h&&e(a.y)?(a.opacity=g,p[this.isNewLabel?"attr":"animate"](a),this.isNewLabel=!1):(p.attr("y",-9999),this.isNewLabel=!0))},render:function(e,n,g){var d=this.axis,m=d.horiz,b=this.pos,k=t(this.tickmarkOffset,d.tickmarkOffset),b=this.getPosition(m,b,k,n),k=b.x,p=b.y,d=m&&k===d.pos+d.len||!m&&p===d.pos?-1:1;g=t(g,1);this.isActive=!0;this.renderGridLine(n,g,d);this.renderMark(b,g,d);this.renderLabel(b,
n,g,e);this.isNew=!1;a.fireEvent(this,"afterRender")},destroy:function(){B(this,this.axis)}}});J(G,"parts/Axis.js",[G["parts/Globals.js"]],function(a){var E=a.addEvent,H=a.animObject,B=a.arrayMax,h=a.arrayMin,e=a.color,q=a.correctFloat,t=a.defaultOptions,u=a.defined,v=a.deg2rad,n=a.destroyObjectProperties,g=a.extend,d=a.fireEvent,m=a.format,b=a.getMagnitude,k=a.isArray,p=a.isNumber,c=a.isString,x=a.merge,K=a.normalizeTickInterval,w=a.objectEach,F=a.pick,C=a.removeEvent,l=a.seriesTypes,D=a.splat,A=
a.syncTimeout,z=a.Tick,I=function(){this.init.apply(this,arguments)};a.extend(I.prototype,{defaultOptions:{dateTimeLabelFormats:{millisecond:{main:"%H:%M:%S.%L",range:!1},second:{main:"%H:%M:%S",range:!1},minute:{main:"%H:%M",range:!1},hour:{main:"%H:%M",range:!1},day:{main:"%e. %b"},week:{main:"%e. %b"},month:{main:"%b '%y"},year:{main:"%Y"}},endOnTick:!1,labels:{enabled:!0,indentation:10,x:0,style:{color:"#666666",cursor:"default",fontSize:"11px"}},maxPadding:.01,minorTickLength:2,minorTickPosition:"outside",
minPadding:.01,showEmpty:!0,startOfWeek:1,startOnTick:!1,tickLength:10,tickPixelInterval:100,tickmarkPlacement:"between",tickPosition:"outside",title:{align:"middle",style:{color:"#666666"}},type:"linear",minorGridLineColor:"#f2f2f2",minorGridLineWidth:1,minorTickColor:"#999999",lineColor:"#ccd6eb",lineWidth:1,gridLineColor:"#e6e6e6",tickColor:"#ccd6eb"},defaultYAxisOptions:{endOnTick:!0,maxPadding:.05,minPadding:.05,tickPixelInterval:72,showLastLabel:!0,labels:{x:-8},startOnTick:!0,title:{rotation:270,
text:"Values"},stackLabels:{allowOverlap:!1,enabled:!1,formatter:function(){return a.numberFormat(this.total,-1)},style:{color:"#000000",fontSize:"11px",fontWeight:"bold",textOutline:"1px contrast"}},gridLineWidth:1,lineWidth:0},defaultLeftAxisOptions:{labels:{x:-15},title:{rotation:270}},defaultRightAxisOptions:{labels:{x:15},title:{rotation:90}},defaultBottomAxisOptions:{labels:{autoRotation:[-45],x:0},margin:15,title:{rotation:0}},defaultTopAxisOptions:{labels:{autoRotation:[-45],x:0},margin:15,
title:{rotation:0}},init:function(f,b){var c=b.isX,r=this;r.chart=f;r.horiz=f.inverted&&!r.isZAxis?!c:c;r.isXAxis=c;r.coll=r.coll||(c?"xAxis":"yAxis");d(this,"init",{userOptions:b});r.opposite=b.opposite;r.side=b.side||(r.horiz?r.opposite?0:2:r.opposite?1:3);r.setOptions(b);var l=this.options,p=l.type;r.labelFormatter=l.labels.formatter||r.defaultLabelFormatter;r.userOptions=b;r.minPixelPadding=0;r.reversed=l.reversed;r.visible=!1!==l.visible;r.zoomEnabled=!1!==l.zoomEnabled;r.hasNames="category"===
p||!0===l.categories;r.categories=l.categories||r.hasNames;r.names||(r.names=[],r.names.keys={});r.plotLinesAndBandsGroups={};r.isLog="logarithmic"===p;r.isDatetimeAxis="datetime"===p;r.positiveValuesOnly=r.isLog&&!r.allowNegativeLog;r.isLinked=u(l.linkedTo);r.ticks={};r.labelEdge=[];r.minorTicks={};r.plotLinesAndBands=[];r.alternateBands={};r.len=0;r.minRange=r.userMinRange=l.minRange||l.maxZoom;r.range=l.range;r.offset=l.offset||0;r.stacks={};r.oldStacks={};r.stacksTouched=0;r.max=null;r.min=null;
r.crosshair=F(l.crosshair,D(f.options.tooltip.crosshairs)[c?0:1],!1);b=r.options.events;-1===f.axes.indexOf(r)&&(c?f.axes.splice(f.xAxis.length,0,r):f.axes.push(r),f[r.coll].push(r));r.series=r.series||[];f.inverted&&!r.isZAxis&&c&&void 0===r.reversed&&(r.reversed=!0);w(b,function(f,b){a.isFunction(f)&&E(r,b,f)});r.lin2log=l.linearToLogConverter||r.lin2log;r.isLog&&(r.val2lin=r.log2lin,r.lin2val=r.lin2log);d(this,"afterInit")},setOptions:function(a){this.options=x(this.defaultOptions,"yAxis"===this.coll&&
this.defaultYAxisOptions,[this.defaultTopAxisOptions,this.defaultRightAxisOptions,this.defaultBottomAxisOptions,this.defaultLeftAxisOptions][this.side],x(t[this.coll],a));d(this,"afterSetOptions",{userOptions:a})},defaultLabelFormatter:function(){var f=this.axis,b=this.value,c=f.chart.time,d=f.categories,l=this.dateTimeLabelFormat,p=t.lang,k=p.numericSymbols,p=p.numericSymbolMagnitude||1E3,e=k&&k.length,g,A=f.options.labels.format,f=f.isLog?Math.abs(b):f.tickInterval;if(A)g=m(A,this,c);else if(d)g=
b;else if(l)g=c.dateFormat(l,b);else if(e&&1E3<=f)for(;e--&&void 0===g;)c=Math.pow(p,e+1),f>=c&&0===10*b%c&&null!==k[e]&&0!==b&&(g=a.numberFormat(b/c,-1)+k[e]);void 0===g&&(g=1E4<=Math.abs(b)?a.numberFormat(b,-1):a.numberFormat(b,-1,void 0,""));return g},getSeriesExtremes:function(){var a=this,b=a.chart,c;d(this,"getSeriesExtremes",null,function(){a.hasVisibleSeries=!1;a.dataMin=a.dataMax=a.threshold=null;a.softThreshold=!a.isXAxis;a.buildStacks&&a.buildStacks();a.series.forEach(function(f){if(f.visible||
!b.options.chart.ignoreHiddenSeries){var r=f.options,d=r.threshold,l,k;a.hasVisibleSeries=!0;a.positiveValuesOnly&&0>=d&&(d=null);if(a.isXAxis)r=f.xData,r.length&&(c=f.getXExtremes(r),l=c.min,k=c.max,p(l)||l instanceof Date||(r=r.filter(p),c=f.getXExtremes(r),l=c.min,k=c.max),r.length&&(a.dataMin=Math.min(F(a.dataMin,l),l),a.dataMax=Math.max(F(a.dataMax,k),k)));else if(f.getExtremes(),k=f.dataMax,l=f.dataMin,u(l)&&u(k)&&(a.dataMin=Math.min(F(a.dataMin,l),l),a.dataMax=Math.max(F(a.dataMax,k),k)),u(d)&&
(a.threshold=d),!r.softThreshold||a.positiveValuesOnly)a.softThreshold=!1}})});d(this,"afterGetSeriesExtremes")},translate:function(a,b,c,d,l,k){var f=this.linkedParent||this,r=1,e=0,g=d?f.oldTransA:f.transA;d=d?f.oldMin:f.min;var m=f.minPixelPadding;l=(f.isOrdinal||f.isBroken||f.isLog&&l)&&f.lin2val;g||(g=f.transA);c&&(r*=-1,e=f.len);f.reversed&&(r*=-1,e-=r*(f.sector||f.len));b?(a=(a*r+e-m)/g+d,l&&(a=f.lin2val(a))):(l&&(a=f.val2lin(a)),a=p(d)?r*(a-d)*g+e+r*m+(p(k)?g*k:0):void 0);return a},toPixels:function(a,
b){return this.translate(a,!1,!this.horiz,null,!0)+(b?0:this.pos)},toValue:function(a,b){return this.translate(a-(b?0:this.pos),!0,!this.horiz,null,!0)},getPlotLinePath:function(a){var f=this,b=f.chart,c=f.left,l=f.top,k=a.old,e=a.value,g=a.translatedValue,m=a.lineWidth,A=a.force,x,D,n,w,z=k&&b.oldChartHeight||b.chartHeight,h=k&&b.oldChartWidth||b.chartWidth,C,I=f.transB,q=function(a,f,b){if("pass"!==A&&a<f||a>b)A?a=Math.min(Math.max(f,a),b):C=!0;return a};a={value:e,lineWidth:m,old:k,force:A,acrossPanes:a.acrossPanes,
translatedValue:g};d(this,"getPlotLinePath",a,function(a){g=F(g,f.translate(e,null,null,k));g=Math.min(Math.max(-1E5,g),1E5);x=n=Math.round(g+I);D=w=Math.round(z-g-I);p(g)?f.horiz?(D=l,w=z-f.bottom,x=n=q(x,c,c+f.width)):(x=c,n=h-f.right,D=w=q(D,l,l+f.height)):(C=!0,A=!1);a.path=C&&!A?null:b.renderer.crispLine(["M",x,D,"L",n,w],m||1)});return a.path},getLinearTickPositions:function(a,b,c){var f,r=q(Math.floor(b/a)*a);c=q(Math.ceil(c/a)*a);var d=[],l;q(r+a)===r&&(l=20);if(this.single)return[b];for(b=
r;b<=c;){d.push(b);b=q(b+a,l);if(b===f)break;f=b}return d},getMinorTickInterval:function(){var a=this.options;return!0===a.minorTicks?F(a.minorTickInterval,"auto"):!1===a.minorTicks?null:a.minorTickInterval},getMinorTickPositions:function(){var a=this,b=a.options,c=a.tickPositions,d=a.minorTickInterval,l=[],p=a.pointRangePadding||0,k=a.min-p,p=a.max+p,g=p-k;if(g&&g/d<a.len/3)if(a.isLog)this.paddedTicks.forEach(function(f,b,c){b&&l.push.apply(l,a.getLogTickPositions(d,c[b-1],c[b],!0))});else if(a.isDatetimeAxis&&
"auto"===this.getMinorTickInterval())l=l.concat(a.getTimeTicks(a.normalizeTimeTickInterval(d),k,p,b.startOfWeek));else for(b=k+(c[0]-k)%d;b<=p&&b!==l[0];b+=d)l.push(b);0!==l.length&&a.trimTicks(l);return l},adjustForMinRange:function(){var a=this.options,b=this.min,c=this.max,d,l,p,k,g,e,m,A;this.isXAxis&&void 0===this.minRange&&!this.isLog&&(u(a.min)||u(a.max)?this.minRange=null:(this.series.forEach(function(a){e=a.xData;for(k=m=a.xIncrement?1:e.length-1;0<k;k--)if(g=e[k]-e[k-1],void 0===p||g<p)p=
g}),this.minRange=Math.min(5*p,this.dataMax-this.dataMin)));c-b<this.minRange&&(l=this.dataMax-this.dataMin>=this.minRange,A=this.minRange,d=(A-c+b)/2,d=[b-d,F(a.min,b-d)],l&&(d[2]=this.isLog?this.log2lin(this.dataMin):this.dataMin),b=B(d),c=[b+A,F(a.max,b+A)],l&&(c[2]=this.isLog?this.log2lin(this.dataMax):this.dataMax),c=h(c),c-b<A&&(d[0]=c-A,d[1]=F(a.min,c-A),b=B(d)));this.min=b;this.max=c},getClosest:function(){var a;this.categories?a=1:this.series.forEach(function(f){var b=f.closestPointRange,
c=f.visible||!f.chart.options.chart.ignoreHiddenSeries;!f.noSharedTooltip&&u(b)&&c&&(a=u(a)?Math.min(a,b):b)});return a},nameToX:function(a){var f=k(this.categories),b=f?this.categories:this.names,c=a.options.x,d;a.series.requireSorting=!1;u(c)||(c=!1===this.options.uniqueNames?a.series.autoIncrement():f?b.indexOf(a.name):F(b.keys[a.name],-1));-1===c?f||(d=b.length):d=c;void 0!==d&&(this.names[d]=a.name,this.names.keys[a.name]=d);return d},updateNames:function(){var a=this,b=this.names;0<b.length&&
(Object.keys(b.keys).forEach(function(a){delete b.keys[a]}),b.length=0,this.minRange=this.userMinRange,(this.series||[]).forEach(function(f){f.xIncrement=null;if(!f.points||f.isDirtyData)a.max=Math.max(a.max,f.xData.length-1),f.processData(),f.generatePoints();f.data.forEach(function(b,c){var r;b&&b.options&&void 0!==b.name&&(r=a.nameToX(b),void 0!==r&&r!==b.x&&(b.x=r,f.xData[c]=r))})}))},setAxisTranslation:function(a){var f=this,b=f.max-f.min,p=f.axisPointRange||0,k,g=0,e=0,A=f.linkedParent,m=!!f.categories,
x=f.transA,D=f.isXAxis;if(D||m||p)k=f.getClosest(),A?(g=A.minPointOffset,e=A.pointRangePadding):f.series.forEach(function(a){var b=m?1:D?F(a.options.pointRange,k,0):f.axisPointRange||0,r=a.options.pointPlacement;p=Math.max(p,b);if(!f.single||m)a=l.xrange&&a instanceof l.xrange?!D:D,g=Math.max(g,a&&c(r)?0:b/2),e=Math.max(e,a&&"on"===r?0:b)}),A=f.ordinalSlope&&k?f.ordinalSlope/k:1,f.minPointOffset=g*=A,f.pointRangePadding=e*=A,f.pointRange=Math.min(p,b),D&&(f.closestPointRange=k);a&&(f.oldTransA=x);
f.translationSlope=f.transA=x=f.staticScale||f.len/(b+e||1);f.transB=f.horiz?f.left:f.bottom;f.minPixelPadding=x*g;d(this,"afterSetAxisTranslation")},minFromRange:function(){return this.max-this.range},setTickInterval:function(f){var c=this,l=c.chart,k=c.options,g=c.isLog,e=c.isDatetimeAxis,A=c.isXAxis,m=c.isLinked,x=k.maxPadding,D=k.minPadding,n,w=k.tickInterval,z=k.tickPixelInterval,h=c.categories,C=p(c.threshold)?c.threshold:null,I=c.softThreshold,t,v,B;e||h||m||this.getTickAmount();v=F(c.userMin,
k.min);B=F(c.userMax,k.max);m?(c.linkedParent=l[c.coll][k.linkedTo],n=c.linkedParent.getExtremes(),c.min=F(n.min,n.dataMin),c.max=F(n.max,n.dataMax),k.type!==c.linkedParent.options.type&&a.error(11,1,l)):(!I&&u(C)&&(c.dataMin>=C?(n=C,D=0):c.dataMax<=C&&(t=C,x=0)),c.min=F(v,n,c.dataMin),c.max=F(B,t,c.dataMax));g&&(c.positiveValuesOnly&&!f&&0>=Math.min(c.min,F(c.dataMin,c.min))&&a.error(10,1,l),c.min=q(c.log2lin(c.min),15),c.max=q(c.log2lin(c.max),15));c.range&&u(c.max)&&(c.userMin=c.min=v=Math.max(c.dataMin,
c.minFromRange()),c.userMax=B=c.max,c.range=null);d(c,"foundExtremes");c.beforePadding&&c.beforePadding();c.adjustForMinRange();!(h||c.axisPointRange||c.usePercentage||m)&&u(c.min)&&u(c.max)&&(l=c.max-c.min)&&(!u(v)&&D&&(c.min-=l*D),!u(B)&&x&&(c.max+=l*x));p(k.softMin)&&!p(c.userMin)&&k.softMin<c.min&&(c.min=v=k.softMin);p(k.softMax)&&!p(c.userMax)&&k.softMax>c.max&&(c.max=B=k.softMax);p(k.floor)&&(c.min=Math.min(Math.max(c.min,k.floor),Number.MAX_VALUE));p(k.ceiling)&&(c.max=Math.max(Math.min(c.max,
k.ceiling),F(c.userMax,-Number.MAX_VALUE)));I&&u(c.dataMin)&&(C=C||0,!u(v)&&c.min<C&&c.dataMin>=C?c.min=c.options.minRange?Math.min(C,c.max-c.minRange):C:!u(B)&&c.max>C&&c.dataMax<=C&&(c.max=c.options.minRange?Math.max(C,c.min+c.minRange):C));c.tickInterval=c.min===c.max||void 0===c.min||void 0===c.max?1:m&&!w&&z===c.linkedParent.options.tickPixelInterval?w=c.linkedParent.tickInterval:F(w,this.tickAmount?(c.max-c.min)/Math.max(this.tickAmount-1,1):void 0,h?1:(c.max-c.min)*z/Math.max(c.len,z));A&&
!f&&c.series.forEach(function(a){a.processData(c.min!==c.oldMin||c.max!==c.oldMax)});c.setAxisTranslation(!0);c.beforeSetTickPositions&&c.beforeSetTickPositions();c.postProcessTickInterval&&(c.tickInterval=c.postProcessTickInterval(c.tickInterval));c.pointRange&&!w&&(c.tickInterval=Math.max(c.pointRange,c.tickInterval));f=F(k.minTickInterval,c.isDatetimeAxis&&c.closestPointRange);!w&&c.tickInterval<f&&(c.tickInterval=f);e||g||w||(c.tickInterval=K(c.tickInterval,null,b(c.tickInterval),F(k.allowDecimals,
!(.5<c.tickInterval&&5>c.tickInterval&&1E3<c.max&&9999>c.max)),!!this.tickAmount));this.tickAmount||(c.tickInterval=c.unsquish());this.setTickPositions()},setTickPositions:function(){var f=this.options,c,b=f.tickPositions;c=this.getMinorTickInterval();var l=f.tickPositioner,k=f.startOnTick,p=f.endOnTick;this.tickmarkOffset=this.categories&&"between"===f.tickmarkPlacement&&1===this.tickInterval?.5:0;this.minorTickInterval="auto"===c&&this.tickInterval?this.tickInterval/5:c;this.single=this.min===this.max&&
u(this.min)&&!this.tickAmount&&(parseInt(this.min,10)===this.min||!1!==f.allowDecimals);this.tickPositions=c=b&&b.slice();!c&&(!this.ordinalPositions&&(this.max-this.min)/this.tickInterval>Math.max(2*this.len,200)?(c=[this.min,this.max],a.error(19,!1,this.chart)):c=this.isDatetimeAxis?this.getTimeTicks(this.normalizeTimeTickInterval(this.tickInterval,f.units),this.min,this.max,f.startOfWeek,this.ordinalPositions,this.closestPointRange,!0):this.isLog?this.getLogTickPositions(this.tickInterval,this.min,
this.max):this.getLinearTickPositions(this.tickInterval,this.min,this.max),c.length>this.len&&(c=[c[0],c.pop()],c[0]===c[1]&&(c.length=1)),this.tickPositions=c,l&&(l=l.apply(this,[this.min,this.max])))&&(this.tickPositions=c=l);this.paddedTicks=c.slice(0);this.trimTicks(c,k,p);this.isLinked||(this.single&&2>c.length&&!this.categories&&(this.min-=.5,this.max+=.5),b||l||this.adjustTickAmount());d(this,"afterSetTickPositions")},trimTicks:function(a,c,b){var f=a[0],l=a[a.length-1],k=this.minPointOffset||
0;d(this,"trimTicks");if(!this.isLinked){if(c&&-Infinity!==f)this.min=f;else for(;this.min-k>a[0];)a.shift();if(b)this.max=l;else for(;this.max+k<a[a.length-1];)a.pop();0===a.length&&u(f)&&!this.options.tickPositions&&a.push((l+f)/2)}},alignToOthers:function(){var a={},c,b=this.options;!1===this.chart.options.chart.alignTicks||!1===b.alignTicks||!1===b.startOnTick||!1===b.endOnTick||this.isLog||this.chart[this.coll].forEach(function(f){var b=f.options,b=[f.horiz?b.left:b.top,b.width,b.height,b.pane].join();
f.series.length&&(a[b]?c=!0:a[b]=1)});return c},getTickAmount:function(){var a=this.options,c=a.tickAmount,b=a.tickPixelInterval;!u(a.tickInterval)&&this.len<b&&!this.isRadial&&!this.isLog&&a.startOnTick&&a.endOnTick&&(c=2);!c&&this.alignToOthers()&&(c=Math.ceil(this.len/b)+1);4>c&&(this.finalTickAmt=c,c=5);this.tickAmount=c},adjustTickAmount:function(){var a=this.options,c=this.tickInterval,b=this.tickPositions,d=this.tickAmount,l=this.finalTickAmt,k=b&&b.length,p=F(this.threshold,this.softThreshold?
0:null),g;if(this.hasData()){if(k<d){for(g=this.min;b.length<d;)b.length%2||g===p?b.push(q(b[b.length-1]+c)):b.unshift(q(b[0]-c));this.transA*=(k-1)/(d-1);this.min=a.startOnTick?b[0]:Math.min(this.min,b[0]);this.max=a.endOnTick?b[b.length-1]:Math.max(this.max,b[b.length-1])}else k>d&&(this.tickInterval*=2,this.setTickPositions());if(u(l)){for(c=a=b.length;c--;)(3===l&&1===c%2||2>=l&&0<c&&c<a-1)&&b.splice(c,1);this.finalTickAmt=void 0}}},setScale:function(){var a=this.series.some(function(a){return a.isDirtyData||
a.isDirty||a.xAxis.isDirty}),c;this.oldMin=this.min;this.oldMax=this.max;this.oldAxisLength=this.len;this.setAxisSize();(c=this.len!==this.oldAxisLength)||a||this.isLinked||this.forceRedraw||this.userMin!==this.oldUserMin||this.userMax!==this.oldUserMax||this.alignToOthers()?(this.resetStacks&&this.resetStacks(),this.forceRedraw=!1,this.getSeriesExtremes(),this.setTickInterval(),this.oldUserMin=this.userMin,this.oldUserMax=this.userMax,this.isDirty||(this.isDirty=c||this.min!==this.oldMin||this.max!==
this.oldMax)):this.cleanStacks&&this.cleanStacks();d(this,"afterSetScale")},setExtremes:function(a,c,b,l,k){var f=this,p=f.chart;b=F(b,!0);f.series.forEach(function(a){delete a.kdTree});k=g(k,{min:a,max:c});d(f,"setExtremes",k,function(){f.userMin=a;f.userMax=c;f.eventArgs=k;b&&p.redraw(l)})},zoom:function(a,c){var f=this.dataMin,b=this.dataMax,l=this.options,k=Math.min(f,F(l.min,f)),p=Math.max(b,F(l.max,b));a={newMin:a,newMax:c};d(this,"zoom",a,function(a){var c=a.newMin,d=a.newMax;if(c!==this.min||
d!==this.max)this.allowZoomOutside||(u(f)&&(c<k&&(c=k),c>p&&(c=p)),u(b)&&(d<k&&(d=k),d>p&&(d=p))),this.displayBtn=void 0!==c||void 0!==d,this.setExtremes(c,d,!1,void 0,{trigger:"zoom"});a.zoomed=!0});return a.zoomed},setAxisSize:function(){var f=this.chart,c=this.options,b=c.offsets||[0,0,0,0],d=this.horiz,l=this.width=Math.round(a.relativeLength(F(c.width,f.plotWidth-b[3]+b[1]),f.plotWidth)),k=this.height=Math.round(a.relativeLength(F(c.height,f.plotHeight-b[0]+b[2]),f.plotHeight)),p=this.top=Math.round(a.relativeLength(F(c.top,
f.plotTop+b[0]),f.plotHeight,f.plotTop)),c=this.left=Math.round(a.relativeLength(F(c.left,f.plotLeft+b[3]),f.plotWidth,f.plotLeft));this.bottom=f.chartHeight-k-p;this.right=f.chartWidth-l-c;this.len=Math.max(d?l:k,0);this.pos=d?c:p},getExtremes:function(){var a=this.isLog;return{min:a?q(this.lin2log(this.min)):this.min,max:a?q(this.lin2log(this.max)):this.max,dataMin:this.dataMin,dataMax:this.dataMax,userMin:this.userMin,userMax:this.userMax}},getThreshold:function(a){var f=this.isLog,c=f?this.lin2log(this.min):
this.min,f=f?this.lin2log(this.max):this.max;null===a||-Infinity===a?a=c:Infinity===a?a=f:c>a?a=c:f<a&&(a=f);return this.translate(a,0,1,0,1)},autoLabelAlign:function(a){var f=(F(a,0)-90*this.side+720)%360;a={align:"center"};d(this,"autoLabelAlign",a,function(a){15<f&&165>f?a.align="right":195<f&&345>f&&(a.align="left")});return a.align},tickSize:function(a){var f=this.options,c=f[a+"Length"],b=F(f[a+"Width"],"tick"===a&&this.isXAxis&&!this.categories?1:0),l;b&&c&&("inside"===f[a+"Position"]&&(c=
-c),l=[c,b]);a={tickSize:l};d(this,"afterTickSize",a);return a.tickSize},labelMetrics:function(){var a=this.tickPositions&&this.tickPositions[0]||0;return this.chart.renderer.fontMetrics(this.options.labels.style&&this.options.labels.style.fontSize,this.ticks[a]&&this.ticks[a].label)},unsquish:function(){var a=this.options.labels,c=this.horiz,b=this.tickInterval,d=b,l=this.len/(((this.categories?1:0)+this.max-this.min)/b),k,p=a.rotation,g=this.labelMetrics(),e,A=Number.MAX_VALUE,m,x=this.max-this.min,
D=function(a){var f=a/(l||1),f=1<f?Math.ceil(f):1;f*b>x&&Infinity!==a&&Infinity!==l&&(f=Math.ceil(x/b));return q(f*b)};c?(m=!a.staggerLines&&!a.step&&(u(p)?[p]:l<F(a.autoRotationLimit,80)&&a.autoRotation))&&m.forEach(function(a){var f;if(a===p||a&&-90<=a&&90>=a)e=D(Math.abs(g.h/Math.sin(v*a))),f=e+Math.abs(a/360),f<A&&(A=f,k=a,d=e)}):a.step||(d=D(g.h));this.autoRotation=m;this.labelRotation=F(k,p);return d},getSlotWidth:function(a){var f=this.chart,c=this.horiz,b=this.options.labels,d=Math.max(this.tickPositions.length-
(this.categories?0:1),1),l=f.margin[3];return a&&a.slotWidth||c&&2>(b.step||0)&&!b.rotation&&(this.staggerLines||1)*this.len/d||!c&&(b.style&&parseInt(b.style.width,10)||l&&l-f.spacing[3]||.33*f.chartWidth)},renderUnsquish:function(){var a=this.chart,b=a.renderer,d=this.tickPositions,l=this.ticks,k=this.options.labels,p=k&&k.style||{},g=this.horiz,e=this.getSlotWidth(),A=Math.max(1,Math.round(e-2*(k.padding||5))),m={},x=this.labelMetrics(),D=k.style&&k.style.textOverflow,n,w,z=0,C;c(k.rotation)||
(m.rotation=k.rotation||0);d.forEach(function(a){(a=l[a])&&a.label&&a.label.textPxLength>z&&(z=a.label.textPxLength)});this.maxLabelLength=z;if(this.autoRotation)z>A&&z>x.h?m.rotation=this.labelRotation:this.labelRotation=0;else if(e&&(n=A,!D))for(w="clip",A=d.length;!g&&A--;)if(C=d[A],C=l[C].label)C.styles&&"ellipsis"===C.styles.textOverflow?C.css({textOverflow:"clip"}):C.textPxLength>e&&C.css({width:e+"px"}),C.getBBox().height>this.len/d.length-(x.h-x.f)&&(C.specificTextOverflow="ellipsis");m.rotation&&
(n=z>.5*a.chartHeight?.33*a.chartHeight:z,D||(w="ellipsis"));if(this.labelAlign=k.align||this.autoLabelAlign(this.labelRotation))m.align=this.labelAlign;d.forEach(function(a){var f=(a=l[a])&&a.label,c=p.width,b={};f&&(f.attr(m),a.shortenLabel?a.shortenLabel():n&&!c&&"nowrap"!==p.whiteSpace&&(n<f.textPxLength||"SPAN"===f.element.tagName)?(b.width=n,D||(b.textOverflow=f.specificTextOverflow||w),f.css(b)):f.styles&&f.styles.width&&!b.width&&!c&&f.css({width:null}),delete f.specificTextOverflow,a.rotation=
m.rotation)},this);this.tickRotCorr=b.rotCorr(x.b,this.labelRotation||0,0!==this.side)},hasData:function(){return this.series.some(function(a){return a.hasData()})||this.options.showEmpty&&u(this.min)&&u(this.max)},addTitle:function(a){var f=this.chart.renderer,c=this.horiz,b=this.opposite,d=this.options.title,l,k=this.chart.styledMode;this.axisTitle||((l=d.textAlign)||(l=(c?{low:"left",middle:"center",high:"right"}:{low:b?"right":"left",middle:"center",high:b?"left":"right"})[d.align]),this.axisTitle=
f.text(d.text,0,0,d.useHTML).attr({zIndex:7,rotation:d.rotation||0,align:l}).addClass("highcharts-axis-title"),k||this.axisTitle.css(x(d.style)),this.axisTitle.add(this.axisGroup),this.axisTitle.isNew=!0);k||d.style.width||this.isRadial||this.axisTitle.css({width:this.len});this.axisTitle[a?"show":"hide"](!0)},generateTick:function(a){var f=this.ticks;f[a]?f[a].addLabel():f[a]=new z(this,a)},getOffset:function(){var a=this,c=a.chart,b=c.renderer,l=a.options,k=a.tickPositions,p=a.ticks,g=a.horiz,e=
a.side,A=c.inverted&&!a.isZAxis?[1,0,3,2][e]:e,m,x,D=0,n,z=0,C=l.title,h=l.labels,I=0,q=c.axisOffset,c=c.clipOffset,K=[-1,1,1,-1][e],t=l.className,v=a.axisParent;m=a.hasData();a.showAxis=x=m||F(l.showEmpty,!0);a.staggerLines=a.horiz&&h.staggerLines;a.axisGroup||(a.gridGroup=b.g("grid").attr({zIndex:l.gridZIndex||1}).addClass("highcharts-"+this.coll.toLowerCase()+"-grid "+(t||"")).add(v),a.axisGroup=b.g("axis").attr({zIndex:l.zIndex||2}).addClass("highcharts-"+this.coll.toLowerCase()+" "+(t||"")).add(v),
a.labelGroup=b.g("axis-labels").attr({zIndex:h.zIndex||7}).addClass("highcharts-"+a.coll.toLowerCase()+"-labels "+(t||"")).add(v));m||a.isLinked?(k.forEach(function(c,b){a.generateTick(c,b)}),a.renderUnsquish(),a.reserveSpaceDefault=0===e||2===e||{1:"left",3:"right"}[e]===a.labelAlign,F(h.reserveSpace,"center"===a.labelAlign?!0:null,a.reserveSpaceDefault)&&k.forEach(function(a){I=Math.max(p[a].getLabelSize(),I)}),a.staggerLines&&(I*=a.staggerLines),a.labelOffset=I*(a.opposite?-1:1)):w(p,function(a,
c){a.destroy();delete p[c]});C&&C.text&&!1!==C.enabled&&(a.addTitle(x),x&&!1!==C.reserveSpace&&(a.titleOffset=D=a.axisTitle.getBBox()[g?"height":"width"],n=C.offset,z=u(n)?0:F(C.margin,g?5:10)));a.renderLine();a.offset=K*F(l.offset,q[e]?q[e]+(l.margin||0):0);a.tickRotCorr=a.tickRotCorr||{x:0,y:0};b=0===e?-a.labelMetrics().h:2===e?a.tickRotCorr.y:0;z=Math.abs(I)+z;I&&(z=z-b+K*(g?F(h.y,a.tickRotCorr.y+8*K):h.x));a.axisTitleMargin=F(n,z);a.getMaxLabelDimensions&&(a.maxLabelDimensions=a.getMaxLabelDimensions(p,
k));g=this.tickSize("tick");q[e]=Math.max(q[e],a.axisTitleMargin+D+K*a.offset,z,k&&k.length&&g?g[0]+K*a.offset:0);l=l.offset?0:2*Math.floor(a.axisLine.strokeWidth()/2);c[A]=Math.max(c[A],l);d(this,"afterGetOffset")},getLinePath:function(a){var c=this.chart,b=this.opposite,f=this.offset,d=this.horiz,l=this.left+(b?this.width:0)+f,f=c.chartHeight-this.bottom-(b?this.height:0)+f;b&&(a*=-1);return c.renderer.crispLine(["M",d?this.left:l,d?f:this.top,"L",d?c.chartWidth-this.right:l,d?f:c.chartHeight-this.bottom],
a)},renderLine:function(){this.axisLine||(this.axisLine=this.chart.renderer.path().addClass("highcharts-axis-line").add(this.axisGroup),this.chart.styledMode||this.axisLine.attr({stroke:this.options.lineColor,"stroke-width":this.options.lineWidth,zIndex:7}))},getTitlePosition:function(){var a=this.horiz,c=this.left,b=this.top,l=this.len,k=this.options.title,p=a?c:b,e=this.opposite,g=this.offset,A=k.x||0,m=k.y||0,x=this.axisTitle,D=this.chart.renderer.fontMetrics(k.style&&k.style.fontSize,x),x=Math.max(x.getBBox(null,
0).height-D.h-1,0),l={low:p+(a?0:l),middle:p+l/2,high:p+(a?l:0)}[k.align],c=(a?b+this.height:c)+(a?1:-1)*(e?-1:1)*this.axisTitleMargin+[-x,x,D.f,-x][this.side],a={x:a?l+A:c+(e?this.width:0)+g+A,y:a?c+m-(e?this.height:0)+g:l+m};d(this,"afterGetTitlePosition",{titlePosition:a});return a},renderMinorTick:function(a){var c=this.chart.hasRendered&&p(this.oldMin),b=this.minorTicks;b[a]||(b[a]=new z(this,a,"minor"));c&&b[a].isNew&&b[a].render(null,!0);b[a].render(null,!1,1)},renderTick:function(a,c){var b=
this.isLinked,f=this.ticks,d=this.chart.hasRendered&&p(this.oldMin);if(!b||a>=this.min&&a<=this.max)f[a]||(f[a]=new z(this,a)),d&&f[a].isNew&&f[a].render(c,!0,-1),f[a].render(c)},render:function(){var c=this,b=c.chart,l=c.options,k=c.isLog,e=c.isLinked,g=c.tickPositions,m=c.axisTitle,x=c.ticks,D=c.minorTicks,n=c.alternateBands,C=l.stackLabels,h=l.alternateGridColor,I=c.tickmarkOffset,q=c.axisLine,F=c.showAxis,K=H(b.renderer.globalAnimation),t,v;c.labelEdge.length=0;c.overlap=!1;[x,D,n].forEach(function(a){w(a,
function(a){a.isActive=!1})});if(c.hasData()||e)c.minorTickInterval&&!c.categories&&c.getMinorTickPositions().forEach(function(a){c.renderMinorTick(a)}),g.length&&(g.forEach(function(a,b){c.renderTick(a,b)}),I&&(0===c.min||c.single)&&(x[-1]||(x[-1]=new z(c,-1,null,!0)),x[-1].render(-1))),h&&g.forEach(function(f,l){v=void 0!==g[l+1]?g[l+1]+I:c.max-I;0===l%2&&f<c.max&&v<=c.max+(b.polar?-I:I)&&(n[f]||(n[f]=new a.PlotLineOrBand(c)),t=f+I,n[f].options={from:k?c.lin2log(t):t,to:k?c.lin2log(v):v,color:h},
n[f].render(),n[f].isActive=!0)}),c._addedPlotLB||((l.plotLines||[]).concat(l.plotBands||[]).forEach(function(a){c.addPlotBandOrLine(a)}),c._addedPlotLB=!0);[x,D,n].forEach(function(a){var c,f=[],l=K.duration;w(a,function(a,c){a.isActive||(a.render(c,!1,0),a.isActive=!1,f.push(c))});A(function(){for(c=f.length;c--;)a[f[c]]&&!a[f[c]].isActive&&(a[f[c]].destroy(),delete a[f[c]])},a!==n&&b.hasRendered&&l?l:0)});q&&(q[q.isPlaced?"animate":"attr"]({d:this.getLinePath(q.strokeWidth())}),q.isPlaced=!0,q[F?
"show":"hide"](!0));m&&F&&(l=c.getTitlePosition(),p(l.y)?(m[m.isNew?"attr":"animate"](l),m.isNew=!1):(m.attr("y",-9999),m.isNew=!0));C&&C.enabled&&c.renderStackTotals();c.isDirty=!1;d(this,"afterRender")},redraw:function(){this.visible&&(this.render(),this.plotLinesAndBands.forEach(function(a){a.render()}));this.series.forEach(function(a){a.isDirty=!0})},keepProps:"extKey hcEvents names series userMax userMin".split(" "),destroy:function(a){var c=this,b=c.stacks,f=c.plotLinesAndBands,l;d(this,"destroy",
{keepEvents:a});a||C(c);w(b,function(a,c){n(a);b[c]=null});[c.ticks,c.minorTicks,c.alternateBands].forEach(function(a){n(a)});if(f)for(a=f.length;a--;)f[a].destroy();"stackTotalGroup axisLine axisTitle axisGroup gridGroup labelGroup cross scrollbar".split(" ").forEach(function(a){c[a]&&(c[a]=c[a].destroy())});for(l in c.plotLinesAndBandsGroups)c.plotLinesAndBandsGroups[l]=c.plotLinesAndBandsGroups[l].destroy();w(c,function(a,b){-1===c.keepProps.indexOf(b)&&delete c[b]})},drawCrosshair:function(a,
c){var b,f=this.crosshair,l=F(f.snap,!0),k,p=this.cross;d(this,"drawCrosshair",{e:a,point:c});a||(a=this.cross&&this.cross.e);if(this.crosshair&&!1!==(u(c)||!l)){l?u(c)&&(k=F(c.crosshairPos,this.isXAxis?c.plotX:this.len-c.plotY)):k=a&&(this.horiz?a.chartX-this.pos:this.len-a.chartY+this.pos);u(k)&&(b=this.getPlotLinePath({value:c&&(this.isXAxis?c.x:F(c.stackY,c.y)),translatedValue:k})||null);if(!u(b)){this.hideCrosshair();return}l=this.categories&&!this.isRadial;p||(this.cross=p=this.chart.renderer.path().addClass("highcharts-crosshair highcharts-crosshair-"+
(l?"category ":"thin ")+f.className).attr({zIndex:F(f.zIndex,2)}).add(),this.chart.styledMode||(p.attr({stroke:f.color||(l?e("#ccd6eb").setOpacity(.25).get():"#cccccc"),"stroke-width":F(f.width,1)}).css({"pointer-events":"none"}),f.dashStyle&&p.attr({dashstyle:f.dashStyle})));p.show().attr({d:b});l&&!f.width&&p.attr({"stroke-width":this.transA});this.cross.e=a}else this.hideCrosshair();d(this,"afterDrawCrosshair",{e:a,point:c})},hideCrosshair:function(){this.cross&&this.cross.hide();d(this,"afterHideCrosshair")}});
return a.Axis=I});J(G,"parts/DateTimeAxis.js",[G["parts/Globals.js"]],function(a){var E=a.Axis,H=a.getMagnitude,B=a.normalizeTickInterval,h=a.timeUnits;E.prototype.getTimeTicks=function(){return this.chart.time.getTimeTicks.apply(this.chart.time,arguments)};E.prototype.normalizeTimeTickInterval=function(a,q){var e=q||[["millisecond",[1,2,5,10,20,25,50,100,200,500]],["second",[1,2,5,10,15,30]],["minute",[1,2,5,10,15,30]],["hour",[1,2,3,4,6,8,12]],["day",[1,2]],["week",[1,2]],["month",[1,2,3,4,6]],
["year",null]];q=e[e.length-1];var u=h[q[0]],v=q[1],n;for(n=0;n<e.length&&!(q=e[n],u=h[q[0]],v=q[1],e[n+1]&&a<=(u*v[v.length-1]+h[e[n+1][0]])/2);n++);u===h.year&&a<5*u&&(v=[1,2,5]);a=B(a/u,v,"year"===q[0]?Math.max(H(a/u),1):1);return{unitRange:u,count:a,unitName:q[0]}}});J(G,"parts/LogarithmicAxis.js",[G["parts/Globals.js"]],function(a){var E=a.Axis,H=a.getMagnitude,B=a.normalizeTickInterval,h=a.pick;E.prototype.getLogTickPositions=function(a,q,t,u){var e=this.options,n=this.len,g=[];u||(this._minorAutoInterval=
null);if(.5<=a)a=Math.round(a),g=this.getLinearTickPositions(a,q,t);else if(.08<=a)for(var n=Math.floor(q),d,m,b,k,p,e=.3<a?[1,2,4]:.15<a?[1,2,4,6,8]:[1,2,3,4,5,6,7,8,9];n<t+1&&!p;n++)for(m=e.length,d=0;d<m&&!p;d++)b=this.log2lin(this.lin2log(n)*e[d]),b>q&&(!u||k<=t)&&void 0!==k&&g.push(k),k>t&&(p=!0),k=b;else q=this.lin2log(q),t=this.lin2log(t),a=u?this.getMinorTickInterval():e.tickInterval,a=h("auto"===a?null:a,this._minorAutoInterval,e.tickPixelInterval/(u?5:1)*(t-q)/((u?n/this.tickPositions.length:
n)||1)),a=B(a,null,H(a)),g=this.getLinearTickPositions(a,q,t).map(this.log2lin),u||(this._minorAutoInterval=a/5);u||(this.tickInterval=a);return g};E.prototype.log2lin=function(a){return Math.log(a)/Math.LN10};E.prototype.lin2log=function(a){return Math.pow(10,a)}});J(G,"parts/PlotLineOrBand.js",[G["parts/Globals.js"],G["parts/Axis.js"]],function(a,E){var H=a.arrayMax,B=a.arrayMin,h=a.defined,e=a.destroyObjectProperties,q=a.erase,t=a.merge,u=a.pick;a.PlotLineOrBand=function(a,e){this.axis=a;e&&(this.options=
e,this.id=e.id)};a.PlotLineOrBand.prototype={render:function(){a.fireEvent(this,"render");var e=this,n=e.axis,g=n.horiz,d=e.options,m=d.label,b=e.label,k=d.to,p=d.from,c=d.value,x=h(p)&&h(k),q=h(c),w=e.svgElem,F=!w,C=[],l=d.color,D=u(d.zIndex,0),A=d.events,C={"class":"highcharts-plot-"+(x?"band ":"line ")+(d.className||"")},z={},I=n.chart.renderer,f=x?"bands":"lines";n.isLog&&(p=n.log2lin(p),k=n.log2lin(k),c=n.log2lin(c));n.chart.styledMode||(q?(C.stroke=l,C["stroke-width"]=d.width,d.dashStyle&&(C.dashstyle=
d.dashStyle)):x&&(l&&(C.fill=l),d.borderWidth&&(C.stroke=d.borderColor,C["stroke-width"]=d.borderWidth)));z.zIndex=D;f+="-"+D;(l=n.plotLinesAndBandsGroups[f])||(n.plotLinesAndBandsGroups[f]=l=I.g("plot-"+f).attr(z).add());F&&(e.svgElem=w=I.path().attr(C).add(l));if(q)C=n.getPlotLinePath({value:c,lineWidth:w.strokeWidth(),acrossPanes:d.acrossPanes});else if(x)C=n.getPlotBandPath(p,k,d);else return;(F||!w.d)&&C&&C.length?(w.attr({d:C}),A&&a.objectEach(A,function(a,c){w.on(c,function(a){A[c].apply(e,
[a])})})):w&&(C?(w.show(!0),w.animate({d:C})):w.d&&(w.hide(),b&&(e.label=b=b.destroy())));m&&h(m.text)&&C&&C.length&&0<n.width&&0<n.height&&!C.isFlat?(m=t({align:g&&x&&"center",x:g?!x&&4:10,verticalAlign:!g&&x&&"middle",y:g?x?16:10:x?6:-4,rotation:g&&!x&&90},m),this.renderLabel(m,C,x,D)):b&&b.hide();return e},renderLabel:function(a,e,g,d){var m=this.label,b=this.axis.chart.renderer;m||(m={align:a.textAlign||a.align,rotation:a.rotation,"class":"highcharts-plot-"+(g?"band":"line")+"-label "+(a.className||
"")},m.zIndex=d,this.label=m=b.text(a.text,0,0,a.useHTML).attr(m).add(),this.axis.chart.styledMode||m.css(a.style));d=e.xBounds||[e[1],e[4],g?e[6]:e[1]];e=e.yBounds||[e[2],e[5],g?e[7]:e[2]];g=B(d);b=B(e);m.align(a,!1,{x:g,y:b,width:H(d)-g,height:H(e)-b});m.show(!0)},destroy:function(){q(this.axis.plotLinesAndBands,this);delete this.axis;e(this)}};a.extend(E.prototype,{getPlotBandPath:function(a,e){var g=this.getPlotLinePath({value:e,force:!0,acrossPanes:this.options.acrossPanes}),d=this.getPlotLinePath({value:a,
force:!0,acrossPanes:this.options.acrossPanes}),m=[],b=this.horiz,k=1,p;a=a<this.min&&e<this.min||a>this.max&&e>this.max;if(d&&g)for(a&&(p=d.toString()===g.toString(),k=0),a=0;a<d.length;a+=6)b&&g[a+1]===d[a+1]?(g[a+1]+=k,g[a+4]+=k):b||g[a+2]!==d[a+2]||(g[a+2]+=k,g[a+5]+=k),m.push("M",d[a+1],d[a+2],"L",d[a+4],d[a+5],g[a+4],g[a+5],g[a+1],g[a+2],"z"),m.isFlat=p;return m},addPlotBand:function(a){return this.addPlotBandOrLine(a,"plotBands")},addPlotLine:function(a){return this.addPlotBandOrLine(a,"plotLines")},
addPlotBandOrLine:function(e,n){var g=(new a.PlotLineOrBand(this,e)).render(),d=this.userOptions;g&&(n&&(d[n]=d[n]||[],d[n].push(e)),this.plotLinesAndBands.push(g));return g},removePlotBandOrLine:function(a){for(var e=this.plotLinesAndBands,g=this.options,d=this.userOptions,m=e.length;m--;)e[m].id===a&&e[m].destroy();[g.plotLines||[],d.plotLines||[],g.plotBands||[],d.plotBands||[]].forEach(function(b){for(m=b.length;m--;)b[m].id===a&&q(b,b[m])})},removePlotBand:function(a){this.removePlotBandOrLine(a)},
removePlotLine:function(a){this.removePlotBandOrLine(a)}})});J(G,"parts/Tooltip.js",[G["parts/Globals.js"]],function(a){var E=a.doc,H=a.extend,B=a.format,h=a.isNumber,e=a.merge,q=a.pick,t=a.splat,u=a.syncTimeout,v=a.timeUnits;a.Tooltip=function(){this.init.apply(this,arguments)};a.Tooltip.prototype={init:function(a,e){this.chart=a;this.options=e;this.crosshairs=[];this.now={x:0,y:0};this.isHidden=!0;this.split=e.split&&!a.inverted;this.shared=e.shared||this.split;this.outside=q(e.outside,!(!a.scrollablePixelsX&&
!a.scrollablePixelsY))&&!this.split},cleanSplit:function(a){this.chart.series.forEach(function(e){var d=e&&e.tt;d&&(!d.isActive||a?e.tt=d.destroy():d.isActive=!1)})},applyFilter:function(){var a=this.chart;a.renderer.definition({tagName:"filter",id:"drop-shadow-"+a.index,opacity:.5,children:[{tagName:"feGaussianBlur","in":"SourceAlpha",stdDeviation:1},{tagName:"feOffset",dx:1,dy:1},{tagName:"feComponentTransfer",children:[{tagName:"feFuncA",type:"linear",slope:.3}]},{tagName:"feMerge",children:[{tagName:"feMergeNode"},
{tagName:"feMergeNode","in":"SourceGraphic"}]}]});a.renderer.definition({tagName:"style",textContent:".highcharts-tooltip-"+a.index+"{filter:url(#drop-shadow-"+a.index+")}"})},getLabel:function(){var e=this,g=this.chart.renderer,d=this.chart.styledMode,m=this.options,b,k;this.label||(this.outside&&(this.container=b=a.doc.createElement("div"),b.className="highcharts-tooltip-container",a.css(b,{position:"absolute",top:"1px",pointerEvents:m.style&&m.style.pointerEvents,zIndex:3}),a.doc.body.appendChild(b),
this.renderer=g=new a.Renderer(b,0,0)),this.split?this.label=g.g("tooltip"):(this.label=g.label("",0,0,m.shape||"callout",null,null,m.useHTML,null,"tooltip").attr({padding:m.padding,r:m.borderRadius}),d||this.label.attr({fill:m.backgroundColor,"stroke-width":m.borderWidth}).css(m.style).shadow(m.shadow)),d&&(this.applyFilter(),this.label.addClass("highcharts-tooltip-"+this.chart.index)),this.outside&&(k={x:this.label.xSetter,y:this.label.ySetter},this.label.xSetter=function(a,c){k[c].call(this.label,
e.distance);b.style.left=a+"px"},this.label.ySetter=function(a,c){k[c].call(this.label,e.distance);b.style.top=a+"px"}),this.label.attr({zIndex:8}).add());return this.label},update:function(a){this.destroy();e(!0,this.chart.options.tooltip.userOptions,a);this.init(this.chart,e(!0,this.options,a))},destroy:function(){this.label&&(this.label=this.label.destroy());this.split&&this.tt&&(this.cleanSplit(this.chart,!0),this.tt=this.tt.destroy());this.renderer&&(this.renderer=this.renderer.destroy(),a.discardElement(this.container));
a.clearTimeout(this.hideTimer);a.clearTimeout(this.tooltipTimeout)},move:function(e,g,d,m){var b=this,k=b.now,p=!1!==b.options.animation&&!b.isHidden&&(1<Math.abs(e-k.x)||1<Math.abs(g-k.y)),c=b.followPointer||1<b.len;H(k,{x:p?(2*k.x+e)/3:e,y:p?(k.y+g)/2:g,anchorX:c?void 0:p?(2*k.anchorX+d)/3:d,anchorY:c?void 0:p?(k.anchorY+m)/2:m});b.getLabel().attr(k);p&&(a.clearTimeout(this.tooltipTimeout),this.tooltipTimeout=setTimeout(function(){b&&b.move(e,g,d,m)},32))},hide:function(e){var g=this;a.clearTimeout(this.hideTimer);
e=q(e,this.options.hideDelay,500);this.isHidden||(this.hideTimer=u(function(){g.getLabel()[e?"fadeOut":"hide"]();g.isHidden=!0},e))},getAnchor:function(a,e){var d=this.chart,g=d.pointer,b=d.inverted,k=d.plotTop,p=d.plotLeft,c=0,x=0,h,w;a=t(a);this.followPointer&&e?(void 0===e.chartX&&(e=g.normalize(e)),a=[e.chartX-d.plotLeft,e.chartY-k]):a[0].tooltipPos?a=a[0].tooltipPos:(a.forEach(function(a){h=a.series.yAxis;w=a.series.xAxis;c+=a.plotX+(!b&&w?w.left-p:0);x+=(a.plotLow?(a.plotLow+a.plotHigh)/2:a.plotY)+
(!b&&h?h.top-k:0)}),c/=a.length,x/=a.length,a=[b?d.plotWidth-x:c,this.shared&&!b&&1<a.length&&e?e.chartY-k:b?d.plotHeight-c:x]);return a.map(Math.round)},getPosition:function(a,e,d){var g=this.chart,b=this.distance,k={},p=g.inverted&&d.h||0,c,x=this.outside,h=x?E.documentElement.clientWidth-2*b:g.chartWidth,w=x?Math.max(E.body.scrollHeight,E.documentElement.scrollHeight,E.body.offsetHeight,E.documentElement.offsetHeight,E.documentElement.clientHeight):g.chartHeight,n=g.pointer.chartPosition,C=["y",
w,e,(x?n.top-b:0)+d.plotY+g.plotTop,x?0:g.plotTop,x?w:g.plotTop+g.plotHeight],l=["x",h,a,(x?n.left-b:0)+d.plotX+g.plotLeft,x?0:g.plotLeft,x?h:g.plotLeft+g.plotWidth],D=!this.followPointer&&q(d.ttBelow,!g.inverted===!!d.negative),A=function(a,c,f,l,d,e){var g=f<l-b,A=l+b+f<c,m=l-b-f;l+=b;if(D&&A)k[a]=l;else if(!D&&g)k[a]=m;else if(g)k[a]=Math.min(e-f,0>m-p?m:m-p);else if(A)k[a]=Math.max(d,l+p+f>c?l:l+p);else return!1},z=function(a,c,f,l){var d;l<b||l>c-b?d=!1:k[a]=l<f/2?1:l>c-f/2?c-f-2:l-f/2;return d},
I=function(a){var b=C;C=l;l=b;c=a},f=function(){!1!==A.apply(0,C)?!1!==z.apply(0,l)||c||(I(!0),f()):c?k.x=k.y=0:(I(!0),f())};(g.inverted||1<this.len)&&I();f();return k},defaultFormatter:function(a){var e=this.points||t(this),d;d=[a.tooltipFooterHeaderFormatter(e[0])];d=d.concat(a.bodyFormatter(e));d.push(a.tooltipFooterHeaderFormatter(e[0],!0));return d},refresh:function(e,g){var d=this.chart,m=this.options,b,k=e,p,c={},x,h=[];x=m.formatter||this.defaultFormatter;var c=this.shared,w=d.styledMode,
n=[];m.enabled&&(a.clearTimeout(this.hideTimer),this.followPointer=t(k)[0].series.tooltipOptions.followPointer,p=this.getAnchor(k,g),g=p[0],b=p[1],!c||k.series&&k.series.noSharedTooltip?c=k.getLabelConfig():(n=d.pointer.getActiveSeries(k),d.series.forEach(function(a){(a.options.inactiveOtherPoints||-1===n.indexOf(a))&&a.setState("inactive",!0)}),k.forEach(function(a){a.setState("hover");h.push(a.getLabelConfig())}),c={x:k[0].category,y:k[0].y},c.points=h,k=k[0]),this.len=h.length,x=x.call(c,this),
c=k.series,this.distance=q(c.tooltipOptions.distance,16),!1===x?this.hide():(d=this.getLabel(),this.isHidden&&d.attr({opacity:1}).show(),this.split?this.renderSplit(x,t(e)):(m.style.width&&!w||d.css({width:this.chart.spacingBox.width}),d.attr({text:x&&x.join?x.join(""):x}),d.removeClass(/highcharts-color-[\d]+/g).addClass("highcharts-color-"+q(k.colorIndex,c.colorIndex)),w||d.attr({stroke:m.borderColor||k.color||c.color||"#666666"}),this.updatePosition({plotX:g,plotY:b,negative:k.negative,ttBelow:k.ttBelow,
h:p[2]||0})),this.isHidden=!1),a.fireEvent(this,"refresh"))},renderSplit:function(e,g){var d=this,m=[],b=this.chart,k=b.renderer,p=!0,c=this.options,x=0,h,w=this.getLabel(),n=b.plotTop;a.isString(e)&&(e=[!1,e]);e.slice(0,g.length+1).forEach(function(a,l){if(!1!==a&&""!==a){l=g[l-1]||{isHeader:!0,plotX:g[0].plotX,plotY:b.plotHeight};var e=l.series||d,A=e.tt,z=l.series||{},C="highcharts-color-"+q(l.colorIndex,z.colorIndex,"none");A||(A={padding:c.padding,r:c.borderRadius},b.styledMode||(A.fill=c.backgroundColor,
A["stroke-width"]=c.borderWidth),e.tt=A=k.label(null,null,null,(l.isHeader?c.headerShape:c.shape)||"callout",null,null,c.useHTML).addClass("highcharts-tooltip-box "+C).attr(A).add(w));A.isActive=!0;A.attr({text:a});b.styledMode||A.css(c.style).shadow(c.shadow).attr({stroke:c.borderColor||l.color||z.color||"#333333"});a=A.getBBox();z=a.width+A.strokeWidth();l.isHeader?(x=a.height,b.xAxis[0].opposite&&(h=!0,n-=x),z=Math.max(0,Math.min(l.plotX+b.plotLeft-z/2,b.chartWidth+(b.scrollablePixelsX?b.scrollablePixelsX-
b.marginRight:0)-z))):z=l.plotX+b.plotLeft-q(c.distance,16)-z;0>z&&(p=!1);a=(l.series&&l.series.yAxis&&l.series.yAxis.pos)+(l.plotY||0);a-=n;l.isHeader&&(a=h?-x:b.plotHeight+x);m.push({target:a,rank:l.isHeader?1:0,size:e.tt.getBBox().height+1,point:l,x:z,tt:A})}});this.cleanSplit();c.positioner&&m.forEach(function(a){var b=c.positioner.call(d,a.tt.getBBox().width,a.size,a.point);a.x=b.x;a.align=0;a.target=b.y;a.rank=q(b.rank,a.rank)});a.distribute(m,b.plotHeight+x);m.forEach(function(a){var l=a.point,
k=l.series;a.tt.attr({visibility:void 0===a.pos?"hidden":"inherit",x:p||l.isHeader||c.positioner?a.x:l.plotX+b.plotLeft+d.distance,y:a.pos+n,anchorX:l.isHeader?l.plotX+b.plotLeft:l.plotX+k.xAxis.pos,anchorY:l.isHeader?b.plotTop+b.plotHeight/2:l.plotY+k.yAxis.pos})})},updatePosition:function(a){var e=this.chart,d=this.getLabel(),m=(this.options.positioner||this.getPosition).call(this,d.width,d.height,a),b=a.plotX+e.plotLeft;a=a.plotY+e.plotTop;var k;this.outside&&(k=(this.options.borderWidth||0)+2*
this.distance,this.renderer.setSize(d.width+k,d.height+k,!1),b+=e.pointer.chartPosition.left-m.x,a+=e.pointer.chartPosition.top-m.y);this.move(Math.round(m.x),Math.round(m.y||0),b,a)},getDateFormat:function(a,e,d,m){var b=this.chart.time,k=b.dateFormat("%m-%d %H:%M:%S.%L",e),p,c,g={millisecond:15,second:12,minute:9,hour:6,day:3},h="millisecond";for(c in v){if(a===v.week&&+b.dateFormat("%w",e)===d&&"00:00:00.000"===k.substr(6)){c="week";break}if(v[c]>a){c=h;break}if(g[c]&&k.substr(g[c])!=="01-01 00:00:00.000".substr(g[c]))break;
"week"!==c&&(h=c)}c&&(p=b.resolveDTLFormat(m[c]).main);return p},getXDateFormat:function(a,e,d){e=e.dateTimeLabelFormats;var g=d&&d.closestPointRange;return(g?this.getDateFormat(g,a.x,d.options.startOfWeek,e):e.day)||e.year},tooltipFooterHeaderFormatter:function(e,g){var d=g?"footer":"header",m=e.series,b=m.tooltipOptions,k=b.xDateFormat,p=m.xAxis,c=p&&"datetime"===p.options.type&&h(e.key),x=b[d+"Format"];g={isFooter:g,labelConfig:e};a.fireEvent(this,"headerFormatter",g,function(a){c&&!k&&(k=this.getXDateFormat(e,
b,p));c&&k&&(e.point&&e.point.tooltipDateKeys||["key"]).forEach(function(a){x=x.replace("{point."+a+"}","{point."+a+":"+k+"}")});m.chart.styledMode&&(x=this.styledModeFormat(x));a.text=B(x,{point:e,series:m},this.chart.time)});return g.text},bodyFormatter:function(a){return a.map(function(a){var d=a.series.tooltipOptions;return(d[(a.point.formatPrefix||"point")+"Formatter"]||a.point.tooltipFormatter).call(a.point,d[(a.point.formatPrefix||"point")+"Format"]||"")})},styledModeFormat:function(a){return a.replace('style\x3d"font-size: 10px"',
'class\x3d"highcharts-header"').replace(/style="color:{(point|series)\.color}"/g,'class\x3d"highcharts-color-{$1.colorIndex}"')}}});J(G,"parts/Pointer.js",[G["parts/Globals.js"]],function(a){var E=a.addEvent,H=a.attr,B=a.charts,h=a.color,e=a.css,q=a.defined,t=a.extend,u=a.find,v=a.fireEvent,n=a.isNumber,g=a.isObject,d=a.offset,m=a.pick,b=a.splat,k=a.Tooltip;a.Pointer=function(a,c){this.init(a,c)};a.Pointer.prototype={init:function(a,c){this.options=c;this.chart=a;this.runChartClick=c.chart.events&&
!!c.chart.events.click;this.pinchDown=[];this.lastValidTouch={};k&&(a.tooltip=new k(a,c.tooltip),this.followTouchMove=m(c.tooltip.followTouchMove,!0));this.setDOMEvents()},zoomOption:function(a){var c=this.chart,b=c.options.chart,d=b.zoomType||"",c=c.inverted;/touch/.test(a.type)&&(d=m(b.pinchType,d));this.zoomX=a=/x/.test(d);this.zoomY=d=/y/.test(d);this.zoomHor=a&&!c||d&&c;this.zoomVert=d&&!c||a&&c;this.hasZoom=a||d},normalize:function(a,c){var b;b=a.touches?a.touches.length?a.touches.item(0):a.changedTouches[0]:
a;c||(this.chartPosition=c=d(this.chart.container));return t(a,{chartX:Math.round(b.pageX-c.left),chartY:Math.round(b.pageY-c.top)})},getCoordinates:function(a){var c={xAxis:[],yAxis:[]};this.chart.axes.forEach(function(b){c[b.isXAxis?"xAxis":"yAxis"].push({axis:b,value:b.toValue(a[b.horiz?"chartX":"chartY"])})});return c},findNearestKDPoint:function(a,c,b){var d;a.forEach(function(a){var k=!(a.noSharedTooltip&&c)&&0>a.options.findNearestPointBy.indexOf("y");a=a.searchPoint(b,k);if((k=g(a,!0))&&!(k=
!g(d,!0)))var k=d.distX-a.distX,e=d.dist-a.dist,l=(a.series.group&&a.series.group.zIndex)-(d.series.group&&d.series.group.zIndex),k=0<(0!==k&&c?k:0!==e?e:0!==l?l:d.series.index>a.series.index?-1:1);k&&(d=a)});return d},getPointFromEvent:function(a){a=a.target;for(var c;a&&!c;)c=a.point,a=a.parentNode;return c},getChartCoordinatesFromPoint:function(a,c){var b=a.series,d=b.xAxis,b=b.yAxis,k=m(a.clientX,a.plotX),e=a.shapeArgs;if(d&&b)return c?{chartX:d.len+d.pos-k,chartY:b.len+b.pos-a.plotY}:{chartX:k+
d.pos,chartY:a.plotY+b.pos};if(e&&e.x&&e.y)return{chartX:e.x,chartY:e.y}},getHoverData:function(a,c,b,d,k,e){var p,l=[];d=!(!d||!a);var x=c&&!c.stickyTracking?[c]:b.filter(function(a){return a.visible&&!(!k&&a.directTouch)&&m(a.options.enableMouseTracking,!0)&&a.stickyTracking});c=(p=d?a:this.findNearestKDPoint(x,k,e))&&p.series;p&&(k&&!c.noSharedTooltip?(x=b.filter(function(a){return a.visible&&!(!k&&a.directTouch)&&m(a.options.enableMouseTracking,!0)&&!a.noSharedTooltip}),x.forEach(function(a){var c=
u(a.points,function(a){return a.x===p.x&&!a.isNull});g(c)&&(a.chart.isBoosting&&(c=a.getPoint(c)),l.push(c))})):l.push(p));return{hoverPoint:p,hoverSeries:c,hoverPoints:l}},runPointActions:function(b,c){var d=this.chart,k=d.tooltip&&d.tooltip.options.enabled?d.tooltip:void 0,e=k?k.shared:!1,p=c||d.hoverPoint,g=p&&p.series||d.hoverSeries,g=this.getHoverData(p,g,d.series,"touchmove"!==b.type&&(!!c||g&&g.directTouch&&this.isDirectTouch),e,b),l=[],D,p=g.hoverPoint;D=g.hoverPoints;c=(g=g.hoverSeries)&&
g.tooltipOptions.followPointer;e=e&&g&&!g.noSharedTooltip;if(p&&(p!==d.hoverPoint||k&&k.isHidden)){(d.hoverPoints||[]).forEach(function(a){-1===D.indexOf(a)&&a.setState()});if(d.hoverSeries!==g)g.onMouseOver();l=this.getActiveSeries(D);d.series.forEach(function(a){(a.options.inactiveOtherPoints||-1===l.indexOf(a))&&a.setState("inactive",!0)});(D||[]).forEach(function(a){a.setState("hover")});d.hoverPoint&&d.hoverPoint.firePointEvent("mouseOut");if(!p.series)return;p.firePointEvent("mouseOver");d.hoverPoints=
D;d.hoverPoint=p;k&&k.refresh(e?D:p,b)}else c&&k&&!k.isHidden&&(p=k.getAnchor([{}],b),k.updatePosition({plotX:p[0],plotY:p[1]}));this.unDocMouseMove||(this.unDocMouseMove=E(d.container.ownerDocument,"mousemove",function(c){var b=B[a.hoverChartIndex];if(b)b.pointer.onDocumentMouseMove(c)}));d.axes.forEach(function(c){var d=m(c.crosshair.snap,!0),l=d?a.find(D,function(a){return a.series[c.coll]===c}):void 0;l||!d?c.drawCrosshair(b,l):c.hideCrosshair()})},getActiveSeries:function(a){var c=[],b;(a||[]).forEach(function(a){b=
a.series;c.push(b);b.linkedParent&&c.push(b.linkedParent);b.linkedSeries&&(c=c.concat(b.linkedSeries));b.navigatorSeries&&c.push(b.navigatorSeries)});return c},reset:function(a,c){var d=this.chart,k=d.hoverSeries,e=d.hoverPoint,p=d.hoverPoints,g=d.tooltip,l=g&&g.shared?p:e;a&&l&&b(l).forEach(function(c){c.series.isCartesian&&void 0===c.plotX&&(a=!1)});if(a)g&&l&&b(l).length&&(g.refresh(l),g.shared&&p?p.forEach(function(a){a.setState(a.state,!0);a.series.isCartesian&&(a.series.xAxis.crosshair&&a.series.xAxis.drawCrosshair(null,
a),a.series.yAxis.crosshair&&a.series.yAxis.drawCrosshair(null,a))}):e&&(e.setState(e.state,!0),d.axes.forEach(function(a){a.crosshair&&a.drawCrosshair(null,e)})));else{if(e)e.onMouseOut();p&&p.forEach(function(a){a.setState()});if(k)k.onMouseOut();g&&g.hide(c);this.unDocMouseMove&&(this.unDocMouseMove=this.unDocMouseMove());d.axes.forEach(function(a){a.hideCrosshair()});this.hoverX=d.hoverPoints=d.hoverPoint=null}},scaleGroups:function(a,c){var b=this.chart,d;b.series.forEach(function(k){d=a||k.getPlotBox();
k.xAxis&&k.xAxis.zoomEnabled&&k.group&&(k.group.attr(d),k.markerGroup&&(k.markerGroup.attr(d),k.markerGroup.clip(c?b.clipRect:null)),k.dataLabelsGroup&&k.dataLabelsGroup.attr(d))});b.clipRect.attr(c||b.clipBox)},dragStart:function(a){var c=this.chart;c.mouseIsDown=a.type;c.cancelClick=!1;c.mouseDownX=this.mouseDownX=a.chartX;c.mouseDownY=this.mouseDownY=a.chartY},drag:function(a){var c=this.chart,b=c.options.chart,d=a.chartX,k=a.chartY,e=this.zoomHor,p=this.zoomVert,l=c.plotLeft,g=c.plotTop,m=c.plotWidth,
z=c.plotHeight,n,f=this.selectionMarker,r=this.mouseDownX,q=this.mouseDownY,t=b.panKey&&a[b.panKey+"Key"];f&&f.touch||(d<l?d=l:d>l+m&&(d=l+m),k<g?k=g:k>g+z&&(k=g+z),this.hasDragged=Math.sqrt(Math.pow(r-d,2)+Math.pow(q-k,2)),10<this.hasDragged&&(n=c.isInsidePlot(r-l,q-g),c.hasCartesianSeries&&(this.zoomX||this.zoomY)&&n&&!t&&!f&&(this.selectionMarker=f=c.renderer.rect(l,g,e?1:m,p?1:z,0).attr({"class":"highcharts-selection-marker",zIndex:7}).add(),c.styledMode||f.attr({fill:b.selectionMarkerFill||h("#335cad").setOpacity(.25).get()})),
f&&e&&(d-=r,f.attr({width:Math.abs(d),x:(0<d?0:d)+r})),f&&p&&(d=k-q,f.attr({height:Math.abs(d),y:(0<d?0:d)+q})),n&&!f&&b.panning&&c.pan(a,b.panning)))},drop:function(a){var c=this,b=this.chart,d=this.hasPinched;if(this.selectionMarker){var k={originalEvent:a,xAxis:[],yAxis:[]},p=this.selectionMarker,g=p.attr?p.attr("x"):p.x,l=p.attr?p.attr("y"):p.y,m=p.attr?p.attr("width"):p.width,A=p.attr?p.attr("height"):p.height,z;if(this.hasDragged||d)b.axes.forEach(function(b){if(b.zoomEnabled&&q(b.min)&&(d||
c[{xAxis:"zoomX",yAxis:"zoomY"}[b.coll]])){var f=b.horiz,e="touchend"===a.type?b.minPixelPadding:0,p=b.toValue((f?g:l)+e),f=b.toValue((f?g+m:l+A)-e);k[b.coll].push({axis:b,min:Math.min(p,f),max:Math.max(p,f)});z=!0}}),z&&v(b,"selection",k,function(a){b.zoom(t(a,d?{animation:!1}:null))});n(b.index)&&(this.selectionMarker=this.selectionMarker.destroy());d&&this.scaleGroups()}b&&n(b.index)&&(e(b.container,{cursor:b._cursor}),b.cancelClick=10<this.hasDragged,b.mouseIsDown=this.hasDragged=this.hasPinched=
!1,this.pinchDown=[])},onContainerMouseDown:function(a){a=this.normalize(a);2!==a.button&&(this.zoomOption(a),a.preventDefault&&a.preventDefault(),this.dragStart(a))},onDocumentMouseUp:function(b){B[a.hoverChartIndex]&&B[a.hoverChartIndex].pointer.drop(b)},onDocumentMouseMove:function(a){var c=this.chart,b=this.chartPosition;a=this.normalize(a,b);!b||this.inClass(a.target,"highcharts-tracker")||c.isInsidePlot(a.chartX-c.plotLeft,a.chartY-c.plotTop)||this.reset()},onContainerMouseLeave:function(b){var c=
B[a.hoverChartIndex];c&&(b.relatedTarget||b.toElement)&&(c.pointer.reset(),c.pointer.chartPosition=null)},onContainerMouseMove:function(b){var c=this.chart;q(a.hoverChartIndex)&&B[a.hoverChartIndex]&&B[a.hoverChartIndex].mouseIsDown||(a.hoverChartIndex=c.index);b=this.normalize(b);b.preventDefault||(b.returnValue=!1);"mousedown"===c.mouseIsDown&&this.drag(b);!this.inClass(b.target,"highcharts-tracker")&&!c.isInsidePlot(b.chartX-c.plotLeft,b.chartY-c.plotTop)||c.openMenu||this.runPointActions(b)},
inClass:function(a,c){for(var b;a;){if(b=H(a,"class")){if(-1!==b.indexOf(c))return!0;if(-1!==b.indexOf("highcharts-container"))return!1}a=a.parentNode}},onTrackerMouseOut:function(a){var c=this.chart.hoverSeries;a=a.relatedTarget||a.toElement;this.isDirectTouch=!1;if(!(!c||!a||c.stickyTracking||this.inClass(a,"highcharts-tooltip")||this.inClass(a,"highcharts-series-"+c.index)&&this.inClass(a,"highcharts-tracker")))c.onMouseOut()},onContainerClick:function(a){var c=this.chart,b=c.hoverPoint,d=c.plotLeft,
k=c.plotTop;a=this.normalize(a);c.cancelClick||(b&&this.inClass(a.target,"highcharts-tracker")?(v(b.series,"click",t(a,{point:b})),c.hoverPoint&&b.firePointEvent("click",a)):(t(a,this.getCoordinates(a)),c.isInsidePlot(a.chartX-d,a.chartY-k)&&v(c,"click",a)))},setDOMEvents:function(){var b=this,c=b.chart.container,d=c.ownerDocument;c.onmousedown=function(a){b.onContainerMouseDown(a)};c.onmousemove=function(a){b.onContainerMouseMove(a)};c.onclick=function(a){b.onContainerClick(a)};this.unbindContainerMouseLeave=
E(c,"mouseleave",b.onContainerMouseLeave);a.unbindDocumentMouseUp||(a.unbindDocumentMouseUp=E(d,"mouseup",b.onDocumentMouseUp));a.hasTouch&&(c.ontouchstart=function(a){b.onContainerTouchStart(a)},c.ontouchmove=function(a){b.onContainerTouchMove(a)},a.unbindDocumentTouchEnd||(a.unbindDocumentTouchEnd=E(d,"touchend",b.onDocumentTouchEnd)))},destroy:function(){var b=this;b.unDocMouseMove&&b.unDocMouseMove();this.unbindContainerMouseLeave();a.chartCount||(a.unbindDocumentMouseUp&&(a.unbindDocumentMouseUp=
a.unbindDocumentMouseUp()),a.unbindDocumentTouchEnd&&(a.unbindDocumentTouchEnd=a.unbindDocumentTouchEnd()));clearInterval(b.tooltipTimeout);a.objectEach(b,function(a,d){b[d]=null})}}});J(G,"parts/TouchPointer.js",[G["parts/Globals.js"]],function(a){var E=a.charts,H=a.extend,B=a.noop,h=a.pick;H(a.Pointer.prototype,{pinchTranslate:function(a,h,t,u,v,n){this.zoomHor&&this.pinchTranslateDirection(!0,a,h,t,u,v,n);this.zoomVert&&this.pinchTranslateDirection(!1,a,h,t,u,v,n)},pinchTranslateDirection:function(a,
h,t,u,v,n,g,d){var e=this.chart,b=a?"x":"y",k=a?"X":"Y",p="chart"+k,c=a?"width":"height",x=e["plot"+(a?"Left":"Top")],q,w,F=d||1,C=e.inverted,l=e.bounds[a?"h":"v"],D=1===h.length,A=h[0][p],z=t[0][p],I=!D&&h[1][p],f=!D&&t[1][p],r;t=function(){!D&&20<Math.abs(A-I)&&(F=d||Math.abs(z-f)/Math.abs(A-I));w=(x-z)/F+A;q=e["plot"+(a?"Width":"Height")]/F};t();h=w;h<l.min?(h=l.min,r=!0):h+q>l.max&&(h=l.max-q,r=!0);r?(z-=.8*(z-g[b][0]),D||(f-=.8*(f-g[b][1])),t()):g[b]=[z,f];C||(n[b]=w-x,n[c]=q);n=C?1/F:F;v[c]=
q;v[b]=h;u[C?a?"scaleY":"scaleX":"scale"+k]=F;u["translate"+k]=n*x+(z-n*A)},pinch:function(a){var e=this,t=e.chart,u=e.pinchDown,v=a.touches,n=v.length,g=e.lastValidTouch,d=e.hasZoom,m=e.selectionMarker,b={},k=1===n&&(e.inClass(a.target,"highcharts-tracker")&&t.runTrackerClick||e.runChartClick),p={};1<n&&(e.initiated=!0);d&&e.initiated&&!k&&a.preventDefault();[].map.call(v,function(a){return e.normalize(a)});"touchstart"===a.type?([].forEach.call(v,function(a,b){u[b]={chartX:a.chartX,chartY:a.chartY}}),
g.x=[u[0].chartX,u[1]&&u[1].chartX],g.y=[u[0].chartY,u[1]&&u[1].chartY],t.axes.forEach(function(a){if(a.zoomEnabled){var b=t.bounds[a.horiz?"h":"v"],c=a.minPixelPadding,d=a.toPixels(Math.min(h(a.options.min,a.dataMin),a.dataMin)),k=a.toPixels(Math.max(h(a.options.max,a.dataMax),a.dataMax)),e=Math.max(d,k);b.min=Math.min(a.pos,Math.min(d,k)-c);b.max=Math.max(a.pos+a.len,e+c)}}),e.res=!0):e.followTouchMove&&1===n?this.runPointActions(e.normalize(a)):u.length&&(m||(e.selectionMarker=m=H({destroy:B,touch:!0},
t.plotBox)),e.pinchTranslate(u,v,b,m,p,g),e.hasPinched=d,e.scaleGroups(b,p),e.res&&(e.res=!1,this.reset(!1,0)))},touch:function(e,q){var t=this.chart,u,v;if(t.index!==a.hoverChartIndex)this.onContainerMouseLeave({relatedTarget:!0});a.hoverChartIndex=t.index;1===e.touches.length?(e=this.normalize(e),(v=t.isInsidePlot(e.chartX-t.plotLeft,e.chartY-t.plotTop))&&!t.openMenu?(q&&this.runPointActions(e),"touchmove"===e.type&&(q=this.pinchDown,u=q[0]?4<=Math.sqrt(Math.pow(q[0].chartX-e.chartX,2)+Math.pow(q[0].chartY-
e.chartY,2)):!1),h(u,!0)&&this.pinch(e)):q&&this.reset()):2===e.touches.length&&this.pinch(e)},onContainerTouchStart:function(a){this.zoomOption(a);this.touch(a,!0)},onContainerTouchMove:function(a){this.touch(a)},onDocumentTouchEnd:function(e){E[a.hoverChartIndex]&&E[a.hoverChartIndex].pointer.drop(e)}})});J(G,"parts/MSPointer.js",[G["parts/Globals.js"]],function(a){var E=a.addEvent,H=a.charts,B=a.css,h=a.doc,e=a.extend,q=a.noop,t=a.Pointer,u=a.removeEvent,v=a.win,n=a.wrap;if(!a.hasTouch&&(v.PointerEvent||
v.MSPointerEvent)){var g={},d=!!v.PointerEvent,m=function(){var b=[];b.item=function(a){return this[a]};a.objectEach(g,function(a){b.push({pageX:a.pageX,pageY:a.pageY,target:a.target})});return b},b=function(b,d,c,e){"touch"!==b.pointerType&&b.pointerType!==b.MSPOINTER_TYPE_TOUCH||!H[a.hoverChartIndex]||(e(b),e=H[a.hoverChartIndex].pointer,e[d]({type:c,target:b.currentTarget,preventDefault:q,touches:m()}))};e(t.prototype,{onContainerPointerDown:function(a){b(a,"onContainerTouchStart","touchstart",
function(a){g[a.pointerId]={pageX:a.pageX,pageY:a.pageY,target:a.currentTarget}})},onContainerPointerMove:function(a){b(a,"onContainerTouchMove","touchmove",function(a){g[a.pointerId]={pageX:a.pageX,pageY:a.pageY};g[a.pointerId].target||(g[a.pointerId].target=a.currentTarget)})},onDocumentPointerUp:function(a){b(a,"onDocumentTouchEnd","touchend",function(a){delete g[a.pointerId]})},batchMSEvents:function(a){a(this.chart.container,d?"pointerdown":"MSPointerDown",this.onContainerPointerDown);a(this.chart.container,
d?"pointermove":"MSPointerMove",this.onContainerPointerMove);a(h,d?"pointerup":"MSPointerUp",this.onDocumentPointerUp)}});n(t.prototype,"init",function(a,b,c){a.call(this,b,c);this.hasZoom&&B(b.container,{"-ms-touch-action":"none","touch-action":"none"})});n(t.prototype,"setDOMEvents",function(a){a.apply(this);(this.hasZoom||this.followTouchMove)&&this.batchMSEvents(E)});n(t.prototype,"destroy",function(a){this.batchMSEvents(u);a.call(this)})}});J(G,"parts/Legend.js",[G["parts/Globals.js"]],function(a){var E=
a.addEvent,H=a.css,B=a.discardElement,h=a.defined,e=a.fireEvent,q=a.isFirefox,t=a.marginNames,u=a.merge,v=a.pick,n=a.setAnimation,g=a.stableSort,d=a.win,m=a.wrap;a.Legend=function(a,d){this.init(a,d)};a.Legend.prototype={init:function(a,d){this.chart=a;this.setOptions(d);d.enabled&&(this.render(),E(this.chart,"endResize",function(){this.legend.positionCheckboxes()}),this.proximate?this.unchartrender=E(this.chart,"render",function(){this.legend.proximatePositions();this.legend.positionItems()}):this.unchartrender&&
this.unchartrender())},setOptions:function(a){var b=v(a.padding,8);this.options=a;this.chart.styledMode||(this.itemStyle=a.itemStyle,this.itemHiddenStyle=u(this.itemStyle,a.itemHiddenStyle));this.itemMarginTop=a.itemMarginTop||0;this.padding=b;this.initialItemY=b-5;this.symbolWidth=v(a.symbolWidth,16);this.pages=[];this.proximate="proximate"===a.layout&&!this.chart.inverted},update:function(a,d){var b=this.chart;this.setOptions(u(!0,this.options,a));this.destroy();b.isDirtyLegend=b.isDirtyBox=!0;
v(d,!0)&&b.redraw();e(this,"afterUpdate")},colorizeItem:function(a,d){a.legendGroup[d?"removeClass":"addClass"]("highcharts-legend-item-hidden");if(!this.chart.styledMode){var b=this.options,c=a.legendItem,k=a.legendLine,g=a.legendSymbol,m=this.itemHiddenStyle.color,b=d?b.itemStyle.color:m,h=d?a.color||m:m,n=a.options&&a.options.marker,l={fill:h};c&&c.css({fill:b,color:b});k&&k.attr({stroke:h});g&&(n&&g.isMarker&&(l=a.pointAttribs(),d||(l.stroke=l.fill=m)),g.attr(l))}e(this,"afterColorizeItem",{item:a,
visible:d})},positionItems:function(){this.allItems.forEach(this.positionItem,this);this.chart.isResizing||this.positionCheckboxes()},positionItem:function(a){var b=this.options,d=b.symbolPadding,b=!b.rtl,c=a._legendItemPos,e=c[0],c=c[1],g=a.checkbox;if((a=a.legendGroup)&&a.element)a[h(a.translateY)?"animate":"attr"]({translateX:b?e:this.legendWidth-e-2*d-4,translateY:c});g&&(g.x=e,g.y=c)},destroyItem:function(a){var b=a.checkbox;["legendItem","legendLine","legendSymbol","legendGroup"].forEach(function(b){a[b]&&
(a[b]=a[b].destroy())});b&&B(a.checkbox)},destroy:function(){function a(a){this[a]&&(this[a]=this[a].destroy())}this.getAllItems().forEach(function(b){["legendItem","legendGroup"].forEach(a,b)});"clipRect up down pager nav box title group".split(" ").forEach(a,this);this.display=null},positionCheckboxes:function(){var a=this.group&&this.group.alignAttr,d,e=this.clipHeight||this.legendHeight,c=this.titleHeight;a&&(d=a.translateY,this.allItems.forEach(function(b){var k=b.checkbox,g;k&&(g=d+c+k.y+(this.scrollOffset||
0)+3,H(k,{left:a.translateX+b.checkboxOffset+k.x-20+"px",top:g+"px",display:this.proximate||g>d-6&&g<d+e-6?"":"none"}))},this))},renderTitle:function(){var a=this.options,d=this.padding,e=a.title,c=0;e.text&&(this.title||(this.title=this.chart.renderer.label(e.text,d-3,d-4,null,null,null,a.useHTML,null,"legend-title").attr({zIndex:1}),this.chart.styledMode||this.title.css(e.style),this.title.add(this.group)),e.width||this.title.css({width:this.maxLegendWidth+"px"}),a=this.title.getBBox(),c=a.height,
this.offsetWidth=a.width,this.contentGroup.attr({translateY:c}));this.titleHeight=c},setText:function(b){var d=this.options;b.legendItem.attr({text:d.labelFormat?a.format(d.labelFormat,b,this.chart.time):d.labelFormatter.call(b)})},renderItem:function(a){var b=this.chart,d=b.renderer,c=this.options,e=this.symbolWidth,g=c.symbolPadding,m=this.itemStyle,h=this.itemHiddenStyle,n="horizontal"===c.layout?v(c.itemDistance,20):0,l=!c.rtl,D=a.legendItem,A=!a.series,z=!A&&a.series.drawLegendSymbol?a.series:
a,I=z.options,I=this.createCheckboxForItem&&I&&I.showCheckbox,n=e+g+n+(I?20:0),f=c.useHTML,r=a.options.className;D||(a.legendGroup=d.g("legend-item").addClass("highcharts-"+z.type+"-series highcharts-color-"+a.colorIndex+(r?" "+r:"")+(A?" highcharts-series-"+a.index:"")).attr({zIndex:1}).add(this.scrollGroup),a.legendItem=D=d.text("",l?e+g:-g,this.baseline||0,f),b.styledMode||D.css(u(a.visible?m:h)),D.attr({align:l?"left":"right",zIndex:2}).add(a.legendGroup),this.baseline||(this.fontMetrics=d.fontMetrics(b.styledMode?
12:m.fontSize,D),this.baseline=this.fontMetrics.f+3+this.itemMarginTop,D.attr("y",this.baseline)),this.symbolHeight=c.symbolHeight||this.fontMetrics.f,z.drawLegendSymbol(this,a),this.setItemEvents&&this.setItemEvents(a,D,f));I&&!a.checkbox&&this.createCheckboxForItem(a);this.colorizeItem(a,a.visible);!b.styledMode&&m.width||D.css({width:(c.itemWidth||this.widthOption||b.spacingBox.width)-n});this.setText(a);b=D.getBBox();a.itemWidth=a.checkboxOffset=c.itemWidth||a.legendItemWidth||b.width+n;this.maxItemWidth=
Math.max(this.maxItemWidth,a.itemWidth);this.totalItemWidth+=a.itemWidth;this.itemHeight=a.itemHeight=Math.round(a.legendItemHeight||b.height||this.symbolHeight)},layoutItem:function(a){var b=this.options,d=this.padding,c="horizontal"===b.layout,e=a.itemHeight,g=b.itemMarginBottom||0,m=this.itemMarginTop,h=c?v(b.itemDistance,20):0,n=this.maxLegendWidth,b=b.alignColumns&&this.totalItemWidth>n?this.maxItemWidth:a.itemWidth;c&&this.itemX-d+b>n&&(this.itemX=d,this.lastLineHeight&&(this.itemY+=m+this.lastLineHeight+
g),this.lastLineHeight=0);this.lastItemY=m+this.itemY+g;this.lastLineHeight=Math.max(e,this.lastLineHeight);a._legendItemPos=[this.itemX,this.itemY];c?this.itemX+=b:(this.itemY+=m+e+g,this.lastLineHeight=e);this.offsetWidth=this.widthOption||Math.max((c?this.itemX-d-(a.checkbox?0:h):b)+d,this.offsetWidth)},getAllItems:function(){var a=[];this.chart.series.forEach(function(b){var d=b&&b.options;b&&v(d.showInLegend,h(d.linkedTo)?!1:void 0,!0)&&(a=a.concat(b.legendItems||("point"===d.legendType?b.data:
b)))});e(this,"afterGetAllItems",{allItems:a});return a},getAlignment:function(){var a=this.options;return this.proximate?a.align.charAt(0)+"tv":a.floating?"":a.align.charAt(0)+a.verticalAlign.charAt(0)+a.layout.charAt(0)},adjustMargins:function(a,d){var b=this.chart,c=this.options,e=this.getAlignment(),k=void 0!==b.options.title.margin?b.titleOffset+b.options.title.margin:0;e&&[/(lth|ct|rth)/,/(rtv|rm|rbv)/,/(rbh|cb|lbh)/,/(lbv|lm|ltv)/].forEach(function(g,m){g.test(e)&&!h(a[m])&&(b[t[m]]=Math.max(b[t[m]],
b.legend[(m+1)%2?"legendHeight":"legendWidth"]+[1,-1,-1,1][m]*c[m%2?"x":"y"]+v(c.margin,12)+d[m]+(0===m&&(0===b.titleOffset?0:k))))})},proximatePositions:function(){var b=this.chart,d=[],e="left"===this.options.align;this.allItems.forEach(function(c){var k,g;g=e;var m;c.yAxis&&c.points&&(c.xAxis.options.reversed&&(g=!g),k=a.find(g?c.points:c.points.slice(0).reverse(),function(b){return a.isNumber(b.plotY)}),g=c.legendGroup.getBBox().height,m=c.yAxis.top-b.plotTop,c.visible?(k=k?k.plotY:c.yAxis.height,
k+=m-.3*g):k=m+c.yAxis.height,d.push({target:k,size:g,item:c}))},this);a.distribute(d,b.plotHeight);d.forEach(function(a){a.item._legendItemPos[1]=b.plotTop-b.spacing[0]+a.pos})},render:function(){var b=this.chart,d=b.renderer,m=this.group,c,h,n,w=this.box,q=this.options,C=this.padding;this.itemX=C;this.itemY=this.initialItemY;this.lastItemY=this.offsetWidth=0;this.widthOption=a.relativeLength(q.width,b.spacingBox.width-C);c=b.spacingBox.width-2*C-q.x;-1<["rm","lm"].indexOf(this.getAlignment().substring(0,
2))&&(c/=2);this.maxLegendWidth=this.widthOption||c;m||(this.group=m=d.g("legend").attr({zIndex:7}).add(),this.contentGroup=d.g().attr({zIndex:1}).add(m),this.scrollGroup=d.g().add(this.contentGroup));this.renderTitle();c=this.getAllItems();g(c,function(a,b){return(a.options&&a.options.legendIndex||0)-(b.options&&b.options.legendIndex||0)});q.reversed&&c.reverse();this.allItems=c;this.display=h=!!c.length;this.itemHeight=this.totalItemWidth=this.maxItemWidth=this.lastLineHeight=0;c.forEach(this.renderItem,
this);c.forEach(this.layoutItem,this);c=(this.widthOption||this.offsetWidth)+C;n=this.lastItemY+this.lastLineHeight+this.titleHeight;n=this.handleOverflow(n);n+=C;w||(this.box=w=d.rect().addClass("highcharts-legend-box").attr({r:q.borderRadius}).add(m),w.isNew=!0);b.styledMode||w.attr({stroke:q.borderColor,"stroke-width":q.borderWidth||0,fill:q.backgroundColor||"none"}).shadow(q.shadow);0<c&&0<n&&(w[w.isNew?"attr":"animate"](w.crisp.call({},{x:0,y:0,width:c,height:n},w.strokeWidth())),w.isNew=!1);
w[h?"show":"hide"]();b.styledMode&&"none"===m.getStyle("display")&&(c=n=0);this.legendWidth=c;this.legendHeight=n;h&&(d=b.spacingBox,/(lth|ct|rth)/.test(this.getAlignment())&&(w=d.y+b.titleOffset,d=u(d,{y:0<b.titleOffset?w+=b.options.title.margin:w})),m.align(u(q,{width:c,height:n,verticalAlign:this.proximate?"top":q.verticalAlign}),!0,d));this.proximate||this.positionItems();e(this,"afterRender")},handleOverflow:function(a){var b=this,d=this.chart,c=d.renderer,e=this.options,g=e.y,m=this.padding,
g=d.spacingBox.height+("top"===e.verticalAlign?-g:g)-m,h=e.maxHeight,n,l=this.clipRect,D=e.navigation,A=v(D.animation,!0),z=D.arrowSize||12,I=this.nav,f=this.pages,r,q=this.allItems,t=function(a){"number"===typeof a?l.attr({height:a}):l&&(b.clipRect=l.destroy(),b.contentGroup.clip());b.contentGroup.div&&(b.contentGroup.div.style.clip=a?"rect("+m+"px,9999px,"+(m+a)+"px,0)":"auto")},L=function(a){b[a]=c.circle(0,0,1.3*z).translate(z/2,z/2).add(I);d.styledMode||b[a].attr("fill","rgba(0,0,0,0.0001)");
return b[a]};"horizontal"!==e.layout||"middle"===e.verticalAlign||e.floating||(g/=2);h&&(g=Math.min(g,h));f.length=0;a>g&&!1!==D.enabled?(this.clipHeight=n=Math.max(g-20-this.titleHeight-m,0),this.currentPage=v(this.currentPage,1),this.fullHeight=a,q.forEach(function(a,b){var c=a._legendItemPos[1],d=Math.round(a.legendItem.getBBox().height),l=f.length;if(!l||c-f[l-1]>n&&(r||c)!==f[l-1])f.push(r||c),l++;a.pageIx=l-1;r&&(q[b-1].pageIx=l-1);b===q.length-1&&c+d-f[l-1]>n&&c!==r&&(f.push(c),a.pageIx=l);
c!==r&&(r=c)}),l||(l=b.clipRect=c.clipRect(0,m,9999,0),b.contentGroup.clip(l)),t(n),I||(this.nav=I=c.g().attr({zIndex:1}).add(this.group),this.up=c.symbol("triangle",0,0,z,z).add(I),L("upTracker").on("click",function(){b.scroll(-1,A)}),this.pager=c.text("",15,10).addClass("highcharts-legend-navigation"),d.styledMode||this.pager.css(D.style),this.pager.add(I),this.down=c.symbol("triangle-down",0,0,z,z).add(I),L("downTracker").on("click",function(){b.scroll(1,A)})),b.scroll(0),a=g):I&&(t(),this.nav=
I.destroy(),this.scrollGroup.attr({translateY:1}),this.clipHeight=0);return a},scroll:function(a,d){var b=this.pages,c=b.length,e=this.currentPage+a;a=this.clipHeight;var k=this.options.navigation,g=this.pager,m=this.padding;e>c&&(e=c);0<e&&(void 0!==d&&n(d,this.chart),this.nav.attr({translateX:m,translateY:a+this.padding+7+this.titleHeight,visibility:"visible"}),[this.up,this.upTracker].forEach(function(a){a.attr({"class":1===e?"highcharts-legend-nav-inactive":"highcharts-legend-nav-active"})}),
g.attr({text:e+"/"+c}),[this.down,this.downTracker].forEach(function(a){a.attr({x:18+this.pager.getBBox().width,"class":e===c?"highcharts-legend-nav-inactive":"highcharts-legend-nav-active"})},this),this.chart.styledMode||(this.up.attr({fill:1===e?k.inactiveColor:k.activeColor}),this.upTracker.css({cursor:1===e?"default":"pointer"}),this.down.attr({fill:e===c?k.inactiveColor:k.activeColor}),this.downTracker.css({cursor:e===c?"default":"pointer"})),this.scrollOffset=-b[e-1]+this.initialItemY,this.scrollGroup.animate({translateY:this.scrollOffset}),
this.currentPage=e,this.positionCheckboxes())}};a.LegendSymbolMixin={drawRectangle:function(a,d){var b=a.symbolHeight,c=a.options.squareSymbol;d.legendSymbol=this.chart.renderer.rect(c?(a.symbolWidth-b)/2:0,a.baseline-b+1,c?b:a.symbolWidth,b,v(a.options.symbolRadius,b/2)).addClass("highcharts-point").attr({zIndex:3}).add(d.legendGroup)},drawLineMarker:function(a){var b=this.options,d=b.marker,c=a.symbolWidth,e=a.symbolHeight,g=e/2,m=this.chart.renderer,h=this.legendGroup;a=a.baseline-Math.round(.3*
a.fontMetrics.b);var n={};this.chart.styledMode||(n={"stroke-width":b.lineWidth||0},b.dashStyle&&(n.dashstyle=b.dashStyle));this.legendLine=m.path(["M",0,a,"L",c,a]).addClass("highcharts-graph").attr(n).add(h);d&&!1!==d.enabled&&c&&(b=Math.min(v(d.radius,g),g),0===this.symbol.indexOf("url")&&(d=u(d,{width:e,height:e}),b=0),this.legendSymbol=d=m.symbol(this.symbol,c/2-b,a-b,2*b,2*b,d).addClass("highcharts-point").add(h),d.isMarker=!0)}};(/Trident\/7\.0/.test(d.navigator&&d.navigator.userAgent)||q)&&
m(a.Legend.prototype,"positionItem",function(a,d){var b=this,c=function(){d._legendItemPos&&a.call(b,d)};c();b.bubbleLegend||setTimeout(c)})});J(G,"parts/Chart.js",[G["parts/Globals.js"]],function(a){var E=a.addEvent,H=a.animate,B=a.animObject,h=a.attr,e=a.doc,q=a.Axis,t=a.createElement,u=a.defaultOptions,v=a.discardElement,n=a.charts,g=a.css,d=a.defined,m=a.extend,b=a.find,k=a.fireEvent,p=a.isNumber,c=a.isObject,x=a.isString,K=a.Legend,w=a.marginNames,F=a.merge,C=a.objectEach,l=a.Pointer,D=a.pick,
A=a.pInt,z=a.removeEvent,I=a.seriesTypes,f=a.splat,r=a.syncTimeout,Q=a.win,N=a.Chart=function(){this.getArgs.apply(this,arguments)};a.chart=function(a,b,c){return new N(a,b,c)};m(N.prototype,{callbacks:[],getArgs:function(){var a=[].slice.call(arguments);if(x(a[0])||a[0].nodeName)this.renderTo=a.shift();this.init(a[0],a[1])},init:function(b,f){var d,l=b.series,e=b.plotOptions||{};k(this,"init",{args:arguments},function(){b.series=null;d=F(u,b);C(d.plotOptions,function(a,b){c(a)&&(a.tooltip=e[b]&&
F(e[b].tooltip)||void 0)});d.tooltip.userOptions=b.chart&&b.chart.forExport&&b.tooltip.userOptions||b.tooltip;d.series=b.series=l;this.userOptions=b;var g=d.chart,m=g.events;this.margin=[];this.spacing=[];this.bounds={h:{},v:{}};this.labelCollectors=[];this.callback=f;this.isResizing=0;this.options=d;this.axes=[];this.series=[];this.time=b.time&&Object.keys(b.time).length?new a.Time(b.time):a.time;this.styledMode=g.styledMode;this.hasCartesianSeries=g.showAxes;var A=this;A.index=n.length;n.push(A);
a.chartCount++;m&&C(m,function(b,c){a.isFunction(b)&&E(A,c,b)});A.xAxis=[];A.yAxis=[];A.pointCount=A.colorCounter=A.symbolCounter=0;k(A,"afterInit");A.firstRender()})},initSeries:function(b){var c=this.options.chart;(c=I[b.type||c.type||c.defaultSeriesType])||a.error(17,!0,this);c=new c;c.init(this,b);return c},orderSeries:function(a){var b=this.series;for(a=a||0;a<b.length;a++)b[a]&&(b[a].index=a,b[a].name=b[a].getName())},isInsidePlot:function(a,b,c){var f=c?b:a;a=c?a:b;return 0<=f&&f<=this.plotWidth&&
0<=a&&a<=this.plotHeight},redraw:function(b){k(this,"beforeRedraw");var c=this.axes,f=this.series,d=this.pointer,l=this.legend,e=this.userOptions.legend,g=this.isDirtyLegend,A,p,r=this.hasCartesianSeries,h=this.isDirtyBox,D,z=this.renderer,n=z.isHidden(),x=[];this.setResponsive&&this.setResponsive(!1);a.setAnimation(b,this);n&&this.temporaryDisplay();this.layOutTitles();for(b=f.length;b--;)if(D=f[b],D.options.stacking&&(A=!0,D.isDirty)){p=!0;break}if(p)for(b=f.length;b--;)D=f[b],D.options.stacking&&
(D.isDirty=!0);f.forEach(function(a){a.isDirty&&("point"===a.options.legendType?(a.updateTotals&&a.updateTotals(),g=!0):e&&(e.labelFormatter||e.labelFormat)&&(g=!0));a.isDirtyData&&k(a,"updatedData")});g&&l&&l.options.enabled&&(l.render(),this.isDirtyLegend=!1);A&&this.getStacks();r&&c.forEach(function(a){a.updateNames();a.setScale()});this.getMargins();r&&(c.forEach(function(a){a.isDirty&&(h=!0)}),c.forEach(function(a){var b=a.min+","+a.max;a.extKey!==b&&(a.extKey=b,x.push(function(){k(a,"afterSetExtremes",
m(a.eventArgs,a.getExtremes()));delete a.eventArgs}));(h||A)&&a.redraw()}));h&&this.drawChartBox();k(this,"predraw");f.forEach(function(a){(h||a.isDirty)&&a.visible&&a.redraw();a.isDirtyData=!1});d&&d.reset(!0);z.draw();k(this,"redraw");k(this,"render");n&&this.temporaryDisplay(!0);x.forEach(function(a){a.call()})},get:function(a){function c(b){return b.id===a||b.options&&b.options.id===a}var f,d=this.series,l;f=b(this.axes,c)||b(this.series,c);for(l=0;!f&&l<d.length;l++)f=b(d[l].points||[],c);return f},
getAxes:function(){var a=this,b=this.options,c=b.xAxis=f(b.xAxis||{}),b=b.yAxis=f(b.yAxis||{});k(this,"getAxes");c.forEach(function(a,b){a.index=b;a.isX=!0});b.forEach(function(a,b){a.index=b});c.concat(b).forEach(function(b){new q(a,b)});k(this,"afterGetAxes")},getSelectedPoints:function(){var a=[];this.series.forEach(function(b){a=a.concat((b[b.hasGroupedData?"points":"data"]||[]).filter(function(a){return a.selected}))});return a},getSelectedSeries:function(){return this.series.filter(function(a){return a.selected})},
setTitle:function(a,b,c){var f=this,d=f.options,l=f.styledMode,e;e=d.title=F(!l&&{style:{color:"#333333",fontSize:d.isStock?"16px":"18px"}},d.title,a);d=d.subtitle=F(!l&&{style:{color:"#666666"}},d.subtitle,b);[["title",a,e],["subtitle",b,d]].forEach(function(a,b){var c=a[0],d=f[c],e=a[1];a=a[2];d&&e&&(f[c]=d=d.destroy());a&&!d&&(f[c]=f.renderer.text(a.text,0,0,a.useHTML).attr({align:a.align,"class":"highcharts-"+c,zIndex:a.zIndex||4}).add(),f[c].update=function(a){f.setTitle(!b&&a,b&&a)},l||f[c].css(a.style))});
f.layOutTitles(c)},layOutTitles:function(a){var b=0,c,f=this.renderer,d=this.spacingBox;["title","subtitle"].forEach(function(a){var c=this[a],l=this.options[a];a="title"===a?-3:l.verticalAlign?0:b+2;var e;c&&(this.styledMode||(e=l.style.fontSize),e=f.fontMetrics(e,c).b,c.css({width:(l.width||d.width+l.widthAdjust)+"px"}).align(m({y:a+e},l),!1,"spacingBox"),l.floating||l.verticalAlign||(b=Math.ceil(b+c.getBBox(l.useHTML).height)))},this);c=this.titleOffset!==b;this.titleOffset=b;!this.isDirtyBox&&
c&&(this.isDirtyBox=this.isDirtyLegend=c,this.hasRendered&&D(a,!0)&&this.isDirtyBox&&this.redraw())},getChartSize:function(){var b=this.options.chart,c=b.width,b=b.height,f=this.renderTo;d(c)||(this.containerWidth=a.getStyle(f,"width"));d(b)||(this.containerHeight=a.getStyle(f,"height"));this.chartWidth=Math.max(0,c||this.containerWidth||600);this.chartHeight=Math.max(0,a.relativeLength(b,this.chartWidth)||(1<this.containerHeight?this.containerHeight:400))},temporaryDisplay:function(b){var c=this.renderTo;
if(b)for(;c&&c.style;)c.hcOrigStyle&&(a.css(c,c.hcOrigStyle),delete c.hcOrigStyle),c.hcOrigDetached&&(e.body.removeChild(c),c.hcOrigDetached=!1),c=c.parentNode;else for(;c&&c.style;){e.body.contains(c)||c.parentNode||(c.hcOrigDetached=!0,e.body.appendChild(c));if("none"===a.getStyle(c,"display",!1)||c.hcOricDetached)c.hcOrigStyle={display:c.style.display,height:c.style.height,overflow:c.style.overflow},b={display:"block",overflow:"hidden"},c!==this.renderTo&&(b.height=0),a.css(c,b),c.offsetWidth||
c.style.setProperty("display","block","important");c=c.parentNode;if(c===e.body)break}},setClassName:function(a){this.container.className="highcharts-container "+(a||"")},getContainer:function(){var b,c=this.options,f=c.chart,d,l;b=this.renderTo;var r=a.uniqueKey(),D,z;b||(this.renderTo=b=f.renderTo);x(b)&&(this.renderTo=b=e.getElementById(b));b||a.error(13,!0,this);d=A(h(b,"data-highcharts-chart"));p(d)&&n[d]&&n[d].hasRendered&&n[d].destroy();h(b,"data-highcharts-chart",this.index);b.innerHTML="";
f.skipClone||b.offsetWidth||this.temporaryDisplay();this.getChartSize();d=this.chartWidth;l=this.chartHeight;g(b,{overflow:"hidden"});this.styledMode||(D=m({position:"relative",overflow:"hidden",width:d+"px",height:l+"px",textAlign:"left",lineHeight:"normal",zIndex:0,"-webkit-tap-highlight-color":"rgba(0,0,0,0)"},f.style));this.container=b=t("div",{id:r},D,b);this._cursor=b.style.cursor;this.renderer=new (a[f.renderer]||a.Renderer)(b,d,l,null,f.forExport,c.exporting&&c.exporting.allowHTML,this.styledMode);
this.setClassName(f.className);if(this.styledMode)for(z in c.defs)this.renderer.definition(c.defs[z]);else this.renderer.setStyle(f.style);this.renderer.chartIndex=this.index;k(this,"afterGetContainer")},getMargins:function(a){var b=this.spacing,c=this.margin,f=this.titleOffset;this.resetMargins();f&&!d(c[0])&&(this.plotTop=Math.max(this.plotTop,f+this.options.title.margin+b[0]));this.legend&&this.legend.display&&this.legend.adjustMargins(c,b);k(this,"getMargins");a||this.getAxisMargins()},getAxisMargins:function(){var a=
this,b=a.axisOffset=[0,0,0,0],c=a.margin;a.hasCartesianSeries&&a.axes.forEach(function(a){a.visible&&a.getOffset()});w.forEach(function(f,l){d(c[l])||(a[f]+=b[l])});a.setChartSize()},reflow:function(b){var c=this,f=c.options.chart,l=c.renderTo,g=d(f.width)&&d(f.height),k=f.width||a.getStyle(l,"width"),f=f.height||a.getStyle(l,"height"),l=b?b.target:Q;if(!g&&!c.isPrinting&&k&&f&&(l===Q||l===e)){if(k!==c.containerWidth||f!==c.containerHeight)a.clearTimeout(c.reflowTimeout),c.reflowTimeout=r(function(){c.container&&
c.setSize(void 0,void 0,!1)},b?100:0);c.containerWidth=k;c.containerHeight=f}},setReflow:function(a){var b=this;!1===a||this.unbindReflow?!1===a&&this.unbindReflow&&(this.unbindReflow=this.unbindReflow()):(this.unbindReflow=E(Q,"resize",function(a){b.reflow(a)}),E(this,"destroy",this.unbindReflow))},setSize:function(b,c,f){var d=this,l=d.renderer,e;d.isResizing+=1;a.setAnimation(f,d);d.oldChartHeight=d.chartHeight;d.oldChartWidth=d.chartWidth;void 0!==b&&(d.options.chart.width=b);void 0!==c&&(d.options.chart.height=
c);d.getChartSize();d.styledMode||(e=l.globalAnimation,(e?H:g)(d.container,{width:d.chartWidth+"px",height:d.chartHeight+"px"},e));d.setChartSize(!0);l.setSize(d.chartWidth,d.chartHeight,f);d.axes.forEach(function(a){a.isDirty=!0;a.setScale()});d.isDirtyLegend=!0;d.isDirtyBox=!0;d.layOutTitles();d.getMargins();d.redraw(f);d.oldChartHeight=null;k(d,"resize");r(function(){d&&k(d,"endResize",null,function(){--d.isResizing})},B(e).duration)},setChartSize:function(a){var b=this.inverted,c=this.renderer,
f=this.chartWidth,d=this.chartHeight,l=this.options.chart,e=this.spacing,g=this.clipOffset,m,A,p,r;this.plotLeft=m=Math.round(this.plotLeft);this.plotTop=A=Math.round(this.plotTop);this.plotWidth=p=Math.max(0,Math.round(f-m-this.marginRight));this.plotHeight=r=Math.max(0,Math.round(d-A-this.marginBottom));this.plotSizeX=b?r:p;this.plotSizeY=b?p:r;this.plotBorderWidth=l.plotBorderWidth||0;this.spacingBox=c.spacingBox={x:e[3],y:e[0],width:f-e[3]-e[1],height:d-e[0]-e[2]};this.plotBox=c.plotBox={x:m,
y:A,width:p,height:r};f=2*Math.floor(this.plotBorderWidth/2);b=Math.ceil(Math.max(f,g[3])/2);c=Math.ceil(Math.max(f,g[0])/2);this.clipBox={x:b,y:c,width:Math.floor(this.plotSizeX-Math.max(f,g[1])/2-b),height:Math.max(0,Math.floor(this.plotSizeY-Math.max(f,g[2])/2-c))};a||this.axes.forEach(function(a){a.setAxisSize();a.setAxisTranslation()});k(this,"afterSetChartSize",{skipAxes:a})},resetMargins:function(){k(this,"resetMargins");var a=this,b=a.options.chart;["margin","spacing"].forEach(function(f){var d=
b[f],l=c(d)?d:[d,d,d,d];["Top","Right","Bottom","Left"].forEach(function(c,d){a[f][d]=D(b[f+c],l[d])})});w.forEach(function(b,c){a[b]=D(a.margin[c],a.spacing[c])});a.axisOffset=[0,0,0,0];a.clipOffset=[0,0,0,0]},drawChartBox:function(){var a=this.options.chart,b=this.renderer,c=this.chartWidth,f=this.chartHeight,d=this.chartBackground,l=this.plotBackground,e=this.plotBorder,g,m=this.styledMode,A=this.plotBGImage,p=a.backgroundColor,r=a.plotBackgroundColor,h=a.plotBackgroundImage,D,z=this.plotLeft,
n=this.plotTop,x=this.plotWidth,w=this.plotHeight,C=this.plotBox,I=this.clipRect,q=this.clipBox,t="animate";d||(this.chartBackground=d=b.rect().addClass("highcharts-background").add(),t="attr");if(m)g=D=d.strokeWidth();else{g=a.borderWidth||0;D=g+(a.shadow?8:0);p={fill:p||"none"};if(g||d["stroke-width"])p.stroke=a.borderColor,p["stroke-width"]=g;d.attr(p).shadow(a.shadow)}d[t]({x:D/2,y:D/2,width:c-D-g%2,height:f-D-g%2,r:a.borderRadius});t="animate";l||(t="attr",this.plotBackground=l=b.rect().addClass("highcharts-plot-background").add());
l[t](C);m||(l.attr({fill:r||"none"}).shadow(a.plotShadow),h&&(A?A.animate(C):this.plotBGImage=b.image(h,z,n,x,w).add()));I?I.animate({width:q.width,height:q.height}):this.clipRect=b.clipRect(q);t="animate";e||(t="attr",this.plotBorder=e=b.rect().addClass("highcharts-plot-border").attr({zIndex:1}).add());m||e.attr({stroke:a.plotBorderColor,"stroke-width":a.plotBorderWidth||0,fill:"none"});e[t](e.crisp({x:z,y:n,width:x,height:w},-e.strokeWidth()));this.isDirtyBox=!1;k(this,"afterDrawChartBox")},propFromSeries:function(){var a=
this,b=a.options.chart,c,f=a.options.series,d,l;["inverted","angular","polar"].forEach(function(e){c=I[b.type||b.defaultSeriesType];l=b[e]||c&&c.prototype[e];for(d=f&&f.length;!l&&d--;)(c=I[f[d].type])&&c.prototype[e]&&(l=!0);a[e]=l})},linkSeries:function(){var a=this,b=a.series;b.forEach(function(a){a.linkedSeries.length=0});b.forEach(function(b){var c=b.options.linkedTo;x(c)&&(c=":previous"===c?a.series[b.index-1]:a.get(c))&&c.linkedParent!==b&&(c.linkedSeries.push(b),b.linkedParent=c,b.visible=
D(b.options.visible,c.options.visible,b.visible))});k(this,"afterLinkSeries")},renderSeries:function(){this.series.forEach(function(a){a.translate();a.render()})},renderLabels:function(){var a=this,b=a.options.labels;b.items&&b.items.forEach(function(c){var f=m(b.style,c.style),d=A(f.left)+a.plotLeft,l=A(f.top)+a.plotTop+12;delete f.left;delete f.top;a.renderer.text(c.html,d,l).attr({zIndex:2}).css(f).add()})},render:function(){var a=this.axes,b=this.renderer,c=this.options,f=0,d,l,e;this.setTitle();
this.legend=new K(this,c.legend);this.getStacks&&this.getStacks();this.getMargins(!0);this.setChartSize();c=this.plotWidth;a.some(function(a){if(a.horiz&&a.visible&&a.options.labels.enabled&&a.series.length)return f=21,!0});d=this.plotHeight=Math.max(this.plotHeight-f,0);a.forEach(function(a){a.setScale()});this.getAxisMargins();l=1.1<c/this.plotWidth;e=1.05<d/this.plotHeight;if(l||e)a.forEach(function(a){(a.horiz&&l||!a.horiz&&e)&&a.setTickInterval(!0)}),this.getMargins();this.drawChartBox();this.hasCartesianSeries&&
a.forEach(function(a){a.visible&&a.render()});this.seriesGroup||(this.seriesGroup=b.g("series-group").attr({zIndex:3}).add());this.renderSeries();this.renderLabels();this.addCredits();this.setResponsive&&this.setResponsive();this.hasRendered=!0},addCredits:function(a){var b=this;a=F(!0,this.options.credits,a);a.enabled&&!this.credits&&(this.credits=this.renderer.text(a.text+(this.mapCredits||""),0,0).addClass("highcharts-credits").on("click",function(){a.href&&(Q.location.href=a.href)}).attr({align:a.position.align,
zIndex:8}),b.styledMode||this.credits.css(a.style),this.credits.add().align(a.position),this.credits.update=function(a){b.credits=b.credits.destroy();b.addCredits(a)})},destroy:function(){var b=this,c=b.axes,f=b.series,d=b.container,l,e=d&&d.parentNode;k(b,"destroy");b.renderer.forExport?a.erase(n,b):n[b.index]=void 0;a.chartCount--;b.renderTo.removeAttribute("data-highcharts-chart");z(b);for(l=c.length;l--;)c[l]=c[l].destroy();this.scroller&&this.scroller.destroy&&this.scroller.destroy();for(l=f.length;l--;)f[l]=
f[l].destroy();"title subtitle chartBackground plotBackground plotBGImage plotBorder seriesGroup clipRect credits pointer rangeSelector legend resetZoomButton tooltip renderer".split(" ").forEach(function(a){var c=b[a];c&&c.destroy&&(b[a]=c.destroy())});d&&(d.innerHTML="",z(d),e&&v(d));C(b,function(a,c){delete b[c]})},firstRender:function(){var b=this,c=b.options;if(!b.isReadyToRender||b.isReadyToRender()){b.getContainer();b.resetMargins();b.setChartSize();b.propFromSeries();b.getAxes();(a.isArray(c.series)?
c.series:[]).forEach(function(a){b.initSeries(a)});b.linkSeries();k(b,"beforeRender");l&&(b.pointer=new l(b,c));b.render();if(!b.renderer.imgCount&&b.onload)b.onload();b.temporaryDisplay(!0)}},onload:function(){this.callbacks.concat([this.callback]).forEach(function(a){a&&void 0!==this.index&&a.apply(this,[this])},this);k(this,"load");k(this,"render");d(this.index)&&this.setReflow(this.options.chart.reflow);this.onload=null}})});J(G,"parts/ScrollablePlotArea.js",[G["parts/Globals.js"]],function(a){var E=
a.addEvent,H=a.Chart;E(H,"afterSetChartSize",function(B){var h=this.options.chart.scrollablePlotArea,e=h&&h.minWidth,h=h&&h.minHeight,q;if(!this.renderer.forExport){if(e){if(this.scrollablePixelsX=e=Math.max(0,e-this.chartWidth))this.plotWidth+=e,this.inverted?this.clipBox.height+=e:this.clipBox.width+=e,q={1:{name:"right",value:e}}}else h&&(this.scrollablePixelsY=e=Math.max(0,h-this.chartHeight))&&(this.plotHeight+=e,this.inverted?this.clipBox.width+=e:this.clipBox.height+=e,q={2:{name:"bottom",
value:e}});q&&!B.skipAxes&&this.axes.forEach(function(e){q[e.side]?e.getPlotLinePath=function(){var h=q[e.side].name,t=this[h],n;this[h]=t-q[e.side].value;n=a.Axis.prototype.getPlotLinePath.apply(this,arguments);this[h]=t;return n}:(e.setAxisSize(),e.setAxisTranslation())})}});E(H,"render",function(){this.scrollablePixelsX||this.scrollablePixelsY?(this.setUpScrolling&&this.setUpScrolling(),this.applyFixed()):this.fixedDiv&&this.applyFixed()});H.prototype.setUpScrolling=function(){var B={WebkitOverflowScrolling:"touch",
overflowX:"hidden",overflowY:"hidden"};this.scrollablePixelsX&&(B.overflowX="auto");this.scrollablePixelsY&&(B.overflowY="auto");this.scrollingContainer=a.createElement("div",{className:"highcharts-scrolling"},B,this.renderTo);this.innerContainer=a.createElement("div",{className:"highcharts-inner-container"},null,this.scrollingContainer);this.innerContainer.appendChild(this.container);this.setUpScrolling=null};H.prototype.moveFixedElements=function(){var a=this.container,h=this.fixedRenderer,e=".highcharts-contextbutton .highcharts-credits .highcharts-legend .highcharts-reset-zoom .highcharts-subtitle .highcharts-title .highcharts-legend-checkbox".split(" "),
q;this.scrollablePixelsX&&!this.inverted?q=".highcharts-yaxis":this.scrollablePixelsX&&this.inverted?q=".highcharts-xaxis":this.scrollablePixelsY&&!this.inverted?q=".highcharts-xaxis":this.scrollablePixelsY&&this.inverted&&(q=".highcharts-yaxis");e.push(q,q+"-labels");e.forEach(function(e){[].forEach.call(a.querySelectorAll(e),function(a){(a.namespaceURI===h.SVG_NS?h.box:h.box.parentNode).appendChild(a);a.style.pointerEvents="auto"})})};H.prototype.applyFixed=function(){var B,h,e=!this.fixedDiv,q=
this.options.chart.scrollablePlotArea;e?(this.fixedDiv=a.createElement("div",{className:"highcharts-fixed"},{position:"absolute",overflow:"hidden",pointerEvents:"none",zIndex:2},null,!0),this.renderTo.insertBefore(this.fixedDiv,this.renderTo.firstChild),this.renderTo.style.overflow="visible",this.fixedRenderer=B=new a.Renderer(this.fixedDiv,this.chartWidth,this.chartHeight),this.scrollableMask=B.path().attr({fill:a.color(this.options.chart.backgroundColor||"#fff").setOpacity(a.pick(q.opacity,.85)).get(),
zIndex:-1}).addClass("highcharts-scrollable-mask").add(),this.moveFixedElements(),E(this,"afterShowResetZoom",this.moveFixedElements)):this.fixedRenderer.setSize(this.chartWidth,this.chartHeight);B=this.chartWidth+(this.scrollablePixelsX||0);h=this.chartHeight+(this.scrollablePixelsY||0);a.stop(this.container);this.container.style.width=B+"px";this.container.style.height=h+"px";this.renderer.boxWrapper.attr({width:B,height:h,viewBox:[0,0,B,h].join(" ")});this.chartBackground.attr({width:B,height:h});
this.scrollablePixelsY&&(this.scrollingContainer.style.height=this.chartHeight+"px");e&&(q.scrollPositionX&&(this.scrollingContainer.scrollLeft=this.scrollablePixelsX*q.scrollPositionX),q.scrollPositionY&&(this.scrollingContainer.scrollTop=this.scrollablePixelsY*q.scrollPositionY));h=this.axisOffset;e=this.plotTop-h[0]-1;q=this.plotLeft-h[3]-1;B=this.plotTop+this.plotHeight+h[2]+1;h=this.plotLeft+this.plotWidth+h[1]+1;var t=this.plotLeft+this.plotWidth-(this.scrollablePixelsX||0),u=this.plotTop+this.plotHeight-
(this.scrollablePixelsY||0),e=this.scrollablePixelsX?["M",0,e,"L",this.plotLeft-1,e,"L",this.plotLeft-1,B,"L",0,B,"Z","M",t,e,"L",this.chartWidth,e,"L",this.chartWidth,B,"L",t,B,"Z"]:this.scrollablePixelsY?["M",q,0,"L",q,this.plotTop-1,"L",h,this.plotTop-1,"L",h,0,"Z","M",q,u,"L",q,this.chartHeight,"L",h,this.chartHeight,"L",h,u,"Z"]:["M",0,0];"adjustHeight"!==this.redrawTrigger&&this.scrollableMask.attr({d:e})}});J(G,"parts/Point.js",[G["parts/Globals.js"]],function(a){var E,H=a.extend,B=a.erase,
h=a.fireEvent,e=a.format,q=a.isArray,t=a.isNumber,u=a.pick,v=a.uniqueKey,n=a.defined,g=a.removeEvent;a.Point=E=function(){};a.Point.prototype={init:function(a,e,b){this.series=a;this.applyOptions(e,b);this.id=n(this.id)?this.id:v();this.resolveColor();a.chart.pointCount++;h(this,"afterInit");return this},resolveColor:function(){var a=this.series,e;e=a.chart.options.chart.colorCount;var b=a.chart.styledMode;b||this.options.color||(this.color=a.color);a.options.colorByPoint?(b||(e=a.options.colors||
a.chart.options.colors,this.color=this.color||e[a.colorCounter],e=e.length),b=a.colorCounter,a.colorCounter++,a.colorCounter===e&&(a.colorCounter=0)):b=a.colorIndex;this.colorIndex=u(this.colorIndex,b)},applyOptions:function(a,e){var b=this.series,d=b.options.pointValKey||b.pointValKey;a=E.prototype.optionsToObject.call(this,a);H(this,a);this.options=this.options?H(this.options,a):a;a.group&&delete this.group;a.dataLabels&&delete this.dataLabels;d&&(this.y=this[d]);if(this.isNull=u(this.isValid&&
!this.isValid(),null===this.x||!t(this.y,!0)))this.formatPrefix="null";this.selected&&(this.state="select");"name"in this&&void 0===e&&b.xAxis&&b.xAxis.hasNames&&(this.x=b.xAxis.nameToX(this));void 0===this.x&&b&&(this.x=void 0===e?b.autoIncrement(this):e);return this},setNestedProperty:function(d,e,b){b.split(".").reduce(function(b,d,c,g){b[d]=g.length-1===c?e:a.isObject(b[d],!0)?b[d]:{};return b[d]},d);return d},optionsToObject:function(d){var e={},b=this.series,g=b.options.keys,p=g||b.pointArrayMap||
["y"],c=p.length,h=0,n=0;if(t(d)||null===d)e[p[0]]=d;else if(q(d))for(!g&&d.length>c&&(b=typeof d[0],"string"===b?e.name=d[0]:"number"===b&&(e.x=d[0]),h++);n<c;)g&&void 0===d[h]||(0<p[n].indexOf(".")?a.Point.prototype.setNestedProperty(e,d[h],p[n]):e[p[n]]=d[h]),h++,n++;else"object"===typeof d&&(e=d,d.dataLabels&&(b._hasPointLabels=!0),d.marker&&(b._hasPointMarkers=!0));return e},getClassName:function(){return"highcharts-point"+(this.selected?" highcharts-point-select":"")+(this.negative?" highcharts-negative":
"")+(this.isNull?" highcharts-null-point":"")+(void 0!==this.colorIndex?" highcharts-color-"+this.colorIndex:"")+(this.options.className?" "+this.options.className:"")+(this.zone&&this.zone.className?" "+this.zone.className.replace("highcharts-negative",""):"")},getZone:function(){var a=this.series,e=a.zones,a=a.zoneAxis||"y",b=0,g;for(g=e[b];this[a]>=g.value;)g=e[++b];this.nonZonedColor||(this.nonZonedColor=this.color);this.color=g&&g.color&&!this.options.color?g.color:this.nonZonedColor;return g},
destroy:function(){var a=this.series.chart,e=a.hoverPoints,b;a.pointCount--;e&&(this.setState(),B(e,this),e.length||(a.hoverPoints=null));if(this===a.hoverPoint)this.onMouseOut();if(this.graphic||this.dataLabel||this.dataLabels)g(this),this.destroyElements();this.legendItem&&a.legend.destroyItem(this);for(b in this)this[b]=null},destroyElements:function(a){var d=this,b=[],e,g;a=a||{graphic:1,dataLabel:1};a.graphic&&b.push("graphic","shadowGroup");a.dataLabel&&b.push("dataLabel","dataLabelUpper","connector");
for(g=b.length;g--;)e=b[g],d[e]&&(d[e]=d[e].destroy());["dataLabel","connector"].forEach(function(b){var c=b+"s";a[b]&&d[c]&&(d[c].forEach(function(a){a.element&&a.destroy()}),delete d[c])})},getLabelConfig:function(){return{x:this.category,y:this.y,color:this.color,colorIndex:this.colorIndex,key:this.name||this.category,series:this.series,point:this,percentage:this.percentage,total:this.total||this.stackTotal}},tooltipFormatter:function(a){var d=this.series,b=d.tooltipOptions,g=u(b.valueDecimals,
""),p=b.valuePrefix||"",c=b.valueSuffix||"";d.chart.styledMode&&(a=d.chart.tooltip.styledModeFormat(a));(d.pointArrayMap||["y"]).forEach(function(b){b="{point."+b;if(p||c)a=a.replace(RegExp(b+"}","g"),p+b+"}"+c);a=a.replace(RegExp(b+"}","g"),b+":,."+g+"f}")});return e(a,{point:this,series:this.series},d.chart.time)},firePointEvent:function(a,e,b){var d=this,g=this.series.options;(g.point.events[a]||d.options&&d.options.events&&d.options.events[a])&&this.importEvents();"click"===a&&g.allowPointSelect&&
(b=function(a){d.select&&d.select(null,a.ctrlKey||a.metaKey||a.shiftKey)});h(this,a,e,b)},visible:!0}});J(G,"parts/Series.js",[G["parts/Globals.js"]],function(a){var E=a.addEvent,H=a.animObject,B=a.arrayMax,h=a.arrayMin,e=a.correctFloat,q=a.defaultOptions,t=a.defaultPlotOptions,u=a.defined,v=a.erase,n=a.extend,g=a.fireEvent,d=a.isArray,m=a.isNumber,b=a.isString,k=a.merge,p=a.objectEach,c=a.pick,x=a.removeEvent,K=a.splat,w=a.SVGElement,F=a.syncTimeout,C=a.win;a.Series=a.seriesType("line",null,{lineWidth:2,
allowPointSelect:!1,showCheckbox:!1,animation:{duration:1E3},events:{},marker:{lineWidth:0,lineColor:"#ffffff",enabledThreshold:2,radius:4,states:{normal:{animation:!0},hover:{animation:{duration:50},enabled:!0,radiusPlus:2,lineWidthPlus:1},select:{fillColor:"#cccccc",lineColor:"#000000",lineWidth:2}}},point:{events:{}},dataLabels:{align:"center",formatter:function(){return null===this.y?"":a.numberFormat(this.y,-1)},padding:5,style:{fontSize:"11px",fontWeight:"bold",color:"contrast",textOutline:"1px contrast"},
verticalAlign:"bottom",x:0,y:0},cropThreshold:300,opacity:1,pointRange:0,softThreshold:!0,states:{normal:{animation:!0},hover:{animation:{duration:50},lineWidthPlus:1,marker:{},halo:{size:10,opacity:.25}},select:{animation:{duration:0}},inactive:{animation:{duration:50},opacity:.2}},stickyTracking:!0,turboThreshold:1E3,findNearestPointBy:"x"},{isCartesian:!0,pointClass:a.Point,sorted:!0,requireSorting:!0,directTouch:!1,axisTypes:["xAxis","yAxis"],colorCounter:0,parallelArrays:["x","y"],coll:"series",
cropShoulder:1,init:function(b,d){g(this,"init",{options:d});var e=this,l,k=b.series,f;e.chart=b;e.options=d=e.setOptions(d);e.linkedSeries=[];e.bindAxes();n(e,{name:d.name,state:"",visible:!1!==d.visible,selected:!0===d.selected});l=d.events;p(l,function(b,c){!a.isFunction(b)||e.hcEvents&&e.hcEvents[c]&&e.hcEvents[c].some(function(a){return a.fn===b})||E(e,c,b)});if(l&&l.click||d.point&&d.point.events&&d.point.events.click||d.allowPointSelect)b.runTrackerClick=!0;e.getColor();e.getSymbol();e.parallelArrays.forEach(function(a){e[a+
"Data"]||(e[a+"Data"]=[])});e.points||e.setData(d.data,!1);e.isCartesian&&(b.hasCartesianSeries=!0);k.length&&(f=k[k.length-1]);e._i=c(f&&f._i,-1)+1;b.orderSeries(this.insert(k));g(this,"afterInit")},insert:function(a){var b=this.options.index,d;if(m(b)){for(d=a.length;d--;)if(b>=c(a[d].options.index,a[d]._i)){a.splice(d+1,0,this);break}-1===d&&a.unshift(this);d+=1}else a.push(this);return c(d,a.length-1)},bindAxes:function(){var b=this,c=b.options,d=b.chart,e;g(this,"bindAxes",null,function(){(b.axisTypes||
[]).forEach(function(l){d[l].forEach(function(a){e=a.options;if(c[l]===e.index||void 0!==c[l]&&c[l]===e.id||void 0===c[l]&&0===e.index)b.insert(a.series),b[l]=a,a.isDirty=!0});b[l]||b.optionalAxis===l||a.error(18,!0,d)})})},updateParallelArrays:function(a,b){var c=a.series,d=arguments,e=m(b)?function(f){var d="y"===f&&c.toYData?c.toYData(a):a[f];c[f+"Data"][b]=d}:function(a){Array.prototype[b].apply(c[a+"Data"],Array.prototype.slice.call(d,2))};c.parallelArrays.forEach(e)},hasData:function(){return this.visible&&
void 0!==this.dataMax&&void 0!==this.dataMin||this.visible&&this.yData&&0<this.yData.length},autoIncrement:function(){var a=this.options,b=this.xIncrement,d,e=a.pointIntervalUnit,g=this.chart.time,b=c(b,a.pointStart,0);this.pointInterval=d=c(this.pointInterval,a.pointInterval,1);e&&(a=new g.Date(b),"day"===e?g.set("Date",a,g.get("Date",a)+d):"month"===e?g.set("Month",a,g.get("Month",a)+d):"year"===e&&g.set("FullYear",a,g.get("FullYear",a)+d),d=a.getTime()-b);this.xIncrement=b+d;return b},setOptions:function(a){var b=
this.chart,d=b.options,e=d.plotOptions,l=b.userOptions||{};a=k(a);var b=b.styledMode,f={plotOptions:e,userOptions:a};g(this,"setOptions",f);var m=l.plotOptions||{},p=f.plotOptions[this.type];this.userOptions=f.userOptions;l=k(p,e.series,l.plotOptions&&l.plotOptions[this.type],a);this.tooltipOptions=k(q.tooltip,q.plotOptions.series&&q.plotOptions.series.tooltip,q.plotOptions[this.type].tooltip,d.tooltip.userOptions,e.series&&e.series.tooltip,e[this.type].tooltip,a.tooltip);this.stickyTracking=c(a.stickyTracking,
m[this.type]&&m[this.type].stickyTracking,m.series&&m.series.stickyTracking,this.tooltipOptions.shared&&!this.noSharedTooltip?!0:l.stickyTracking);null===p.marker&&delete l.marker;this.zoneAxis=l.zoneAxis;d=this.zones=(l.zones||[]).slice();!l.negativeColor&&!l.negativeFillColor||l.zones||(e={value:l[this.zoneAxis+"Threshold"]||l.threshold||0,className:"highcharts-negative"},b||(e.color=l.negativeColor,e.fillColor=l.negativeFillColor),d.push(e));d.length&&u(d[d.length-1].value)&&d.push(b?{}:{color:this.color,
fillColor:this.fillColor});g(this,"afterSetOptions",{options:l});return l},getName:function(){return c(this.options.name,"Series "+(this.index+1))},getCyclic:function(a,b,d){var e,l=this.chart,f=this.userOptions,g=a+"Index",k=a+"Counter",m=d?d.length:c(l.options.chart[a+"Count"],l[a+"Count"]);b||(e=c(f[g],f["_"+g]),u(e)||(l.series.length||(l[k]=0),f["_"+g]=e=l[k]%m,l[k]+=1),d&&(b=d[e]));void 0!==e&&(this[g]=e);this[a]=b},getColor:function(){this.chart.styledMode?this.getCyclic("color"):this.options.colorByPoint?
this.options.color=null:this.getCyclic("color",this.options.color||t[this.type].color,this.chart.options.colors)},getSymbol:function(){this.getCyclic("symbol",this.options.marker.symbol,this.chart.options.symbols)},findPointIndex:function(a,b){var c=a.id;a=a.x;var d=this.points,e,f;c&&(f=(c=this.chart.get(c))&&c.index,void 0!==f&&(e=!0));void 0===f&&m(a)&&(f=this.xData.indexOf(a,b));-1!==f&&void 0!==f&&this.cropped&&(f=f>=this.cropStart?f-this.cropStart:f);!e&&d[f]&&d[f].touched&&(f=void 0);return f},
drawLegendSymbol:a.LegendSymbolMixin.drawLineMarker,updateData:function(b){var c=this.options,d=this.points,e=[],l,f,g,k=this.requireSorting,p=b.length===d.length,h=!0;this.xIncrement=null;b.forEach(function(b,f){var h,A=a.defined(b)&&this.pointClass.prototype.optionsToObject.call({series:this},b)||{};h=A.x;if(A.id||m(h))if(h=this.findPointIndex(A,g),-1===h||void 0===h?e.push(b):d[h]&&b!==c.data[h]?(d[h].update(b,!1,null,!1),d[h].touched=!0,k&&(g=h+1)):d[h]&&(d[h].touched=!0),!p||f!==h||this.hasDerivedData)l=
!0},this);if(l)for(b=d.length;b--;)(f=d[b])&&!f.touched&&f.remove(!1);else p?b.forEach(function(a,b){d[b].update&&a!==d[b].y&&d[b].update(a,!1,null,!1)}):h=!1;d.forEach(function(a){a&&(a.touched=!1)});if(!h)return!1;e.forEach(function(a){this.addPoint(a,!1,null,null,!1)},this);return!0},setData:function(e,g,k,p){var l=this,f=l.points,h=f&&f.length||0,A,n=l.options,D=l.chart,z=null,x=l.xAxis,w=n.turboThreshold,C=this.xData,q=this.yData,t=(A=l.pointArrayMap)&&A.length,u=n.keys,F=0,v=1,K;e=e||[];A=e.length;
g=c(g,!0);!1!==p&&A&&h&&!l.cropped&&!l.hasGroupedData&&l.visible&&!l.isSeriesBoosting&&(K=this.updateData(e));if(!K){l.xIncrement=null;l.colorCounter=0;this.parallelArrays.forEach(function(a){l[a+"Data"].length=0});if(w&&A>w){for(k=0;null===z&&k<A;)z=e[k],k++;if(m(z))for(k=0;k<A;k++)C[k]=this.autoIncrement(),q[k]=e[k];else if(d(z))if(t)for(k=0;k<A;k++)z=e[k],C[k]=z[0],q[k]=z.slice(1,t+1);else for(u&&(F=u.indexOf("x"),v=u.indexOf("y"),F=0<=F?F:0,v=0<=v?v:1),k=0;k<A;k++)z=e[k],C[k]=z[F],q[k]=z[v];else a.error(12,
!1,D)}else for(k=0;k<A;k++)void 0!==e[k]&&(z={series:l},l.pointClass.prototype.applyOptions.apply(z,[e[k]]),l.updateParallelArrays(z,k));q&&b(q[0])&&a.error(14,!0,D);l.data=[];l.options.data=l.userOptions.data=e;for(k=h;k--;)f[k]&&f[k].destroy&&f[k].destroy();x&&(x.minRange=x.userMinRange);l.isDirty=D.isDirtyBox=!0;l.isDirtyData=!!f;k=!1}"point"===n.legendType&&(this.processData(),this.generatePoints());g&&D.redraw(k)},processData:function(b){var c=this.xData,d=this.yData,e=c.length,l;l=0;var f,g,
k=this.xAxis,m,p=this.options;m=p.cropThreshold;var h=this.getExtremesFromAll||p.getExtremesFromAll,n=this.isCartesian,p=k&&k.val2lin,x=k&&k.isLog,w=this.requireSorting,C,q;if(n&&!this.isDirty&&!k.isDirty&&!this.yAxis.isDirty&&!b)return!1;k&&(b=k.getExtremes(),C=b.min,q=b.max);n&&this.sorted&&!h&&(!m||e>m||this.forceCrop)&&(c[e-1]<C||c[0]>q?(c=[],d=[]):this.yData&&(c[0]<C||c[e-1]>q)&&(l=this.cropData(this.xData,this.yData,C,q),c=l.xData,d=l.yData,l=l.start,f=!0));for(m=c.length||1;--m;)e=x?p(c[m])-
p(c[m-1]):c[m]-c[m-1],0<e&&(void 0===g||e<g)?g=e:0>e&&w&&(a.error(15,!1,this.chart),w=!1);this.cropped=f;this.cropStart=l;this.processedXData=c;this.processedYData=d;this.closestPointRange=g},cropData:function(a,b,d,e,g){var f=a.length,l=0,k=f,m;g=c(g,this.cropShoulder);for(m=0;m<f;m++)if(a[m]>=d){l=Math.max(0,m-g);break}for(d=m;d<f;d++)if(a[d]>e){k=d+g;break}return{xData:a.slice(l,k),yData:b.slice(l,k),start:l,end:k}},generatePoints:function(){var a=this.options,b=a.data,c=this.data,d,e=this.processedXData,
f=this.processedYData,k=this.pointClass,m=e.length,p=this.cropStart||0,h,x=this.hasGroupedData,a=a.keys,w,C=[],q;c||x||(c=[],c.length=b.length,c=this.data=c);a&&x&&(this.options.keys=!1);for(q=0;q<m;q++)h=p+q,x?(w=(new k).init(this,[e[q]].concat(K(f[q]))),w.dataGroup=this.groupMap[q],w.dataGroup.options&&(w.options=w.dataGroup.options,n(w,w.dataGroup.options),delete w.dataLabels)):(w=c[h])||void 0===b[h]||(c[h]=w=(new k).init(this,b[h],e[q])),w&&(w.index=h,C[q]=w);this.options.keys=a;if(c&&(m!==(d=
c.length)||x))for(q=0;q<d;q++)q!==p||x||(q+=m),c[q]&&(c[q].destroyElements(),c[q].plotX=void 0);this.data=c;this.points=C;g(this,"afterGeneratePoints")},getXExtremes:function(a){return{min:h(a),max:B(a)}},getExtremes:function(a){var b=this.yAxis,c=this.processedXData,e,l=[],f=0;e=this.xAxis.getExtremes();var k=e.min,p=e.max,n,w,x=this.requireSorting?this.cropShoulder:0,q,C;a=a||this.stackedYData||this.processedYData||[];e=a.length;for(C=0;C<e;C++)if(w=c[C],q=a[C],n=(m(q,!0)||d(q))&&(!b.positiveValuesOnly||
q.length||0<q),w=this.getExtremesFromAll||this.options.getExtremesFromAll||this.cropped||(c[C+x]||w)>=k&&(c[C-x]||w)<=p,n&&w)if(n=q.length)for(;n--;)"number"===typeof q[n]&&(l[f++]=q[n]);else l[f++]=q;this.dataMin=h(l);this.dataMax=B(l);g(this,"afterGetExtremes")},translate:function(){this.processedXData||this.processData();this.generatePoints();var a=this.options,b=a.stacking,k=this.xAxis,p=k.categories,h=this.yAxis,f=this.points,r=f.length,n=!!this.modifyValue,w,q=this.pointPlacementToXValue(),
C=m(q),x=a.threshold,t=a.startFromThreshold?x:0,F,v,K,B,E=this.zoneAxis||"y",H=Number.MAX_VALUE;for(w=0;w<r;w++){var G=f[w],J=G.x;v=G.y;var V=G.low,O=b&&h.stacks[(this.negStacks&&v<(t?0:x)?"-":"")+this.stackKey],W,X;h.positiveValuesOnly&&null!==v&&0>=v&&(G.isNull=!0);G.plotX=F=e(Math.min(Math.max(-1E5,k.translate(J,0,0,0,1,q,"flags"===this.type)),1E5));b&&this.visible&&!G.isNull&&O&&O[J]&&(B=this.getStackIndicator(B,J,this.index),W=O[J],X=W.points[B.key]);d(X)&&(V=X[0],v=X[1],V===t&&B.key===O[J].base&&
(V=c(m(x)&&x,h.min)),h.positiveValuesOnly&&0>=V&&(V=null),G.total=G.stackTotal=W.total,G.percentage=W.total&&G.y/W.total*100,G.stackY=v,W.setOffset(this.pointXOffset||0,this.barW||0));G.yBottom=u(V)?Math.min(Math.max(-1E5,h.translate(V,0,1,0,1)),1E5):null;n&&(v=this.modifyValue(v,G));G.plotY=v="number"===typeof v&&Infinity!==v?Math.min(Math.max(-1E5,h.translate(v,0,1,0,1)),1E5):void 0;G.isInside=void 0!==v&&0<=v&&v<=h.len&&0<=F&&F<=k.len;G.clientX=C?e(k.translate(J,0,0,0,1,q)):F;G.negative=G[E]<(a[E+
"Threshold"]||x||0);G.category=p&&void 0!==p[G.x]?p[G.x]:G.x;G.isNull||(void 0!==K&&(H=Math.min(H,Math.abs(F-K))),K=F);G.zone=this.zones.length&&G.getZone()}this.closestPointRangePx=H;g(this,"afterTranslate")},getValidPoints:function(a,b,c){var d=this.chart;return(a||this.points||[]).filter(function(a){return b&&!d.isInsidePlot(a.plotX,a.plotY,d.inverted)?!1:c||!a.isNull})},getClipBox:function(a,b){var c=this.options,d=this.chart,e=d.inverted,f=this.xAxis,l=f&&this.yAxis;a&&!1===c.clip&&l?a=e?{y:-d.chartWidth+
l.len+l.pos,height:d.chartWidth,width:d.chartHeight,x:-d.chartHeight+f.len+f.pos}:{y:-l.pos,height:d.chartHeight,width:d.chartWidth,x:-f.pos}:(a=this.clipBox||d.clipBox,b&&(a.width=d.plotSizeX,a.x=0));return b?{width:a.width,x:a.x}:a},setClip:function(a){var b=this.chart,c=this.options,d=b.renderer,e=b.inverted,f=this.clipBox,l=this.getClipBox(a),g=this.sharedClipKey||["_sharedClip",a&&a.duration,a&&a.easing,l.height,c.xAxis,c.yAxis].join(),k=b[g],m=b[g+"m"];k||(a&&(l.width=0,e&&(l.x=b.plotSizeX+
(!1!==c.clip?0:b.plotTop)),b[g+"m"]=m=d.clipRect(e?b.plotSizeX+99:-99,e?-b.plotLeft:-b.plotTop,99,e?b.chartWidth:b.chartHeight)),b[g]=k=d.clipRect(l),k.count={length:0});a&&!k.count[this.index]&&(k.count[this.index]=!0,k.count.length+=1);if(!1!==c.clip||a)this.group.clip(a||f?k:b.clipRect),this.markerGroup.clip(m),this.sharedClipKey=g;a||(k.count[this.index]&&(delete k.count[this.index],--k.count.length),0===k.count.length&&g&&b[g]&&(f||(b[g]=b[g].destroy()),b[g+"m"]&&(b[g+"m"]=b[g+"m"].destroy())))},
animate:function(a){var b=this.chart,c=H(this.options.animation),d,e;a?this.setClip(c):(d=this.sharedClipKey,a=b[d],e=this.getClipBox(c,!0),a&&a.animate(e,c),b[d+"m"]&&b[d+"m"].animate({width:e.width+99,x:e.x-(b.inverted?0:99)},c),this.animate=null)},afterAnimate:function(){this.setClip();g(this,"afterAnimate");this.finishedAnimating=!0},drawPoints:function(){var a=this.points,b=this.chart,d,e,g,f,k,m=this.options.marker,p,h,n,w=this[this.specialGroup]||this.markerGroup;d=this.xAxis;var q,x=c(m.enabled,
!d||d.isRadial?!0:null,this.closestPointRangePx>=m.enabledThreshold*m.radius);if(!1!==m.enabled||this._hasPointMarkers)for(d=0;d<a.length;d++)if(e=a[d],k=(f=e.graphic)?"animate":"attr",p=e.marker||{},h=!!e.marker,g=x&&void 0===p.enabled||p.enabled,n=!1!==e.isInside,g&&!e.isNull){g=c(p.symbol,this.symbol);q=this.markerAttribs(e,e.selected&&"select");f?f[n?"show":"hide"](!0).animate(q):n&&(0<q.width||e.hasImage)&&(e.graphic=f=b.renderer.symbol(g,q.x,q.y,q.width,q.height,h?p:m).add(w));if(f&&!b.styledMode)f[k](this.pointAttribs(e,
e.selected&&"select"));f&&f.addClass(e.getClassName(),!0)}else f&&(e.graphic=f.destroy())},markerAttribs:function(a,b){var d=this.options.marker,e=a.marker||{},l=e.symbol||d.symbol,f=c(e.radius,d.radius);b&&(d=d.states[b],b=e.states&&e.states[b],f=c(b&&b.radius,d&&d.radius,f+(d&&d.radiusPlus||0)));a.hasImage=l&&0===l.indexOf("url");a.hasImage&&(f=0);a={x:Math.floor(a.plotX)-f,y:a.plotY-f};f&&(a.width=a.height=2*f);return a},pointAttribs:function(a,b){var d=this.options.marker,e=a&&a.options,l=e&&
e.marker||{},f=this.color,g=e&&e.color,k=a&&a.color,e=c(l.lineWidth,d.lineWidth),m=a&&a.zone&&a.zone.color;a=1;f=g||m||k||f;g=l.fillColor||d.fillColor||f;f=l.lineColor||d.lineColor||f;b=b||"normal";d=d.states[b];b=l.states&&l.states[b]||{};e=c(b.lineWidth,d.lineWidth,e+c(b.lineWidthPlus,d.lineWidthPlus,0));g=b.fillColor||d.fillColor||g;f=b.lineColor||d.lineColor||f;a=c(b.opacity,d.opacity,a);return{stroke:f,"stroke-width":e,fill:g,opacity:a}},destroy:function(b){var c=this,d=c.chart,e=/AppleWebKit\/533/.test(C.navigator.userAgent),
l,f,k=c.data||[],m,h;g(c,"destroy");b||x(c);(c.axisTypes||[]).forEach(function(a){(h=c[a])&&h.series&&(v(h.series,c),h.isDirty=h.forceRedraw=!0)});c.legendItem&&c.chart.legend.destroyItem(c);for(f=k.length;f--;)(m=k[f])&&m.destroy&&m.destroy();c.points=null;a.clearTimeout(c.animationTimeout);p(c,function(a,b){a instanceof w&&!a.survive&&(l=e&&"group"===b?"hide":"destroy",a[l]())});d.hoverSeries===c&&(d.hoverSeries=null);v(d.series,c);d.orderSeries();p(c,function(a,d){b&&"hcEvents"===d||delete c[d]})},
getGraphPath:function(a,b,c){var d=this,e=d.options,f=e.step,l,g=[],k=[],m;a=a||d.points;(l=a.reversed)&&a.reverse();(f={right:1,center:2}[f]||f&&3)&&l&&(f=4-f);!e.connectNulls||b||c||(a=this.getValidPoints(a));a.forEach(function(l,p){var h=l.plotX,n=l.plotY,r=a[p-1];(l.leftCliff||r&&r.rightCliff)&&!c&&(m=!0);l.isNull&&!u(b)&&0<p?m=!e.connectNulls:l.isNull&&!b?m=!0:(0===p||m?p=["M",l.plotX,l.plotY]:d.getPointSpline?p=d.getPointSpline(a,l,p):f?(p=1===f?["L",r.plotX,n]:2===f?["L",(r.plotX+h)/2,r.plotY,
"L",(r.plotX+h)/2,n]:["L",h,r.plotY],p.push("L",h,n)):p=["L",h,n],k.push(l.x),f&&(k.push(l.x),2===f&&k.push(l.x)),g.push.apply(g,p),m=!1)});g.xMap=k;return d.graphPath=g},drawGraph:function(){var a=this,b=this.options,c=(this.gappedPath||this.getGraphPath).call(this),d=this.chart.styledMode,e=[["graph","highcharts-graph"]];d||e[0].push(b.lineColor||this.color||"#cccccc",b.dashStyle);e=a.getZonesGraphs(e);e.forEach(function(f,e){var l=f[0],g=a[l],k=g?"animate":"attr";g?(g.endX=a.preventGraphAnimation?
null:c.xMap,g.animate({d:c})):c.length&&(a[l]=g=a.chart.renderer.path(c).addClass(f[1]).attr({zIndex:1}).add(a.group));g&&!d&&(l={stroke:f[2],"stroke-width":b.lineWidth,fill:a.fillGraph&&a.color||"none"},f[3]?l.dashstyle=f[3]:"square"!==b.linecap&&(l["stroke-linecap"]=l["stroke-linejoin"]="round"),g[k](l).shadow(2>e&&b.shadow));g&&(g.startX=c.xMap,g.isArea=c.isArea)})},getZonesGraphs:function(a){this.zones.forEach(function(b,c){c=["zone-graph-"+c,"highcharts-graph highcharts-zone-graph-"+c+" "+(b.className||
"")];this.chart.styledMode||c.push(b.color||this.color,b.dashStyle||this.options.dashStyle);a.push(c)},this);return a},applyZones:function(){var a=this,b=this.chart,d=b.renderer,e=this.zones,g,f,k=this.clips||[],m,p=this.graph,h=this.area,n=Math.max(b.chartWidth,b.chartHeight),w=this[(this.zoneAxis||"y")+"Axis"],q,x,C=b.inverted,t,u,v,F,K=!1;e.length&&(p||h)&&w&&void 0!==w.min?(x=w.reversed,t=w.horiz,p&&!this.showLine&&p.hide(),h&&h.hide(),q=w.getExtremes(),e.forEach(function(e,l){g=x?t?b.plotWidth:
0:t?0:w.toPixels(q.min)||0;g=Math.min(Math.max(c(f,g),0),n);f=Math.min(Math.max(Math.round(w.toPixels(c(e.value,q.max),!0)||0),0),n);K&&(g=f=w.toPixels(q.max));u=Math.abs(g-f);v=Math.min(g,f);F=Math.max(g,f);w.isXAxis?(m={x:C?F:v,y:0,width:u,height:n},t||(m.x=b.plotHeight-m.x)):(m={x:0,y:C?F:v,width:n,height:u},t&&(m.y=b.plotWidth-m.y));C&&d.isVML&&(m=w.isXAxis?{x:0,y:x?v:F,height:m.width,width:b.chartWidth}:{x:m.y-b.plotLeft-b.spacingBox.x,y:0,width:m.height,height:b.chartHeight});k[l]?k[l].animate(m):
k[l]=d.clipRect(m);p&&a["zone-graph-"+l].clip(k[l]);h&&a["zone-area-"+l].clip(k[l]);K=e.value>q.max;a.resetZones&&0===f&&(f=void 0)}),this.clips=k):a.visible&&(p&&p.show(!0),h&&h.show(!0))},invertGroups:function(a){function b(){["group","markerGroup"].forEach(function(b){c[b]&&(d.renderer.isVML&&c[b].attr({width:c.yAxis.len,height:c.xAxis.len}),c[b].width=c.yAxis.len,c[b].height=c.xAxis.len,c[b].invert(a))})}var c=this,d=c.chart,e;c.xAxis&&(e=E(d,"resize",b),E(c,"destroy",e),b(a),c.invertGroups=b)},
plotGroup:function(a,b,c,d,e){var f=this[a],l=!f;l&&(this[a]=f=this.chart.renderer.g().attr({zIndex:d||.1}).add(e));f.addClass("highcharts-"+b+" highcharts-series-"+this.index+" highcharts-"+this.type+"-series "+(u(this.colorIndex)?"highcharts-color-"+this.colorIndex+" ":"")+(this.options.className||"")+(f.hasClass("highcharts-tracker")?" highcharts-tracker":""),!0);f.attr({visibility:c})[l?"attr":"animate"](this.getPlotBox());return f},getPlotBox:function(){var a=this.chart,b=this.xAxis,c=this.yAxis;
a.inverted&&(b=c,c=this.xAxis);return{translateX:b?b.left:a.plotLeft,translateY:c?c.top:a.plotTop,scaleX:1,scaleY:1}},render:function(){var a=this,b=a.chart,c,d=a.options,e=!!a.animate&&b.renderer.isSVG&&H(d.animation).duration,f=a.visible?"inherit":"hidden",k=d.zIndex,m=a.hasRendered,p=b.seriesGroup,h=b.inverted;g(this,"render");c=a.plotGroup("group","series",f,k,p);a.markerGroup=a.plotGroup("markerGroup","markers",f,k,p);e&&a.animate(!0);c.inverted=a.isCartesian||a.invertable?h:!1;a.drawGraph&&
(a.drawGraph(),a.applyZones());a.visible&&a.drawPoints();a.drawDataLabels&&a.drawDataLabels();a.redrawPoints&&a.redrawPoints();a.drawTracker&&!1!==a.options.enableMouseTracking&&a.drawTracker();a.invertGroups(h);!1===d.clip||a.sharedClipKey||m||c.clip(b.clipRect);e&&a.animate();m||(a.animationTimeout=F(function(){a.afterAnimate()},e));a.isDirty=!1;a.hasRendered=!0;g(a,"afterRender")},redraw:function(){var a=this.chart,b=this.isDirty||this.isDirtyData,d=this.group,e=this.xAxis,g=this.yAxis;d&&(a.inverted&&
d.attr({width:a.plotWidth,height:a.plotHeight}),d.animate({translateX:c(e&&e.left,a.plotLeft),translateY:c(g&&g.top,a.plotTop)}));this.translate();this.render();b&&delete this.kdTree},kdAxisArray:["clientX","plotY"],searchPoint:function(a,b){var c=this.xAxis,d=this.yAxis,e=this.chart.inverted;return this.searchKDTree({clientX:e?c.len-a.chartY+c.pos:a.chartX-c.pos,plotY:e?d.len-a.chartX+d.pos:a.chartY-d.pos},b,a)},buildKDTree:function(a){function b(a,d,e){var f,g;if(g=a&&a.length)return f=c.kdAxisArray[d%
e],a.sort(function(a,b){return a[f]-b[f]}),g=Math.floor(g/2),{point:a[g],left:b(a.slice(0,g),d+1,e),right:b(a.slice(g+1),d+1,e)}}this.buildingKdTree=!0;var c=this,d=-1<c.options.findNearestPointBy.indexOf("y")?2:1;delete c.kdTree;F(function(){c.kdTree=b(c.getValidPoints(null,!c.directTouch),d,d);c.buildingKdTree=!1},c.options.kdNow||a&&"touchstart"===a.type?0:1)},searchKDTree:function(a,b,c){function d(a,b,c,k){var m=b.point,p=e.kdAxisArray[c%k],h,n,r=m;n=u(a[f])&&u(m[f])?Math.pow(a[f]-m[f],2):null;
h=u(a[g])&&u(m[g])?Math.pow(a[g]-m[g],2):null;h=(n||0)+(h||0);m.dist=u(h)?Math.sqrt(h):Number.MAX_VALUE;m.distX=u(n)?Math.sqrt(n):Number.MAX_VALUE;p=a[p]-m[p];h=0>p?"left":"right";n=0>p?"right":"left";b[h]&&(h=d(a,b[h],c+1,k),r=h[l]<r[l]?h:m);b[n]&&Math.sqrt(p*p)<r[l]&&(a=d(a,b[n],c+1,k),r=a[l]<r[l]?a:r);return r}var e=this,f=this.kdAxisArray[0],g=this.kdAxisArray[1],l=b?"distX":"dist";b=-1<e.options.findNearestPointBy.indexOf("y")?2:1;this.kdTree||this.buildingKdTree||this.buildKDTree(c);if(this.kdTree)return d(a,
this.kdTree,b,b)},pointPlacementToXValue:function(){var a=this.options.pointPlacement;"between"===a&&(a=.5);m(a)&&(a*=c(this.options.pointRange||this.xAxis.pointRange));return a}})});J(G,"parts/Stacking.js",[G["parts/Globals.js"]],function(a){var E=a.Axis,H=a.Chart,B=a.correctFloat,h=a.defined,e=a.destroyObjectProperties,q=a.format,t=a.objectEach,u=a.pick,v=a.Series;a.StackItem=function(a,e,d,m,b){var g=a.chart.inverted;this.axis=a;this.isNegative=d;this.options=e;this.x=m;this.total=null;this.points=
{};this.stack=b;this.rightCliff=this.leftCliff=0;this.alignOptions={align:e.align||(g?d?"left":"right":"center"),verticalAlign:e.verticalAlign||(g?"middle":d?"bottom":"top"),y:u(e.y,g?4:d?14:-6),x:u(e.x,g?d?-6:6:0)};this.textAlign=e.textAlign||(g?d?"right":"left":"center")};a.StackItem.prototype={destroy:function(){e(this,this.axis)},render:function(a){var e=this.axis.chart,d=this.options,m=d.format,m=m?q(m,this,e.time):d.formatter.call(this);this.label?this.label.attr({text:m,visibility:"hidden"}):
this.label=e.renderer.text(m,null,null,d.useHTML).css(d.style).attr({align:this.textAlign,rotation:d.rotation,visibility:"hidden"}).add(a);this.label.labelrank=e.plotHeight},setOffset:function(a,e,d,m){var b=this.axis,g=b.chart;m=b.translate(b.usePercentage?100:m?m:this.total,0,0,0,1);d=b.translate(d?d:0);d=h(m)&&Math.abs(m-d);a=g.xAxis[0].translate(this.x)+a;b=h(m)&&this.getStackBox(g,this,a,m,e,d,b);(e=this.label)&&b&&(e.align(this.alignOptions,null,b),b=e.alignAttr,e[!1===this.options.crop||g.isInsidePlot(b.x,
b.y)?"show":"hide"](!0))},getStackBox:function(a,e,d,m,b,k,p){var c=e.axis.reversed,g=a.inverted;a=p.height+p.pos-(g?a.plotLeft:a.plotTop);e=e.isNegative&&!c||!e.isNegative&&c;return{x:g?e?m:m-k:d,y:g?a-d-b:e?a-m-k:a-m,width:g?k:b,height:g?b:k}}};H.prototype.getStacks=function(){var a=this;a.yAxis.forEach(function(a){a.stacks&&a.hasVisibleSeries&&(a.oldStacks=a.stacks)});a.series.forEach(function(e){!e.options.stacking||!0!==e.visible&&!1!==a.options.chart.ignoreHiddenSeries||(e.stackKey=e.type+u(e.options.stack,
""))})};E.prototype.buildStacks=function(){var a=this.series,e=u(this.options.reversedStacks,!0),d=a.length,m;if(!this.isXAxis){this.usePercentage=!1;for(m=d;m--;)a[e?m:d-m-1].setStackedPoints();for(m=0;m<d;m++)a[m].modifyStacks()}};E.prototype.renderStackTotals=function(){var a=this.chart,e=a.renderer,d=this.stacks,m=this.stackTotalGroup;m||(this.stackTotalGroup=m=e.g("stack-labels").attr({visibility:"visible",zIndex:6}).add());m.translate(a.plotLeft,a.plotTop);t(d,function(a){t(a,function(a){a.render(m)})})};
E.prototype.resetStacks=function(){var a=this,e=a.stacks;a.isXAxis||t(e,function(d){t(d,function(e,b){e.touched<a.stacksTouched?(e.destroy(),delete d[b]):(e.total=null,e.cumulative=null)})})};E.prototype.cleanStacks=function(){var a;this.isXAxis||(this.oldStacks&&(a=this.stacks=this.oldStacks),t(a,function(a){t(a,function(a){a.cumulative=a.total})}))};v.prototype.setStackedPoints=function(){if(this.options.stacking&&(!0===this.visible||!1===this.chart.options.chart.ignoreHiddenSeries)){var e=this.processedXData,
g=this.processedYData,d=[],m=g.length,b=this.options,k=b.threshold,p=u(b.startFromThreshold&&k,0),c=b.stack,b=b.stacking,q=this.stackKey,t="-"+q,w=this.negStacks,v=this.yAxis,C=v.stacks,l=v.oldStacks,D,A,z,I,f,r,E;v.stacksTouched+=1;for(f=0;f<m;f++)r=e[f],E=g[f],D=this.getStackIndicator(D,r,this.index),I=D.key,z=(A=w&&E<(p?0:k))?t:q,C[z]||(C[z]={}),C[z][r]||(l[z]&&l[z][r]?(C[z][r]=l[z][r],C[z][r].total=null):C[z][r]=new a.StackItem(v,v.options.stackLabels,A,r,c)),z=C[z][r],null!==E?(z.points[I]=z.points[this.index]=
[u(z.cumulative,p)],h(z.cumulative)||(z.base=I),z.touched=v.stacksTouched,0<D.index&&!1===this.singleStacks&&(z.points[I][0]=z.points[this.index+","+r+",0"][0])):z.points[I]=z.points[this.index]=null,"percent"===b?(A=A?q:t,w&&C[A]&&C[A][r]?(A=C[A][r],z.total=A.total=Math.max(A.total,z.total)+Math.abs(E)||0):z.total=B(z.total+(Math.abs(E)||0))):z.total=B(z.total+(E||0)),z.cumulative=u(z.cumulative,p)+(E||0),null!==E&&(z.points[I].push(z.cumulative),d[f]=z.cumulative);"percent"===b&&(v.usePercentage=
!0);this.stackedYData=d;v.oldStacks={}}};v.prototype.modifyStacks=function(){var a=this,e=a.stackKey,d=a.yAxis.stacks,m=a.processedXData,b,k=a.options.stacking;a[k+"Stacker"]&&[e,"-"+e].forEach(function(e){for(var c=m.length,g,p;c--;)if(g=m[c],b=a.getStackIndicator(b,g,a.index,e),p=(g=d[e]&&d[e][g])&&g.points[b.key])a[k+"Stacker"](p,g,c)})};v.prototype.percentStacker=function(a,e,d){e=e.total?100/e.total:0;a[0]=B(a[0]*e);a[1]=B(a[1]*e);this.stackedYData[d]=a[1]};v.prototype.getStackIndicator=function(a,
e,d,m){!h(a)||a.x!==e||m&&a.key!==m?a={x:e,index:0,key:m}:a.index++;a.key=[d,e,a.index].join();return a}});J(G,"parts/Dynamics.js",[G["parts/Globals.js"]],function(a){var E=a.addEvent,H=a.animate,B=a.Axis,h=a.Chart,e=a.createElement,q=a.css,t=a.defined,u=a.erase,v=a.extend,n=a.fireEvent,g=a.isNumber,d=a.isObject,m=a.isArray,b=a.merge,k=a.objectEach,p=a.pick,c=a.Point,x=a.Series,K=a.seriesTypes,w=a.setAnimation,F=a.splat;a.cleanRecursively=function(b,c){var e={};k(b,function(g,l){if(d(b[l],!0)&&!b.nodeType&&
c[l])g=a.cleanRecursively(b[l],c[l]),Object.keys(g).length&&(e[l]=g);else if(d(b[l])||b[l]!==c[l])e[l]=b[l]});return e};v(h.prototype,{addSeries:function(a,b,c){var d,e=this;a&&(b=p(b,!0),n(e,"addSeries",{options:a},function(){d=e.initSeries(a);e.isDirtyLegend=!0;e.linkSeries();n(e,"afterAddSeries",{series:d});b&&e.redraw(c)}));return d},addAxis:function(a,c,d,e){var g=c?"xAxis":"yAxis",l=this.options;a=b(a,{index:this[g].length,isX:c});c=new B(this,a);l[g]=F(l[g]||{});l[g].push(a);p(d,!0)&&this.redraw(e);
return c},showLoading:function(a){var b=this,c=b.options,d=b.loadingDiv,g=c.loading,k=function(){d&&q(d,{left:b.plotLeft+"px",top:b.plotTop+"px",width:b.plotWidth+"px",height:b.plotHeight+"px"})};d||(b.loadingDiv=d=e("div",{className:"highcharts-loading highcharts-loading-hidden"},null,b.container),b.loadingSpan=e("span",{className:"highcharts-loading-inner"},null,d),E(b,"redraw",k));d.className="highcharts-loading";b.loadingSpan.innerHTML=a||c.lang.loading;b.styledMode||(q(d,v(g.style,{zIndex:10})),
q(b.loadingSpan,g.labelStyle),b.loadingShown||(q(d,{opacity:0,display:""}),H(d,{opacity:g.style.opacity||.5},{duration:g.showDuration||0})));b.loadingShown=!0;k()},hideLoading:function(){var a=this.options,b=this.loadingDiv;b&&(b.className="highcharts-loading highcharts-loading-hidden",this.styledMode||H(b,{opacity:0},{duration:a.loading.hideDuration||100,complete:function(){q(b,{display:"none"})}}));this.loadingShown=!1},propsRequireDirtyBox:"backgroundColor borderColor borderWidth borderRadius plotBackgroundColor plotBackgroundImage plotBorderColor plotBorderWidth plotShadow shadow".split(" "),
propsRequireReflow:"margin marginTop marginRight marginBottom marginLeft spacing spacingTop spacingRight spacingBottom spacingLeft".split(" "),propsRequireUpdateSeries:"chart.inverted chart.polar chart.ignoreHiddenSeries chart.type colors plotOptions time tooltip".split(" "),collectionsWithUpdate:"xAxis yAxis zAxis series colorAxis pane".split(" "),update:function(c,d,e,m){var l=this,h={credits:"addCredits",title:"setTitle",subtitle:"setSubtitle"},f,r,w,q,x=[];n(l,"update",{options:c});c.isResponsiveOptions||
l.setResponsive(!1,!0);c=a.cleanRecursively(c,l.options);b(!0,l.userOptions,c);if(f=c.chart){b(!0,l.options.chart,f);"className"in f&&l.setClassName(f.className);"reflow"in f&&l.setReflow(f.reflow);if("inverted"in f||"polar"in f||"type"in f)l.propFromSeries(),r=!0;"alignTicks"in f&&(r=!0);k(f,function(a,b){-1!==l.propsRequireUpdateSeries.indexOf("chart."+b)&&(w=!0);-1!==l.propsRequireDirtyBox.indexOf(b)&&(l.isDirtyBox=!0);-1!==l.propsRequireReflow.indexOf(b)&&(q=!0)});!l.styledMode&&"style"in f&&
l.renderer.setStyle(f.style)}!l.styledMode&&c.colors&&(this.options.colors=c.colors);c.plotOptions&&b(!0,this.options.plotOptions,c.plotOptions);c.time&&this.time===a.time&&(this.time=new a.Time(c.time));k(c,function(a,b){if(l[b]&&"function"===typeof l[b].update)l[b].update(a,!1);else if("function"===typeof l[h[b]])l[h[b]](a);"chart"!==b&&-1!==l.propsRequireUpdateSeries.indexOf(b)&&(w=!0)});this.collectionsWithUpdate.forEach(function(a){var b;c[a]&&("series"===a&&(b=[],l[a].forEach(function(a,c){a.options.isInternal||
b.push(p(a.options.index,c))})),F(c[a]).forEach(function(c,d){(d=t(c.id)&&l.get(c.id)||l[a][b?b[d]:d])&&d.coll===a&&(d.update(c,!1),e&&(d.touched=!0));!d&&e&&l.collectionsWithInit[a]&&(l.collectionsWithInit[a][0].apply(l,[c].concat(l.collectionsWithInit[a][1]||[]).concat([!1])).touched=!0)}),e&&l[a].forEach(function(a){a.touched||a.options.isInternal?delete a.touched:x.push(a)}))});x.forEach(function(a){a.remove&&a.remove(!1)});r&&l.axes.forEach(function(a){a.update({},!1)});w&&l.series.forEach(function(a){a.update({},
!1)});c.loading&&b(!0,l.options.loading,c.loading);r=f&&f.width;f=f&&f.height;a.isString(f)&&(f=a.relativeLength(f,r||l.chartWidth));q||g(r)&&r!==l.chartWidth||g(f)&&f!==l.chartHeight?l.setSize(r,f,m):p(d,!0)&&l.redraw(m);n(l,"afterUpdate",{options:c,redraw:d,animation:m})},setSubtitle:function(a){this.setTitle(void 0,a)}});h.prototype.collectionsWithInit={xAxis:[h.prototype.addAxis,[!0]],yAxis:[h.prototype.addAxis,[!1]],series:[h.prototype.addSeries]};v(c.prototype,{update:function(a,b,c,e){function g(){l.applyOptions(a);
null===l.y&&k&&(l.graphic=k.destroy());d(a,!0)&&(k&&k.element&&a&&a.marker&&void 0!==a.marker.symbol&&(l.graphic=k.destroy()),a&&a.dataLabels&&l.dataLabel&&(l.dataLabel=l.dataLabel.destroy()),l.connector&&(l.connector=l.connector.destroy()));m=l.index;f.updateParallelArrays(l,m);n.data[m]=d(n.data[m],!0)||d(a,!0)?l.options:p(a,n.data[m]);f.isDirty=f.isDirtyData=!0;!f.fixedBox&&f.hasCartesianSeries&&(h.isDirtyBox=!0);"point"===n.legendType&&(h.isDirtyLegend=!0);b&&h.redraw(c)}var l=this,f=l.series,
k=l.graphic,m,h=f.chart,n=f.options;b=p(b,!0);!1===e?g():l.firePointEvent("update",{options:a},g)},remove:function(a,b){this.series.removePoint(this.series.data.indexOf(this),a,b)}});v(x.prototype,{addPoint:function(a,b,c,d,e){var g=this.options,f=this.data,l=this.chart,k=this.xAxis,k=k&&k.hasNames&&k.names,m=g.data,h,w=this.xData,q,x,C;b=p(b,!0);h={series:this};this.pointClass.prototype.applyOptions.apply(h,[a]);C=h.x;x=w.length;if(this.requireSorting&&C<w[x-1])for(q=!0;x&&w[x-1]>C;)x--;this.updateParallelArrays(h,
"splice",x,0,0);this.updateParallelArrays(h,x);k&&h.name&&(k[C]=h.name);m.splice(x,0,a);q&&(this.data.splice(x,0,null),this.processData());"point"===g.legendType&&this.generatePoints();c&&(f[0]&&f[0].remove?f[0].remove(!1):(f.shift(),this.updateParallelArrays(h,"shift"),m.shift()));!1!==e&&n(this,"addPoint",{point:h});this.isDirtyData=this.isDirty=!0;b&&l.redraw(d)},removePoint:function(a,b,c){var d=this,e=d.data,g=e[a],f=d.points,l=d.chart,k=function(){f&&f.length===e.length&&f.splice(a,1);e.splice(a,
1);d.options.data.splice(a,1);d.updateParallelArrays(g||{series:d},"splice",a,1);g&&g.destroy();d.isDirty=!0;d.isDirtyData=!0;b&&l.redraw()};w(c,l);b=p(b,!0);g?g.firePointEvent("remove",null,k):k()},remove:function(a,b,c,d){function e(){g.destroy(d);g.remove=null;f.isDirtyLegend=f.isDirtyBox=!0;f.linkSeries();p(a,!0)&&f.redraw(b)}var g=this,f=g.chart;!1!==c?n(g,"remove",null,e):e()},update:function(c,d){c=a.cleanRecursively(c,this.userOptions);n(this,"update",{options:c});var e=this,g=e.chart,l=e.userOptions,
k,f=e.initialType||e.type,m=c.type||l.type||g.options.chart.type,h=!(this.hasDerivedData||c.dataGrouping||m&&m!==this.type||void 0!==c.pointStart||c.pointInterval||c.pointIntervalUnit||c.keys),w=K[f].prototype,q,x=["group","markerGroup","dataLabelsGroup","transformGroup"],t=["navigatorSeries","baseSeries"],C=e.finishedAnimating&&{animation:!1},u={};h&&(t.push("data","isDirtyData","points","processedXData","processedYData","xIncrement","_hasPointMarkers","_hasPointLabels","mapMap","mapData","minY",
"maxY","minX","maxX"),!1!==c.visible&&t.push("area","graph"),e.parallelArrays.forEach(function(a){t.push(a+"Data")}),c.data&&this.setData(c.data,!1));c=b(l,C,{index:void 0===l.index?e.index:l.index,pointStart:p(l.pointStart,e.xData[0])},!h&&{data:e.options.data},c);t=x.concat(t);t.forEach(function(a){t[a]=e[a];delete e[a]});e.remove(!1,null,!1,!0);for(q in w)e[q]=void 0;K[m||f]?v(e,K[m||f].prototype):a.error(17,!0,g);t.forEach(function(a){e[a]=t[a]});e.init(g,c);h&&this.points&&(k=e.options,!1===
k.visible?(u.graphic=1,u.dataLabel=1):(k.marker&&!1===k.marker.enabled&&!e._hasPointMarkers&&(u.graphic=1),k.dataLabels&&!1===k.dataLabels.enabled&&!e._hasPointLabels&&(u.dataLabel=1)),this.points.forEach(function(a){a&&a.series&&(a.resolveColor(),Object.keys(u).length&&a.destroyElements(u),!1===k.showInLegend&&a.legendItem&&g.legend.destroyItem(a))},this));c.zIndex!==l.zIndex&&x.forEach(function(a){e[a]&&e[a].attr({zIndex:c.zIndex})});e.initialType=f;g.linkSeries();n(this,"afterUpdate");p(d,!0)&&
g.redraw(h?void 0:!1)},setName:function(a){this.name=this.options.name=this.userOptions.name=a;this.chart.isDirtyLegend=!0}});v(B.prototype,{update:function(a,c){var d=this.chart,e=a&&a.events||{};a=b(this.userOptions,a);d.options[this.coll].indexOf&&(d.options[this.coll][d.options[this.coll].indexOf(this.userOptions)]=a);k(d.options[this.coll].events,function(a,b){"undefined"===typeof e[b]&&(e[b]=void 0)});this.destroy(!0);this.init(d,v(a,{events:e}));d.isDirtyBox=!0;p(c,!0)&&d.redraw()},remove:function(a){for(var b=
this.chart,c=this.coll,d=this.series,e=d.length;e--;)d[e]&&d[e].remove(!1);u(b.axes,this);u(b[c],this);m(b.options[c])?b.options[c].splice(this.options.index,1):delete b.options[c];b[c].forEach(function(a,b){a.options.index=a.userOptions.index=b});this.destroy();b.isDirtyBox=!0;p(a,!0)&&b.redraw()},setTitle:function(a,b){this.update({title:a},b)},setCategories:function(a,b){this.update({categories:a},b)}})});J(G,"parts/AreaSeries.js",[G["parts/Globals.js"]],function(a){var E=a.color,H=a.pick,B=a.Series,
h=a.seriesType;h("area","line",{softThreshold:!1,threshold:0},{singleStacks:!1,getStackPoints:function(e){var h=[],t=[],u=this.xAxis,v=this.yAxis,n=v.stacks[this.stackKey],g={},d=this.index,m=v.series,b=m.length,k,p=H(v.options.reversedStacks,!0)?1:-1,c;e=e||this.points;if(this.options.stacking){for(c=0;c<e.length;c++)e[c].leftNull=e[c].rightNull=null,g[e[c].x]=e[c];a.objectEach(n,function(a,b){null!==a.total&&t.push(b)});t.sort(function(a,b){return a-b});k=m.map(function(a){return a.visible});t.forEach(function(a,
e){var m=0,q,x;if(g[a]&&!g[a].isNull)h.push(g[a]),[-1,1].forEach(function(l){var m=1===l?"rightNull":"leftNull",h=0,w=n[t[e+l]];if(w)for(c=d;0<=c&&c<b;)q=w.points[c],q||(c===d?g[a][m]=!0:k[c]&&(x=n[a].points[c])&&(h-=x[1]-x[0])),c+=p;g[a][1===l?"rightCliff":"leftCliff"]=h});else{for(c=d;0<=c&&c<b;){if(q=n[a].points[c]){m=q[1];break}c+=p}m=v.translate(m,0,1,0,1);h.push({isNull:!0,plotX:u.translate(a,0,0,0,1),x:a,plotY:m,yBottom:m})}})}return h},getGraphPath:function(e){var h=B.prototype.getGraphPath,
t=this.options,u=t.stacking,v=this.yAxis,n,g,d=[],m=[],b=this.index,k,p=v.stacks[this.stackKey],c=t.threshold,x=v.getThreshold(t.threshold),K,t=a.pick(t.connectNulls,"percent"===u),w=function(a,g,l){var h=e[a];a=u&&p[h.x].points[b];var n=h[l+"Null"]||0;l=h[l+"Cliff"]||0;var w,q,h=!0;l||n?(w=(n?a[0]:a[1])+l,q=a[0]+l,h=!!n):!u&&e[g]&&e[g].isNull&&(w=q=c);void 0!==w&&(m.push({plotX:k,plotY:null===w?x:v.getThreshold(w),isNull:h,isCliff:!0}),d.push({plotX:k,plotY:null===q?x:v.getThreshold(q),doCurve:!1}))};
e=e||this.points;u&&(e=this.getStackPoints(e));for(n=0;n<e.length;n++)if(g=e[n].isNull,k=H(e[n].rectPlotX,e[n].plotX),K=H(e[n].yBottom,x),!g||t)t||w(n,n-1,"left"),g&&!u&&t||(m.push(e[n]),d.push({x:n,plotX:k,plotY:K})),t||w(n,n+1,"right");n=h.call(this,m,!0,!0);d.reversed=!0;g=h.call(this,d,!0,!0);g.length&&(g[0]="L");g=n.concat(g);h=h.call(this,m,!1,t);g.xMap=n.xMap;this.areaPath=g;return h},drawGraph:function(){this.areaPath=[];B.prototype.drawGraph.apply(this);var a=this,h=this.areaPath,t=this.options,
u=[["area","highcharts-area",this.color,t.fillColor]];this.zones.forEach(function(e,h){u.push(["zone-area-"+h,"highcharts-area highcharts-zone-area-"+h+" "+e.className,e.color||a.color,e.fillColor||t.fillColor])});u.forEach(function(e){var n=e[0],g=a[n],d=g?"animate":"attr",m={};g?(g.endX=a.preventGraphAnimation?null:h.xMap,g.animate({d:h})):(m.zIndex=0,g=a[n]=a.chart.renderer.path(h).addClass(e[1]).add(a.group),g.isArea=!0);a.chart.styledMode||(m.fill=H(e[3],E(e[2]).setOpacity(H(t.fillOpacity,.75)).get()));
g[d](m);g.startX=h.xMap;g.shiftUnit=t.step?2:1})},drawLegendSymbol:a.LegendSymbolMixin.drawRectangle})});J(G,"parts/SplineSeries.js",[G["parts/Globals.js"]],function(a){var E=a.pick;a=a.seriesType;a("spline","line",{},{getPointSpline:function(a,B,h){var e=B.plotX,q=B.plotY,t=a[h-1];h=a[h+1];var u,v,n,g;if(t&&!t.isNull&&!1!==t.doCurve&&!B.isCliff&&h&&!h.isNull&&!1!==h.doCurve&&!B.isCliff){a=t.plotY;n=h.plotX;h=h.plotY;var d=0;u=(1.5*e+t.plotX)/2.5;v=(1.5*q+a)/2.5;n=(1.5*e+n)/2.5;g=(1.5*q+h)/2.5;n!==
u&&(d=(g-v)*(n-e)/(n-u)+q-g);v+=d;g+=d;v>a&&v>q?(v=Math.max(a,q),g=2*q-v):v<a&&v<q&&(v=Math.min(a,q),g=2*q-v);g>h&&g>q?(g=Math.max(h,q),v=2*q-g):g<h&&g<q&&(g=Math.min(h,q),v=2*q-g);B.rightContX=n;B.rightContY=g}B=["C",E(t.rightContX,t.plotX),E(t.rightContY,t.plotY),E(u,e),E(v,q),e,q];t.rightContX=t.rightContY=null;return B}})});J(G,"parts/AreaSplineSeries.js",[G["parts/Globals.js"]],function(a){var E=a.seriesTypes.area.prototype,H=a.seriesType;H("areaspline","spline",a.defaultPlotOptions.area,{getStackPoints:E.getStackPoints,
getGraphPath:E.getGraphPath,drawGraph:E.drawGraph,drawLegendSymbol:a.LegendSymbolMixin.drawRectangle})});J(G,"parts/ColumnSeries.js",[G["parts/Globals.js"]],function(a){var E=a.animObject,H=a.color,B=a.extend,h=a.defined,e=a.isNumber,q=a.merge,t=a.pick,u=a.Series,v=a.seriesType,n=a.svg;v("column","line",{borderRadius:0,crisp:!0,groupPadding:.2,marker:null,pointPadding:.1,minPointLength:0,cropThreshold:50,pointRange:null,states:{hover:{halo:!1,brightness:.1},select:{color:"#cccccc",borderColor:"#000000"}},
dataLabels:{align:null,verticalAlign:null,y:null},softThreshold:!1,startFromThreshold:!0,stickyTracking:!1,tooltip:{distance:6},threshold:0,borderColor:"#ffffff"},{cropShoulder:0,directTouch:!0,trackerGroups:["group","dataLabelsGroup"],negStacks:!0,init:function(){u.prototype.init.apply(this,arguments);var a=this,d=a.chart;d.hasRendered&&d.series.forEach(function(d){d.type===a.type&&(d.isDirty=!0)})},getColumnMetrics:function(){var a=this,d=a.options,e=a.xAxis,b=a.yAxis,k=e.options.reversedStacks,
k=e.reversed&&!k||!e.reversed&&k,h,c={},n=0;!1===d.grouping?n=1:a.chart.series.forEach(function(d){var e=d.options,g=d.yAxis,k;d.type!==a.type||!d.visible&&a.chart.options.chart.ignoreHiddenSeries||b.len!==g.len||b.pos!==g.pos||(e.stacking?(h=d.stackKey,void 0===c[h]&&(c[h]=n++),k=c[h]):!1!==e.grouping&&(k=n++),d.columnIndex=k)});var q=Math.min(Math.abs(e.transA)*(e.ordinalSlope||d.pointRange||e.closestPointRange||e.tickInterval||1),e.len),w=q*d.groupPadding,u=(q-2*w)/(n||1),d=Math.min(d.maxPointWidth||
e.len,t(d.pointWidth,u*(1-2*d.pointPadding)));a.columnMetrics={width:d,offset:(u-d)/2+(w+((a.columnIndex||0)+(k?1:0))*u-q/2)*(k?-1:1)};return a.columnMetrics},crispCol:function(a,d,e,b){var g=this.chart,m=this.borderWidth,c=-(m%2?.5:0),m=m%2?.5:1;g.inverted&&g.renderer.isVML&&(m+=1);this.options.crisp&&(e=Math.round(a+e)+c,a=Math.round(a)+c,e-=a);b=Math.round(d+b)+m;c=.5>=Math.abs(d)&&.5<b;d=Math.round(d)+m;b-=d;c&&b&&(--d,b+=1);return{x:a,y:d,width:e,height:b}},translate:function(){var a=this,d=
a.chart,e=a.options,b=a.dense=2>a.closestPointRange*a.xAxis.transA,b=a.borderWidth=t(e.borderWidth,b?0:1),k=a.yAxis,p=e.threshold,c=a.translatedThreshold=k.getThreshold(p),n=t(e.minPointLength,5),q=a.getColumnMetrics(),w=q.width,v=a.barW=Math.max(w,1+2*b),C=a.pointXOffset=q.offset,l=a.dataMin,D=a.dataMax;d.inverted&&(c-=.5);e.pointPadding&&(v=Math.ceil(v));u.prototype.translate.apply(a);a.points.forEach(function(b){var e=t(b.yBottom,c),g=999+Math.abs(e),f=w,g=Math.min(Math.max(-g,b.plotY),k.len+g),
m=b.plotX+C,q=v,x=Math.min(g,e),u,A=Math.max(g,e)-x;n&&Math.abs(A)<n&&(A=n,u=!k.reversed&&!b.negative||k.reversed&&b.negative,b.y===p&&a.dataMax<=p&&k.min<p&&l!==D&&(u=!u),x=Math.abs(x-c)>n?e-n:c-(u?n:0));h(b.options.pointWidth)&&(f=q=Math.ceil(b.options.pointWidth),m-=Math.round((f-w)/2));b.barX=m;b.pointWidth=f;b.tooltipPos=d.inverted?[k.len+k.pos-d.plotLeft-g,a.xAxis.len-m-q/2,A]:[m+q/2,g+k.pos-d.plotTop,A];b.shapeType=a.pointClass.prototype.shapeType||"rect";b.shapeArgs=a.crispCol.apply(a,b.isNull?
[m,c,q,0]:[m,x,q,A])})},getSymbol:a.noop,drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,drawGraph:function(){this.group[this.dense?"addClass":"removeClass"]("highcharts-dense-data")},pointAttribs:function(a,d){var e=this.options,b,k=this.pointAttrToOptions||{};b=k.stroke||"borderColor";var g=k["stroke-width"]||"borderWidth",c=a&&a.color||this.color,h=a&&a[b]||e[b]||this.color||c,n=a&&a[g]||e[g]||this[g]||0,k=a&&a.dashStyle||e.dashStyle,w=t(e.opacity,1),u;a&&this.zones.length&&(u=a.getZone(),c=
a.options.color||u&&u.color||this.color,u&&(h=u.borderColor||h,k=u.dashStyle||k,n=u.borderWidth||n));d&&(a=q(e.states[d],a.options.states&&a.options.states[d]||{}),d=a.brightness,c=a.color||void 0!==d&&H(c).brighten(a.brightness).get()||c,h=a[b]||h,n=a[g]||n,k=a.dashStyle||k,w=t(a.opacity,w));b={fill:c,stroke:h,"stroke-width":n,opacity:w};k&&(b.dashstyle=k);return b},drawPoints:function(){var a=this,d=this.chart,m=a.options,b=d.renderer,k=m.animationLimit||250,h;a.points.forEach(function(c){var g=
c.graphic,p=g&&d.pointCount<k?"animate":"attr";if(e(c.plotY)&&null!==c.y){h=c.shapeArgs;g&&g.element.nodeName!==c.shapeType&&(g=g.destroy());if(g)g[p](q(h));else c.graphic=g=b[c.shapeType](h).add(c.group||a.group);if(m.borderRadius)g[p]({r:m.borderRadius});d.styledMode||g[p](a.pointAttribs(c,c.selected&&"select")).shadow(!1!==c.allowShadow&&m.shadow,null,m.stacking&&!m.borderRadius);g.addClass(c.getClassName(),!0)}else g&&(c.graphic=g.destroy())})},animate:function(a){var d=this,e=this.yAxis,b=d.options,
g=this.chart.inverted,h={},c=g?"translateX":"translateY",q;n&&(a?(h.scaleY=.001,a=Math.min(e.pos+e.len,Math.max(e.pos,e.toPixels(b.threshold))),g?h.translateX=a-e.len:h.translateY=a,d.clipBox&&d.setClip(),d.group.attr(h)):(q=d.group.attr(c),d.group.animate({scaleY:1},B(E(d.options.animation),{step:function(a,b){h[c]=q+b.pos*(e.pos-q);d.group.attr(h)}})),d.animate=null))},remove:function(){var a=this,d=a.chart;d.hasRendered&&d.series.forEach(function(d){d.type===a.type&&(d.isDirty=!0)});u.prototype.remove.apply(a,
arguments)}})});J(G,"parts/BarSeries.js",[G["parts/Globals.js"]],function(a){a=a.seriesType;a("bar","column",null,{inverted:!0})});J(G,"parts/ScatterSeries.js",[G["parts/Globals.js"]],function(a){var E=a.Series,H=a.seriesType;H("scatter","line",{lineWidth:0,findNearestPointBy:"xy",jitter:{x:0,y:0},marker:{enabled:!0},tooltip:{headerFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e \x3cspan style\x3d"font-size: 10px"\x3e {series.name}\x3c/span\x3e\x3cbr/\x3e',pointFormat:"x: \x3cb\x3e{point.x}\x3c/b\x3e\x3cbr/\x3ey: \x3cb\x3e{point.y}\x3c/b\x3e\x3cbr/\x3e"}},
{sorted:!1,requireSorting:!1,noSharedTooltip:!0,trackerGroups:["group","markerGroup","dataLabelsGroup"],takeOrdinalPosition:!1,drawGraph:function(){this.options.lineWidth&&E.prototype.drawGraph.call(this)},applyJitter:function(){var a=this,h=this.options.jitter,e=this.points.length;h&&this.points.forEach(function(q,t){["x","y"].forEach(function(u,v){var n,g="plot"+u.toUpperCase(),d,m;h[u]&&!q.isNull&&(n=a[u+"Axis"],m=h[u]*n.transA,n&&!n.isLog&&(d=Math.max(0,q[g]-m),n=Math.min(n.len,q[g]+m),v=1E4*
Math.sin(t+v*e),q[g]=d+(n-d)*(v-Math.floor(v)),"x"===u&&(q.clientX=q.plotX)))})})}});a.addEvent(E,"afterTranslate",function(){this.applyJitter&&this.applyJitter()})});J(G,"mixins/centered-series.js",[G["parts/Globals.js"]],function(a){var E=a.deg2rad,H=a.isNumber,B=a.pick,h=a.relativeLength;a.CenteredSeriesMixin={getCenter:function(){var a=this.options,q=this.chart,t=2*(a.slicedOffset||0),u=q.plotWidth-2*t,q=q.plotHeight-2*t,v=a.center,v=[B(v[0],"50%"),B(v[1],"50%"),a.size||"100%",a.innerSize||0],
n=Math.min(u,q),g,d;for(g=0;4>g;++g)d=v[g],a=2>g||2===g&&/%$/.test(d),v[g]=h(d,[u,q,n,v[2]][g])+(a?t:0);v[3]>v[2]&&(v[3]=v[2]);return v},getStartAndEndRadians:function(a,h){a=H(a)?a:0;h=H(h)&&h>a&&360>h-a?h:a+360;return{start:E*(a+-90),end:E*(h+-90)}}}});J(G,"parts/PieSeries.js",[G["parts/Globals.js"]],function(a){var E=a.addEvent,H=a.CenteredSeriesMixin,B=a.defined,h=H.getStartAndEndRadians,e=a.merge,q=a.noop,t=a.pick,u=a.Point,v=a.Series,n=a.seriesType,g=a.setAnimation;n("pie","line",{center:[null,
null],clip:!1,colorByPoint:!0,dataLabels:{allowOverlap:!0,connectorPadding:5,distance:30,enabled:!0,formatter:function(){return this.point.isNull?void 0:this.point.name},softConnector:!0,x:0,connectorShape:"fixedOffset",crookDistance:"70%"},ignoreHiddenPoint:!0,inactiveOtherPoints:!0,legendType:"point",marker:null,size:null,showInLegend:!1,slicedOffset:10,stickyTracking:!1,tooltip:{followPointer:!0},borderColor:"#ffffff",borderWidth:1,states:{hover:{brightness:.1}}},{isCartesian:!1,requireSorting:!1,
directTouch:!0,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],axisTypes:[],pointAttribs:a.seriesTypes.column.prototype.pointAttribs,animate:function(a){var d=this,b=d.points,e=d.startAngleRad;a||(b.forEach(function(a){var b=a.graphic,g=a.shapeArgs;b&&(b.attr({r:a.startR||d.center[3]/2,start:e,end:e}),b.animate({r:g.r,start:g.start,end:g.end},d.options.animation))}),d.animate=null)},hasData:function(){return!!this.processedXData.length},updateTotals:function(){var a,e=0,b=this.points,
g=b.length,h,c=this.options.ignoreHiddenPoint;for(a=0;a<g;a++)h=b[a],e+=c&&!h.visible?0:h.isNull?0:h.y;this.total=e;for(a=0;a<g;a++)h=b[a],h.percentage=0<e&&(h.visible||!c)?h.y/e*100:0,h.total=e},generatePoints:function(){v.prototype.generatePoints.call(this);this.updateTotals()},getX:function(a,e,b){var d=this.center,g=this.radii?this.radii[b.index]:d[2]/2;return d[0]+(e?-1:1)*Math.cos(Math.asin(Math.max(Math.min((a-d[1])/(g+b.labelDistance),1),-1)))*(g+b.labelDistance)+(0<b.labelDistance?(e?-1:
1)*this.options.dataLabels.padding:0)},translate:function(d){this.generatePoints();var e=0,b=this.options,g=b.slicedOffset,p=g+(b.borderWidth||0),c,n,q=h(b.startAngle,b.endAngle),w=this.startAngleRad=q.start,q=(this.endAngleRad=q.end)-w,u=this.points,C,l,v=b.dataLabels.distance,b=b.ignoreHiddenPoint,A,z=u.length,B;d||(this.center=d=this.getCenter());for(A=0;A<z;A++){B=u[A];c=w+e*q;if(!b||B.visible)e+=B.percentage/100;n=w+e*q;B.shapeType="arc";B.shapeArgs={x:d[0],y:d[1],r:d[2]/2,innerR:d[3]/2,start:Math.round(1E3*
c)/1E3,end:Math.round(1E3*n)/1E3};B.labelDistance=t(B.options.dataLabels&&B.options.dataLabels.distance,v);B.labelDistance=a.relativeLength(B.labelDistance,B.shapeArgs.r);this.maxLabelDistance=Math.max(this.maxLabelDistance||0,B.labelDistance);n=(n+c)/2;n>1.5*Math.PI?n-=2*Math.PI:n<-Math.PI/2&&(n+=2*Math.PI);B.slicedTranslation={translateX:Math.round(Math.cos(n)*g),translateY:Math.round(Math.sin(n)*g)};C=Math.cos(n)*d[2]/2;l=Math.sin(n)*d[2]/2;B.tooltipPos=[d[0]+.7*C,d[1]+.7*l];B.half=n<-Math.PI/
2||n>Math.PI/2?1:0;B.angle=n;c=Math.min(p,B.labelDistance/5);B.labelPosition={natural:{x:d[0]+C+Math.cos(n)*B.labelDistance,y:d[1]+l+Math.sin(n)*B.labelDistance},"final":{},alignment:0>B.labelDistance?"center":B.half?"right":"left",connectorPosition:{breakAt:{x:d[0]+C+Math.cos(n)*c,y:d[1]+l+Math.sin(n)*c},touchingSliceAt:{x:d[0]+C,y:d[1]+l}}}}},drawGraph:null,redrawPoints:function(){var a=this,g=a.chart,b=g.renderer,k,h,c,n,q=a.options.shadow;!q||a.shadowGroup||g.styledMode||(a.shadowGroup=b.g("shadow").attr({zIndex:-1}).add(a.group));
a.points.forEach(function(d){var m={};h=d.graphic;if(!d.isNull&&h){n=d.shapeArgs;k=d.getTranslate();if(!g.styledMode){var p=d.shadowGroup;q&&!p&&(p=d.shadowGroup=b.g("shadow").add(a.shadowGroup));p&&p.attr(k);c=a.pointAttribs(d,d.selected&&"select")}d.delayedRendering?(h.setRadialReference(a.center).attr(n).attr(k),g.styledMode||h.attr(c).attr({"stroke-linejoin":"round"}).shadow(q,p),d.delayedRendering=!1):(h.setRadialReference(a.center),g.styledMode||e(!0,m,c),e(!0,m,n,k),h.animate(m));h.attr({visibility:d.visible?
"inherit":"hidden"});h.addClass(d.getClassName())}else h&&(d.graphic=h.destroy())})},drawPoints:function(){var a=this.chart.renderer;this.points.forEach(function(d){d.graphic||(d.graphic=a[d.shapeType](d.shapeArgs).add(d.series.group),d.delayedRendering=!0)})},searchPoint:q,sortByAngle:function(a,e){a.sort(function(a,d){return void 0!==a.angle&&(d.angle-a.angle)*e})},drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,getCenter:H.getCenter,getSymbol:q},{init:function(){u.prototype.init.apply(this,
arguments);var a=this,e;a.name=t(a.name,"Slice");e=function(b){a.slice("select"===b.type)};E(a,"select",e);E(a,"unselect",e);return a},isValid:function(){return a.isNumber(this.y,!0)&&0<=this.y},setVisible:function(a,e){var b=this,d=b.series,g=d.chart,c=d.options.ignoreHiddenPoint;e=t(e,c);a!==b.visible&&(b.visible=b.options.visible=a=void 0===a?!b.visible:a,d.options.data[d.data.indexOf(b)]=b.options,["graphic","dataLabel","connector","shadowGroup"].forEach(function(c){if(b[c])b[c][a?"show":"hide"](!0)}),
b.legendItem&&g.legend.colorizeItem(b,a),a||"hover"!==b.state||b.setState(""),c&&(d.isDirty=!0),e&&g.redraw())},slice:function(a,e,b){var d=this.series;g(b,d.chart);t(e,!0);this.sliced=this.options.sliced=B(a)?a:!this.sliced;d.options.data[d.data.indexOf(this)]=this.options;this.graphic.animate(this.getTranslate());this.shadowGroup&&this.shadowGroup.animate(this.getTranslate())},getTranslate:function(){return this.sliced?this.slicedTranslation:{translateX:0,translateY:0}},haloPath:function(a){var d=
this.shapeArgs;return this.sliced||!this.visible?[]:this.series.chart.renderer.symbols.arc(d.x,d.y,d.r+a,d.r+a,{innerR:this.shapeArgs.r-1,start:d.start,end:d.end})},connectorShapes:{fixedOffset:function(a,e,b){var d=e.breakAt;e=e.touchingSliceAt;return["M",a.x,a.y].concat(b.softConnector?["C",a.x+("left"===a.alignment?-5:5),a.y,2*d.x-e.x,2*d.y-e.y,d.x,d.y]:["L",d.x,d.y]).concat(["L",e.x,e.y])},straight:function(a,e){e=e.touchingSliceAt;return["M",a.x,a.y,"L",e.x,e.y]},crookedLine:function(d,e,b){e=
e.touchingSliceAt;var g=this.series,h=g.center[0],c=g.chart.plotWidth,m=g.chart.plotLeft,g=d.alignment,n=this.shapeArgs.r;b=a.relativeLength(b.crookDistance,1);b="left"===g?h+n+(c+m-h-n)*(1-b):m+(h-n)*b;h=["L",b,d.y];if("left"===g?b>d.x||b<e.x:b<d.x||b>e.x)h=[];return["M",d.x,d.y].concat(h).concat(["L",e.x,e.y])}},getConnectorPath:function(){var a=this.labelPosition,e=this.series.options.dataLabels,b=e.connectorShape,g=this.connectorShapes;g[b]&&(b=g[b]);return b.call(this,{x:a.final.x,y:a.final.y,
alignment:a.alignment},a.connectorPosition,e)}})});J(G,"parts/DataLabels.js",[G["parts/Globals.js"]],function(a){var E=a.arrayMax,H=a.defined,B=a.extend,h=a.format,e=a.merge,q=a.noop,t=a.pick,u=a.relativeLength,v=a.Series,n=a.seriesTypes,g=a.stableSort,d=a.isArray,m=a.splat;a.distribute=function(b,d,e){function c(a,b){return a.target-b.target}var k,h=!0,m=b,p=[],n;n=0;var l=m.reducedLen||d;for(k=b.length;k--;)n+=b[k].size;if(n>l){g(b,function(a,b){return(b.rank||0)-(a.rank||0)});for(n=k=0;n<=l;)n+=
b[k].size,k++;p=b.splice(k-1,b.length)}g(b,c);for(b=b.map(function(a){return{size:a.size,targets:[a.target],align:t(a.align,.5)}});h;){for(k=b.length;k--;)h=b[k],n=(Math.min.apply(0,h.targets)+Math.max.apply(0,h.targets))/2,h.pos=Math.min(Math.max(0,n-h.size*h.align),d-h.size);k=b.length;for(h=!1;k--;)0<k&&b[k-1].pos+b[k-1].size>b[k].pos&&(b[k-1].size+=b[k].size,b[k-1].targets=b[k-1].targets.concat(b[k].targets),b[k-1].align=.5,b[k-1].pos+b[k-1].size>d&&(b[k-1].pos=d-b[k-1].size),b.splice(k,1),h=
!0)}m.push.apply(m,p);k=0;b.some(function(b){var c=0;if(b.targets.some(function(){m[k].pos=b.pos+c;if(Math.abs(m[k].pos-m[k].target)>e)return m.slice(0,k+1).forEach(function(a){delete a.pos}),m.reducedLen=(m.reducedLen||d)-.1*d,m.reducedLen>.1*d&&a.distribute(m,d,e),!0;c+=m[k].size;k++}))return!0});g(m,c)};v.prototype.drawDataLabels=function(){function b(a,b){var c=b.filter;return c?(b=c.operator,a=a[c.property],c=c.value,"\x3e"===b&&a>c||"\x3c"===b&&a<c||"\x3e\x3d"===b&&a>=c||"\x3c\x3d"===b&&a<=
c||"\x3d\x3d"===b&&a==c||"\x3d\x3d\x3d"===b&&a===c?!0:!1):!0}function g(a,b){var c=[],f;if(d(a)&&!d(b))c=a.map(function(a){return e(a,b)});else if(d(b)&&!d(a))c=b.map(function(b){return e(a,b)});else if(d(a)||d(b))for(f=Math.max(a.length,b.length);f--;)c[f]=e(a[f],b[f]);else c=e(a,b);return c}var p=this,c=p.chart,n=p.options,q=n.dataLabels,w=p.points,u,C=p.hasRendered||0,l,v=a.animObject(n.animation).duration,A=Math.min(v,200),z=!c.renderer.forExport&&t(q.defer,0<A),B=c.renderer,q=g(g(c.options.plotOptions&&
c.options.plotOptions.series&&c.options.plotOptions.series.dataLabels,c.options.plotOptions&&c.options.plotOptions[p.type]&&c.options.plotOptions[p.type].dataLabels),q);a.fireEvent(this,"drawDataLabels");if(d(q)||q.enabled||p._hasPointLabels)l=p.plotGroup("dataLabelsGroup","data-labels",z&&!C?"hidden":"inherit",q.zIndex||6),z&&(l.attr({opacity:+C}),C||setTimeout(function(){var a=p.dataLabelsGroup;a&&(p.visible&&l.show(!0),a[n.animation?"animate":"attr"]({opacity:1},{duration:A}))},v-A)),w.forEach(function(d){u=
m(g(q,d.dlOptions||d.options&&d.options.dataLabels));u.forEach(function(e,f){var g=e.enabled&&(!d.isNull||d.dataLabelOnNull)&&b(d,e),k,m,q,w,r=d.dataLabels?d.dataLabels[f]:d.dataLabel,u=d.connectors?d.connectors[f]:d.connector,x=!r;g&&(k=d.getLabelConfig(),m=t(e[d.formatPrefix+"Format"],e.format),k=H(m)?h(m,k,c.time):(e[d.formatPrefix+"Formatter"]||e.formatter).call(k,e),m=e.style,q=e.rotation,c.styledMode||(m.color=t(e.color,m.color,p.color,"#000000"),"contrast"===m.color&&(d.contrastColor=B.getContrast(d.color||
p.color),m.color=e.inside||0>t(e.distance,d.labelDistance)||n.stacking?d.contrastColor:"#000000"),n.cursor&&(m.cursor=n.cursor)),w={r:e.borderRadius||0,rotation:q,padding:e.padding,zIndex:1},c.styledMode||(w.fill=e.backgroundColor,w.stroke=e.borderColor,w["stroke-width"]=e.borderWidth),a.objectEach(w,function(a,b){void 0===a&&delete w[b]}));!r||g&&H(k)?g&&H(k)&&(r?w.text=k:(d.dataLabels=d.dataLabels||[],r=d.dataLabels[f]=q?B.text(k,0,-9999).addClass("highcharts-data-label"):B.label(k,0,-9999,e.shape,
null,null,e.useHTML,null,"data-label"),f||(d.dataLabel=r),r.addClass(" highcharts-data-label-color-"+d.colorIndex+" "+(e.className||"")+(e.useHTML?" highcharts-tracker":""))),r.options=e,r.attr(w),c.styledMode||r.css(m).shadow(e.shadow),r.added||r.add(l),e.textPath&&!e.useHTML&&r.setTextPath(d.getDataLabelPath&&d.getDataLabelPath(r)||d.graphic,e.textPath),p.alignDataLabel(d,r,e,null,x)):(d.dataLabel=d.dataLabel&&d.dataLabel.destroy(),d.dataLabels&&(1===d.dataLabels.length?delete d.dataLabels:delete d.dataLabels[f]),
f||delete d.dataLabel,u&&(d.connector=d.connector.destroy(),d.connectors&&(1===d.connectors.length?delete d.connectors:delete d.connectors[f])))})});a.fireEvent(this,"afterDrawDataLabels")};v.prototype.alignDataLabel=function(a,d,e,c,g){var b=this.chart,k=this.isCartesian&&b.inverted,h=t(a.dlBox&&a.dlBox.centerX,a.plotX,-9999),m=t(a.plotY,-9999),l=d.getBBox(),p,n=e.rotation,q=e.align,u=this.visible&&(a.series.forceDL||b.isInsidePlot(h,Math.round(m),k)||c&&b.isInsidePlot(h,k?c.x+1:c.y+c.height-1,k)),
f="justify"===t(e.overflow,"justify");if(u&&(p=b.renderer.fontMetrics(b.styledMode?void 0:e.style.fontSize,d).b,c=B({x:k?this.yAxis.len-m:h,y:Math.round(k?this.xAxis.len-h:m),width:0,height:0},c),B(e,{width:l.width,height:l.height}),n?(f=!1,h=b.renderer.rotCorr(p,n),h={x:c.x+e.x+c.width/2+h.x,y:c.y+e.y+{top:0,middle:.5,bottom:1}[e.verticalAlign]*c.height},d[g?"attr":"animate"](h).attr({align:q}),m=(n+720)%360,m=180<m&&360>m,"left"===q?h.y-=m?l.height:0:"center"===q?(h.x-=l.width/2,h.y-=l.height/2):
"right"===q&&(h.x-=l.width,h.y-=m?0:l.height),d.placed=!0,d.alignAttr=h):(d.align(e,null,c),h=d.alignAttr),f&&0<=c.height?a.isLabelJustified=this.justifyDataLabel(d,e,h,l,c,g):t(e.crop,!0)&&(u=b.isInsidePlot(h.x,h.y)&&b.isInsidePlot(h.x+l.width,h.y+l.height)),e.shape&&!n))d[g?"attr":"animate"]({anchorX:k?b.plotWidth-a.plotY:a.plotX,anchorY:k?b.plotHeight-a.plotX:a.plotY});u||(d.attr({y:-9999}),d.placed=!1)};v.prototype.justifyDataLabel=function(a,d,e,c,g,h){var b=this.chart,k=d.align,m=d.verticalAlign,
l,p,n=a.box?0:a.padding||0;l=e.x+n;0>l&&("right"===k?d.align="left":d.x=-l,p=!0);l=e.x+c.width-n;l>b.plotWidth&&("left"===k?d.align="right":d.x=b.plotWidth-l,p=!0);l=e.y+n;0>l&&("bottom"===m?d.verticalAlign="top":d.y=-l,p=!0);l=e.y+c.height-n;l>b.plotHeight&&("top"===m?d.verticalAlign="bottom":d.y=b.plotHeight-l,p=!0);p&&(a.placed=!h,a.align(d,null,g));return p};n.pie&&(n.pie.prototype.dataLabelPositioners={radialDistributionY:function(a){return a.top+a.distributeBox.pos},radialDistributionX:function(a,
d,e,c){return a.getX(e<d.top+2||e>d.bottom-2?c:e,d.half,d)},justify:function(a,d,e){return e[0]+(a.half?-1:1)*(d+a.labelDistance)},alignToPlotEdges:function(a,d,e,c){a=a.getBBox().width;return d?a+c:e-a-c},alignToConnectors:function(a,d,e,c){var b=0,g;a.forEach(function(a){g=a.dataLabel.getBBox().width;g>b&&(b=g)});return d?b+c:e-b-c}},n.pie.prototype.drawDataLabels=function(){var b=this,d=b.data,g,c=b.chart,h=b.options.dataLabels,m=h.connectorPadding,n,q=c.plotWidth,u=c.plotHeight,l=c.plotLeft,D=
Math.round(c.chartWidth/3),A,z=b.center,B=z[2]/2,f=z[1],r,G,N,L,M=[[],[]],J,y,S,U,P=[0,0,0,0],T=b.dataLabelPositioners,O;b.visible&&(h.enabled||b._hasPointLabels)&&(d.forEach(function(a){a.dataLabel&&a.visible&&a.dataLabel.shortened&&(a.dataLabel.attr({width:"auto"}).css({width:"auto",textOverflow:"clip"}),a.dataLabel.shortened=!1)}),v.prototype.drawDataLabels.apply(b),d.forEach(function(a){a.dataLabel&&(a.visible?(M[a.half].push(a),a.dataLabel._pos=null,!H(h.style.width)&&!H(a.options.dataLabels&&
a.options.dataLabels.style&&a.options.dataLabels.style.width)&&a.dataLabel.getBBox().width>D&&(a.dataLabel.css({width:.7*D}),a.dataLabel.shortened=!0)):(a.dataLabel=a.dataLabel.destroy(),a.dataLabels&&1===a.dataLabels.length&&delete a.dataLabels))}),M.forEach(function(d,e){var k,p,n=d.length,w=[],v;if(n)for(b.sortByAngle(d,e-.5),0<b.maxLabelDistance&&(k=Math.max(0,f-B-b.maxLabelDistance),p=Math.min(f+B+b.maxLabelDistance,c.plotHeight),d.forEach(function(a){0<a.labelDistance&&a.dataLabel&&(a.top=Math.max(0,
f-B-a.labelDistance),a.bottom=Math.min(f+B+a.labelDistance,c.plotHeight),v=a.dataLabel.getBBox().height||21,a.distributeBox={target:a.labelPosition.natural.y-a.top+v/2,size:v,rank:a.y},w.push(a.distributeBox))}),k=p+v-k,a.distribute(w,k,k/5)),U=0;U<n;U++){g=d[U];N=g.labelPosition;r=g.dataLabel;S=!1===g.visible?"hidden":"inherit";y=k=N.natural.y;w&&H(g.distributeBox)&&(void 0===g.distributeBox.pos?S="hidden":(L=g.distributeBox.size,y=T.radialDistributionY(g)));delete g.positionIndex;if(h.justify)J=
T.justify(g,B,z);else switch(h.alignTo){case "connectors":J=T.alignToConnectors(d,e,q,l);break;case "plotEdges":J=T.alignToPlotEdges(r,e,q,l);break;default:J=T.radialDistributionX(b,g,y,k)}r._attr={visibility:S,align:N.alignment};r._pos={x:J+h.x+({left:m,right:-m}[N.alignment]||0),y:y+h.y-10};N.final.x=J;N.final.y=y;t(h.crop,!0)&&(G=r.getBBox().width,k=null,J-G<m&&1===e?(k=Math.round(G-J+m),P[3]=Math.max(k,P[3])):J+G>q-m&&0===e&&(k=Math.round(J+G-q+m),P[1]=Math.max(k,P[1])),0>y-L/2?P[0]=Math.max(Math.round(-y+
L/2),P[0]):y+L/2>u&&(P[2]=Math.max(Math.round(y+L/2-u),P[2])),r.sideOverflow=k)}}),0===E(P)||this.verifyDataLabelOverflow(P))&&(this.placeDataLabels(),this.points.forEach(function(a){O=e(h,a.options.dataLabels);if(n=t(O.connectorWidth,1)){var d;A=a.connector;if((r=a.dataLabel)&&r._pos&&a.visible&&0<a.labelDistance){S=r._attr.visibility;if(d=!A)a.connector=A=c.renderer.path().addClass("highcharts-data-label-connector  highcharts-color-"+a.colorIndex+(a.className?" "+a.className:"")).add(b.dataLabelsGroup),
c.styledMode||A.attr({"stroke-width":n,stroke:O.connectorColor||a.color||"#666666"});A[d?"attr":"animate"]({d:a.getConnectorPath()});A.attr("visibility",S)}else A&&(a.connector=A.destroy())}}))},n.pie.prototype.placeDataLabels=function(){this.points.forEach(function(a){var b=a.dataLabel,d;b&&a.visible&&((d=b._pos)?(b.sideOverflow&&(b._attr.width=Math.max(b.getBBox().width-b.sideOverflow,0),b.css({width:b._attr.width+"px",textOverflow:(this.options.dataLabels.style||{}).textOverflow||"ellipsis"}),
b.shortened=!0),b.attr(b._attr),b[b.moved?"animate":"attr"](d),b.moved=!0):b&&b.attr({y:-9999}));delete a.distributeBox},this)},n.pie.prototype.alignDataLabel=q,n.pie.prototype.verifyDataLabelOverflow=function(a){var b=this.center,d=this.options,c=d.center,e=d.minSize||80,g,h=null!==d.size;h||(null!==c[0]?g=Math.max(b[2]-Math.max(a[1],a[3]),e):(g=Math.max(b[2]-a[1]-a[3],e),b[0]+=(a[3]-a[1])/2),null!==c[1]?g=Math.max(Math.min(g,b[2]-Math.max(a[0],a[2])),e):(g=Math.max(Math.min(g,b[2]-a[0]-a[2]),e),
b[1]+=(a[0]-a[2])/2),g<b[2]?(b[2]=g,b[3]=Math.min(u(d.innerSize||0,g),g),this.translate(b),this.drawDataLabels&&this.drawDataLabels()):h=!0);return h});n.column&&(n.column.prototype.alignDataLabel=function(a,d,g,c,h){var b=this.chart.inverted,k=a.series,m=a.dlBox||a.shapeArgs,n=t(a.below,a.plotY>t(this.translatedThreshold,k.yAxis.len)),l=t(g.inside,!!this.options.stacking);m&&(c=e(m),0>c.y&&(c.height+=c.y,c.y=0),m=c.y+c.height-k.yAxis.len,0<m&&(c.height-=m),b&&(c={x:k.yAxis.len-c.y-c.height,y:k.xAxis.len-
c.x-c.width,width:c.height,height:c.width}),l||(b?(c.x+=n?0:c.width,c.width=0):(c.y+=n?c.height:0,c.height=0)));g.align=t(g.align,!b||l?"center":n?"right":"left");g.verticalAlign=t(g.verticalAlign,b||l?"middle":n?"top":"bottom");v.prototype.alignDataLabel.call(this,a,d,g,c,h);a.isLabelJustified&&a.contrastColor&&d.css({color:a.contrastColor})})});J(G,"modules/overlapping-datalabels.src.js",[G["parts/Globals.js"]],function(a){var E=a.Chart,G=a.isArray,B=a.objectEach,h=a.pick,e=a.addEvent,q=a.fireEvent;
e(E,"render",function(){var a=[];(this.labelCollectors||[]).forEach(function(e){a=a.concat(e())});(this.yAxis||[]).forEach(function(e){e.options.stackLabels&&!e.options.stackLabels.allowOverlap&&B(e.stacks,function(e){B(e,function(e){a.push(e.label)})})});(this.series||[]).forEach(function(e){var q=e.options.dataLabels;e.visible&&(!1!==q.enabled||e._hasPointLabels)&&e.points.forEach(function(e){e.visible&&(G(e.dataLabels)?e.dataLabels:e.dataLabel?[e.dataLabel]:[]).forEach(function(g){var d=g.options;
g.labelrank=h(d.labelrank,e.labelrank,e.shapeArgs&&e.shapeArgs.height);d.allowOverlap||a.push(g)})})});this.hideOverlappingLabels(a)});E.prototype.hideOverlappingLabels=function(a){var e=this,h=a.length,n=e.renderer,g,d,m,b,k,p,c=function(a,b,c,d,e,g,k,h){return!(e>a+c||e+k<a||g>b+d||g+h<b)};m=function(a){var b,c,d,e=a.box?0:a.padding||0;d=0;if(a&&(!a.alignAttr||a.placed))return b=a.alignAttr||{x:a.attr("x"),y:a.attr("y")},c=a.parentGroup,a.width||(d=a.getBBox(),a.width=d.width,a.height=d.height,
d=n.fontMetrics(null,a.element).h),{x:b.x+(c.translateX||0)+e,y:b.y+(c.translateY||0)+e-d,width:a.width-2*e,height:a.height-2*e}};for(d=0;d<h;d++)if(g=a[d])g.oldOpacity=g.opacity,g.newOpacity=1,g.absoluteBox=m(g);a.sort(function(a,b){return(b.labelrank||0)-(a.labelrank||0)});for(d=0;d<h;d++)for(p=(m=a[d])&&m.absoluteBox,g=d+1;g<h;++g)if(k=(b=a[g])&&b.absoluteBox,p&&k&&m!==b&&0!==m.newOpacity&&0!==b.newOpacity&&(k=c(p.x,p.y,p.width,p.height,k.x,k.y,k.width,k.height)))(m.labelrank<b.labelrank?m:b).newOpacity=
0;a.forEach(function(a){var b,c;a&&(c=a.newOpacity,a.oldOpacity!==c&&(a.alignAttr&&a.placed?(c?a.show(!0):b=function(){a.hide()},a.alignAttr.opacity=c,a[a.isOld?"animate":"attr"](a.alignAttr,null,b),q(e,"afterHideOverlappingLabels")):a.attr({opacity:c})),a.isOld=!0)})}});J(G,"parts/Interaction.js",[G["parts/Globals.js"]],function(a){var E=a.addEvent,G=a.Chart,B=a.createElement,h=a.css,e=a.defaultOptions,q=a.defaultPlotOptions,t=a.extend,u=a.fireEvent,v=a.hasTouch,n=a.isObject,g=a.isArray,d=a.Legend,
m=a.merge,b=a.pick,k=a.Point,p=a.Series,c=a.seriesTypes,x=a.svg,J;J=a.TrackerMixin={drawTrackerPoint:function(){var a=this,b=a.chart,c=b.pointer,d=function(a){var b=c.getPointFromEvent(a);void 0!==b&&(c.isDirectTouch=!0,b.onMouseOver(a))},e;a.points.forEach(function(a){e=g(a.dataLabels)?a.dataLabels:a.dataLabel?[a.dataLabel]:[];a.graphic&&(a.graphic.element.point=a);e.forEach(function(b){b.div?b.div.point=a:b.element.point=a})});a._hasTracking||(a.trackerGroups.forEach(function(e){if(a[e]){a[e].addClass("highcharts-tracker").on("mouseover",
d).on("mouseout",function(a){c.onTrackerMouseOut(a)});if(v)a[e].on("touchstart",d);!b.styledMode&&a.options.cursor&&a[e].css(h).css({cursor:a.options.cursor})}}),a._hasTracking=!0);u(this,"afterDrawTracker")},drawTrackerGraph:function(){var a=this,b=a.options,c=b.trackByArea,d=[].concat(c?a.areaPath:a.graphPath),e=d.length,g=a.chart,k=g.pointer,h=g.renderer,f=g.options.tooltip.snap,m=a.tracker,n,p=function(){if(g.hoverSeries!==a)a.onMouseOver()},q="rgba(192,192,192,"+(x?.0001:.002)+")";if(e&&!c)for(n=
e+1;n--;)"M"===d[n]&&d.splice(n+1,0,d[n+1]-f,d[n+2],"L"),(n&&"M"===d[n]||n===e)&&d.splice(n,0,"L",d[n-2]+f,d[n-1]);m?m.attr({d:d}):a.graph&&(a.tracker=h.path(d).attr({visibility:a.visible?"visible":"hidden",zIndex:2}).addClass(c?"highcharts-tracker-area":"highcharts-tracker-line").add(a.group),g.styledMode||a.tracker.attr({"stroke-linejoin":"round",stroke:q,fill:c?q:"none","stroke-width":a.graph.strokeWidth()+(c?0:2*f)}),[a.tracker,a.markerGroup].forEach(function(a){a.addClass("highcharts-tracker").on("mouseover",
p).on("mouseout",function(a){k.onTrackerMouseOut(a)});b.cursor&&!g.styledMode&&a.css({cursor:b.cursor});if(v)a.on("touchstart",p)}));u(this,"afterDrawTracker")}};c.column&&(c.column.prototype.drawTracker=J.drawTrackerPoint);c.pie&&(c.pie.prototype.drawTracker=J.drawTrackerPoint);c.scatter&&(c.scatter.prototype.drawTracker=J.drawTrackerPoint);t(d.prototype,{setItemEvents:function(a,b,c){var d=this,e=d.chart.renderer.boxWrapper,g=a instanceof k,h="highcharts-legend-"+(g?"point":"series")+"-active",
n=d.chart.styledMode;(c?b:a.legendGroup).on("mouseover",function(){d.allItems.forEach(function(b){a!==b&&b.setState("inactive",!g)});a.setState("hover");a.visible&&e.addClass(h);n||b.css(d.options.itemHoverStyle)}).on("mouseout",function(){d.styledMode||b.css(m(a.visible?d.itemStyle:d.itemHiddenStyle));d.allItems.forEach(function(b){a!==b&&b.setState("",!g)});e.removeClass(h);a.setState()}).on("click",function(b){var c=function(){a.setVisible&&a.setVisible()};e.removeClass(h);b={browserEvent:b};a.firePointEvent?
a.firePointEvent("legendItemClick",b,c):u(a,"legendItemClick",b,c)})},createCheckboxForItem:function(a){a.checkbox=B("input",{type:"checkbox",className:"highcharts-legend-checkbox",checked:a.selected,defaultChecked:a.selected},this.options.itemCheckboxStyle,this.chart.container);E(a.checkbox,"click",function(b){u(a.series||a,"checkboxClick",{checked:b.target.checked,item:a},function(){a.select()})})}});t(G.prototype,{showResetZoom:function(){function a(){b.zoomOut()}var b=this,c=e.lang,d=b.options.chart.resetZoomButton,
g=d.theme,k=g.states,h="chart"===d.relativeTo||"spaceBox"===d.relativeTo?null:"plotBox";u(this,"beforeShowResetZoom",null,function(){b.resetZoomButton=b.renderer.button(c.resetZoom,null,null,a,g,k&&k.hover).attr({align:d.position.align,title:c.resetZoomTitle}).addClass("highcharts-reset-zoom").add().align(d.position,!1,h)});u(this,"afterShowResetZoom")},zoomOut:function(){u(this,"selection",{resetSelection:!0},this.zoom)},zoom:function(c){var d=this,e,g=d.pointer,k=!1,h=d.inverted?g.mouseDownX:g.mouseDownY,
m;!c||c.resetSelection?(d.axes.forEach(function(a){e=a.zoom()}),g.initiated=!1):c.xAxis.concat(c.yAxis).forEach(function(b){var c=b.axis,l=d.inverted?c.left:c.top,m=d.inverted?l+c.width:l+c.height,n=c.isXAxis,p=!1;if(!n&&h>=l&&h<=m||n||!a.defined(h))p=!0;g[n?"zoomX":"zoomY"]&&p&&(e=c.zoom(b.min,b.max),c.displayBtn&&(k=!0))});m=d.resetZoomButton;k&&!m?d.showResetZoom():!k&&n(m)&&(d.resetZoomButton=m.destroy());e&&d.redraw(b(d.options.chart.animation,c&&c.animation,100>d.pointCount))},pan:function(a,
b){var c=this,d=c.hoverPoints,e;u(this,"pan",{originalEvent:a},function(){d&&d.forEach(function(a){a.setState()});("xy"===b?[1,0]:[1]).forEach(function(b){b=c[b?"xAxis":"yAxis"][0];var d=b.horiz,g=a[d?"chartX":"chartY"],d=d?"mouseDownX":"mouseDownY",f=c[d],l=(b.pointRange||0)/2,k=b.reversed&&!c.inverted||!b.reversed&&c.inverted?-1:1,h=b.getExtremes(),m=b.toValue(f-g,!0)+l*k,k=b.toValue(f+b.len-g,!0)-l*k,n=k<m,f=n?k:m,m=n?m:k,k=Math.min(h.dataMin,l?h.min:b.toValue(b.toPixels(h.min)-b.minPixelPadding)),
l=Math.max(h.dataMax,l?h.max:b.toValue(b.toPixels(h.max)+b.minPixelPadding)),n=k-f;0<n&&(m+=n,f=k);n=m-l;0<n&&(m=l,f-=n);b.series.length&&f!==h.min&&m!==h.max&&(b.setExtremes(f,m,!1,!1,{trigger:"pan"}),e=!0);c[d]=g});e&&c.redraw(!1);h(c.container,{cursor:"move"})})}});t(k.prototype,{select:function(a,c){var d=this,e=d.series,g=e.chart;a=b(a,!d.selected);d.firePointEvent(a?"select":"unselect",{accumulate:c},function(){d.selected=d.options.selected=a;e.options.data[e.data.indexOf(d)]=d.options;d.setState(a&&
"select");c||g.getSelectedPoints().forEach(function(a){var b=a.series;a.selected&&a!==d&&(a.selected=a.options.selected=!1,b.options.data[b.data.indexOf(a)]=a.options,a.setState(g.hoverPoints&&b.options.inactiveOtherPoints?"inactive":""),a.firePointEvent("unselect"))})})},onMouseOver:function(a){var b=this.series.chart,c=b.pointer;a=a?c.normalize(a):c.getChartCoordinatesFromPoint(this,b.inverted);c.runPointActions(a,this)},onMouseOut:function(){var a=this.series.chart;this.firePointEvent("mouseOut");
this.series.options.inactiveOtherPoints||(a.hoverPoints||[]).forEach(function(a){a.setState()});a.hoverPoints=a.hoverPoint=null},importEvents:function(){if(!this.hasImportedEvents){var b=this,c=m(b.series.options.point,b.options).events;b.events=c;a.objectEach(c,function(c,d){a.isFunction(c)&&E(b,d,c)});this.hasImportedEvents=!0}},setState:function(a,c){var d=Math.floor(this.plotX),e=this.plotY,g=this.series,k=this.state,h=g.options.states[a||"normal"]||{},m=q[g.type].marker&&g.options.marker,f=m&&
!1===m.enabled,n=m&&m.states&&m.states[a||"normal"]||{},p=!1===n.enabled,w=g.stateMarkerGraphic,v=this.marker||{},x=g.chart,B=g.halo,y,E,F,G=m&&g.markerAttribs;a=a||"";if(!(a===this.state&&!c||this.selected&&"select"!==a||!1===h.enabled||a&&(p||f&&!1===n.enabled)||a&&v.states&&v.states[a]&&!1===v.states[a].enabled)){this.state=a;G&&(y=g.markerAttribs(this,a));if(this.graphic)k&&this.graphic.removeClass("highcharts-point-"+k),a&&this.graphic.addClass("highcharts-point-"+a),x.styledMode||(E=g.pointAttribs(this,
a),F=b(x.options.chart.animation,h.animation),g.options.inactiveOtherPoints&&((this.dataLabels||[]).forEach(function(a){a&&a.animate({opacity:E.opacity},F)}),this.connector&&this.connector.animate({opacity:E.opacity},F)),this.graphic.animate(E,F)),y&&this.graphic.animate(y,b(x.options.chart.animation,n.animation,m.animation)),w&&w.hide();else{if(a&&n){k=v.symbol||g.symbol;w&&w.currentSymbol!==k&&(w=w.destroy());if(w)w[c?"animate":"attr"]({x:y.x,y:y.y});else k&&(g.stateMarkerGraphic=w=x.renderer.symbol(k,
y.x,y.y,y.width,y.height).add(g.markerGroup),w.currentSymbol=k);!x.styledMode&&w&&w.attr(g.pointAttribs(this,a))}w&&(w[a&&x.isInsidePlot(d,e,x.inverted)?"show":"hide"](),w.element.point=this)}(a=h.halo)&&a.size?(B||(g.halo=B=x.renderer.path().add((this.graphic||w).parentGroup)),B.show()[c?"animate":"attr"]({d:this.haloPath(a.size)}),B.attr({"class":"highcharts-halo highcharts-color-"+b(this.colorIndex,g.colorIndex)+(this.className?" "+this.className:""),zIndex:-1}),B.point=this,x.styledMode||B.attr(t({fill:this.color||
g.color,"fill-opacity":a.opacity},a.attributes))):B&&B.point&&B.point.haloPath&&B.animate({d:B.point.haloPath(0)},null,B.hide);u(this,"afterSetState")}},haloPath:function(a){return this.series.chart.renderer.symbols.circle(Math.floor(this.plotX)-a,this.plotY-a,2*a,2*a)}});t(p.prototype,{onMouseOver:function(){var a=this.chart,b=a.hoverSeries;if(b&&b!==this)b.onMouseOut();this.options.events.mouseOver&&u(this,"mouseOver");this.setState("hover");a.hoverSeries=this},onMouseOut:function(){var a=this.options,
b=this.chart,c=b.tooltip,d=b.hoverPoint;b.hoverSeries=null;if(d)d.onMouseOut();this&&a.events.mouseOut&&u(this,"mouseOut");!c||this.stickyTracking||c.shared&&!this.noSharedTooltip||c.hide();b.series.forEach(function(a){a.setState("",!0)})},setState:function(a,c){var d=this,e=d.options,g=d.graph,k=e.inactiveOtherPoints,h=e.states,m=e.lineWidth,f=e.opacity,n=b(h[a||"normal"]&&h[a||"normal"].animation,d.chart.options.chart.animation),e=0;a=a||"";if(d.state!==a&&([d.group,d.markerGroup,d.dataLabelsGroup].forEach(function(b){b&&
(d.state&&b.removeClass("highcharts-series-"+d.state),a&&b.addClass("highcharts-series-"+a))}),d.state=a,!d.chart.styledMode)){if(h[a]&&!1===h[a].enabled)return;a&&(m=h[a].lineWidth||m+(h[a].lineWidthPlus||0),f=b(h[a].opacity,f));if(g&&!g.dashstyle)for(h={"stroke-width":m},g.animate(h,n);d["zone-graph-"+e];)d["zone-graph-"+e].attr(h),e+=1;k||[d.group,d.markerGroup,d.dataLabelsGroup,d.labelBySeries].forEach(function(a){a&&a.animate({opacity:f},n)})}c&&k&&d.points&&d.points.forEach(function(b){b.setState&&
b.setState(a)})},setVisible:function(a,b){var c=this,d=c.chart,e=c.legendItem,g,k=d.options.chart.ignoreHiddenSeries,h=c.visible;g=(c.visible=a=c.options.visible=c.userOptions.visible=void 0===a?!h:a)?"show":"hide";["group","dataLabelsGroup","markerGroup","tracker","tt"].forEach(function(a){if(c[a])c[a][g]()});if(d.hoverSeries===c||(d.hoverPoint&&d.hoverPoint.series)===c)c.onMouseOut();e&&d.legend.colorizeItem(c,a);c.isDirty=!0;c.options.stacking&&d.series.forEach(function(a){a.options.stacking&&
a.visible&&(a.isDirty=!0)});c.linkedSeries.forEach(function(b){b.setVisible(a,!1)});k&&(d.isDirtyBox=!0);u(c,g);!1!==b&&d.redraw()},show:function(){this.setVisible(!0)},hide:function(){this.setVisible(!1)},select:function(a){this.selected=a=this.options.selected=void 0===a?!this.selected:a;this.checkbox&&(this.checkbox.checked=a);u(this,a?"select":"unselect")},drawTracker:J.drawTrackerGraph})});J(G,"parts/Responsive.js",[G["parts/Globals.js"]],function(a){var E=a.Chart,G=a.isArray,B=a.isObject,h=
a.pick,e=a.splat;E.prototype.setResponsive=function(e,h){var q=this.options.responsive,t=[],n=this.currentResponsive;!h&&q&&q.rules&&q.rules.forEach(function(g){void 0===g._id&&(g._id=a.uniqueKey());this.matchResponsiveRule(g,t,e)},this);h=a.merge.apply(0,t.map(function(e){return a.find(q.rules,function(a){return a._id===e}).chartOptions}));h.isResponsiveOptions=!0;t=t.toString()||void 0;t!==(n&&n.ruleIds)&&(n&&this.update(n.undoOptions,e,!0),t?(n=this.currentOptions(h),n.isResponsiveOptions=!0,this.currentResponsive=
{ruleIds:t,mergedOptions:h,undoOptions:n},this.update(h,e,!0)):this.currentResponsive=void 0)};E.prototype.matchResponsiveRule=function(a,e){var q=a.condition;(q.callback||function(){return this.chartWidth<=h(q.maxWidth,Number.MAX_VALUE)&&this.chartHeight<=h(q.maxHeight,Number.MAX_VALUE)&&this.chartWidth>=h(q.minWidth,0)&&this.chartHeight>=h(q.minHeight,0)}).call(this)&&e.push(a._id)};E.prototype.currentOptions=function(q){function t(n,g,d,m){var b;a.objectEach(n,function(a,n){if(!m&&-1<u.collectionsWithUpdate.indexOf(n))for(a=
e(a),d[n]=[],b=0;b<a.length;b++)g[n][b]&&(d[n][b]={},t(a[b],g[n][b],d[n][b],m+1));else B(a)?(d[n]=G(a)?[]:{},t(a,g[n]||{},d[n],m+1)):d[n]=h(g[n],null)})}var u=this,v={};t(q,this.options,v,0);return v}});J(G,"masters/highcharts.src.js",[G["parts/Globals.js"]],function(a){return a});G["masters/highcharts.src.js"]._modules=G;return G["masters/highcharts.src.js"]});
//# sourceMappingURL=highcharts.js.map
</script>

<script language="javascript">
/*
 Highcharts JS v7.1.2 (2019-06-03)

 (c) 2009-2018 Torstein Honsi

 License: www.highcharts.com/license
*/
(function(u){"object"===typeof module&&module.exports?(u["default"]=u,module.exports=u):"function"===typeof define&&define.amd?define("highcharts/highcharts-more",["highcharts"],function(y){u(y);u.Highcharts=y;return u}):u("undefined"!==typeof Highcharts?Highcharts:void 0)})(function(u){function y(a,q,e,m){a.hasOwnProperty(q)||(a[q]=m.apply(null,e))}u=u?u._modules:{};y(u,"parts-more/Pane.js",[u["parts/Globals.js"]],function(a){function q(b,f){this.init(b,f)}var e=a.CenteredSeriesMixin,m=a.extend,
n=a.merge,b=a.splat;m(q.prototype,{coll:"pane",init:function(b,f){this.chart=f;this.background=[];f.pane.push(this);this.setOptions(b)},setOptions:function(b){this.options=n(this.defaultOptions,this.chart.angular?{background:{}}:void 0,b)},render:function(){var a=this.options,f=this.options.background,d=this.chart.renderer;this.group||(this.group=d.g("pane-group").attr({zIndex:a.zIndex||0}).add());this.updateCenter();if(f)for(f=b(f),a=Math.max(f.length,this.background.length||0),d=0;d<a;d++)f[d]&&
this.axis?this.renderBackground(n(this.defaultBackgroundOptions,f[d]),d):this.background[d]&&(this.background[d]=this.background[d].destroy(),this.background.splice(d,1))},renderBackground:function(b,f){var d="animate",a={"class":"highcharts-pane "+(b.className||"")};this.chart.styledMode||m(a,{fill:b.backgroundColor,stroke:b.borderColor,"stroke-width":b.borderWidth});this.background[f]||(this.background[f]=this.chart.renderer.path().add(this.group),d="attr");this.background[f][d]({d:this.axis.getPlotBandPath(b.from,
b.to,b)}).attr(a)},defaultOptions:{center:["50%","50%"],size:"85%",startAngle:0},defaultBackgroundOptions:{shape:"circle",borderWidth:1,borderColor:"#cccccc",backgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[0,"#ffffff"],[1,"#e6e6e6"]]},from:-Number.MAX_VALUE,innerRadius:0,to:Number.MAX_VALUE,outerRadius:"105%"},updateCenter:function(b){this.center=(b||this.axis||{}).center=e.getCenter.call(this)},update:function(b,a){n(!0,this.options,b);n(!0,this.chart.options.pane,b);this.setOptions(this.options);
this.render();this.chart.axes.forEach(function(b){b.pane===this&&(b.pane=null,b.update({},a))},this)}});a.Pane=q});y(u,"parts-more/RadialAxis.js",[u["parts/Globals.js"]],function(a){var q=a.addEvent,e=a.Axis,m=a.extend,n=a.merge,b=a.noop,g=a.pick,f=a.pInt,d=a.Tick,v=a.wrap,t=a.correctFloat,x,c,k=e.prototype,p=d.prototype;x={getOffset:b,redraw:function(){this.isDirty=!1},render:function(){this.isDirty=!1},setScale:b,setCategories:b,setTitle:b};c={defaultRadialGaugeOptions:{labels:{align:"center",x:0,
y:null},minorGridLineWidth:0,minorTickInterval:"auto",minorTickLength:10,minorTickPosition:"inside",minorTickWidth:1,tickLength:10,tickPosition:"inside",tickWidth:2,title:{rotation:0},zIndex:2},defaultRadialXOptions:{gridLineWidth:1,labels:{align:null,distance:15,x:0,y:null,style:{textOverflow:"none"}},maxPadding:0,minPadding:0,showLastLabel:!1,tickLength:0},defaultRadialYOptions:{gridLineInterpolation:"circle",labels:{align:"right",x:-3,y:-2},showLastLabel:!1,title:{x:4,text:null,rotation:90}},setOptions:function(c){c=
this.options=n(this.defaultOptions,this.defaultRadialOptions,c);c.plotBands||(c.plotBands=[]);a.fireEvent(this,"afterSetOptions")},getOffset:function(){k.getOffset.call(this);this.chart.axisOffset[this.side]=0},getLinePath:function(c,l){c=this.center;var h=this.chart,r=g(l,c[2]/2-this.offset);this.isCircular||void 0!==l?(l=this.chart.renderer.symbols.arc(this.left+c[0],this.top+c[1],r,r,{start:this.startAngleRad,end:this.endAngleRad,open:!0,innerR:0}),l.xBounds=[this.left+c[0]],l.yBounds=[this.top+
c[1]-r]):(l=this.postTranslate(this.angleRad,r),l=["M",c[0]+h.plotLeft,c[1]+h.plotTop,"L",l.x,l.y]);return l},setAxisTranslation:function(){k.setAxisTranslation.call(this);this.center&&(this.transA=this.isCircular?(this.endAngleRad-this.startAngleRad)/(this.max-this.min||1):this.center[2]/2/(this.max-this.min||1),this.minPixelPadding=this.isXAxis?this.transA*this.minPointOffset:0)},beforeSetTickPositions:function(){if(this.autoConnect=this.isCircular&&void 0===g(this.userMax,this.options.max)&&t(this.endAngleRad-
this.startAngleRad)===t(2*Math.PI))this.max+=this.categories&&1||this.pointRange||this.closestPointRange||0},setAxisSize:function(){k.setAxisSize.call(this);this.isRadial&&(this.pane.updateCenter(this),this.isCircular&&(this.sector=this.endAngleRad-this.startAngleRad),this.len=this.width=this.height=this.center[2]*g(this.sector,1)/2)},getPosition:function(c,l){return this.postTranslate(this.isCircular?this.translate(c):this.angleRad,g(this.isCircular?l:this.translate(c),this.center[2]/2)-this.offset)},
postTranslate:function(c,l){var h=this.chart,r=this.center;c=this.startAngleRad+c;return{x:h.plotLeft+r[0]+Math.cos(c)*l,y:h.plotTop+r[1]+Math.sin(c)*l}},getPlotBandPath:function(c,l,h){var r=this.center,b=this.startAngleRad,w=r[2]/2,k=[g(h.outerRadius,"100%"),h.innerRadius,g(h.thickness,10)],p=Math.min(this.offset,0),d=/%$/,a,t;a=this.isCircular;"polygon"===this.options.gridLineInterpolation?k=this.getPlotLinePath({value:c}).concat(this.getPlotLinePath({value:l,reverse:!0})):(c=Math.max(c,this.min),
l=Math.min(l,this.max),a||(k[0]=this.translate(c),k[1]=this.translate(l)),k=k.map(function(h){d.test(h)&&(h=f(h,10)*w/100);return h}),"circle"!==h.shape&&a?(c=b+this.translate(c),l=b+this.translate(l)):(c=-Math.PI/2,l=1.5*Math.PI,t=!0),k[0]-=p,k[2]-=p,k=this.chart.renderer.symbols.arc(this.left+r[0],this.top+r[1],k[0],k[0],{start:Math.min(c,l),end:Math.max(c,l),innerR:g(k[1],k[0]-k[2]),open:t}),a&&(a=(l+c)/2,p=this.left+r[0]+r[2]/2*Math.cos(a),k.xBounds=a>-Math.PI/2&&a<Math.PI/2?[p,this.chart.plotWidth]:
[0,p],k.yBounds=[this.top+r[1]+r[2]/2*Math.sin(a)],k.yBounds[0]+=a>-Math.PI&&0>a||a>Math.PI?-10:10));return k},getPlotLinePath:function(c){var l=this,h=l.center,r=l.chart,b=c.value;c=c.reverse;var w=l.getPosition(b),k,p,a;l.isCircular?a=["M",h[0]+r.plotLeft,h[1]+r.plotTop,"L",w.x,w.y]:"circle"===l.options.gridLineInterpolation?(b=l.translate(b),a=l.getLinePath(0,b)):(r.xAxis.forEach(function(h){h.pane===l.pane&&(k=h)}),a=[],b=l.translate(b),h=k.tickPositions,k.autoConnect&&(h=h.concat([h[0]])),c&&
(h=[].concat(h).reverse()),h.forEach(function(h,c){p=k.getPosition(h,b);a.push(c?"L":"M",p.x,p.y)}));return a},getTitlePosition:function(){var c=this.center,l=this.chart,h=this.options.title;return{x:l.plotLeft+c[0]+(h.x||0),y:l.plotTop+c[1]-{high:.5,middle:.25,low:0}[h.align]*c[2]+(h.y||0)}}};q(e,"init",function(b){var l=this,h=this.chart,r=h.angular,k=h.polar,w=this.isXAxis,p=r&&w,a,d=h.options;b=b.userOptions.pane||0;b=this.pane=h.pane&&h.pane[b];if(r){if(m(this,p?x:c),a=!w)this.defaultRadialOptions=
this.defaultRadialGaugeOptions}else k&&(m(this,c),this.defaultRadialOptions=(a=w)?this.defaultRadialXOptions:n(this.defaultYAxisOptions,this.defaultRadialYOptions));r||k?(this.isRadial=!0,h.inverted=!1,d.chart.zoomType=null,h.labelCollectors.push(function(){if(l.isRadial&&l.tickPositions&&!0!==l.options.labels.allowOverlap)return l.tickPositions.map(function(h){return l.ticks[h]&&l.ticks[h].label}).filter(function(h){return!!h})})):this.isRadial=!1;b&&a&&(b.axis=this);this.isCircular=a});q(e,"afterInit",
function(){var c=this.chart,l=this.options,h=this.pane,r=h&&h.options;c.angular&&this.isXAxis||!h||!c.angular&&!c.polar||(this.angleRad=(l.angle||0)*Math.PI/180,this.startAngleRad=(r.startAngle-90)*Math.PI/180,this.endAngleRad=(g(r.endAngle,r.startAngle+360)-90)*Math.PI/180,this.offset=l.offset||0)});q(e,"autoLabelAlign",function(c){this.isRadial&&(c.align=void 0,c.preventDefault())});q(d,"afterGetPosition",function(c){this.axis.getPosition&&m(c.pos,this.axis.getPosition(this.pos))});q(d,"afterGetLabelPosition",
function(c){var l=this.axis,h=this.label,r=h.getBBox(),b=l.options.labels,k=b.y,w,p=20,d=b.align,f=(l.translate(this.pos)+l.startAngleRad+Math.PI/2)/Math.PI*180%360,t=Math.round(f),m="end",v=0>t?t+360:t,n=v,q=0,x=0,e=null===b.y?.3*-r.height:0;if(l.isRadial){w=l.getPosition(this.pos,l.center[2]/2+a.relativeLength(g(b.distance,-25),l.center[2]/2,-l.center[2]/2));"auto"===b.rotation?h.attr({rotation:f}):null===k&&(k=l.chart.renderer.fontMetrics(h.styles&&h.styles.fontSize).b-r.height/2);null===d&&(l.isCircular?
(r.width>l.len*l.tickInterval/(l.max-l.min)&&(p=0),d=f>p&&f<180-p?"left":f>180+p&&f<360-p?"right":"center"):d="center",h.attr({align:d}));if("auto"===d&&2===l.tickPositions.length&&l.isCircular){90<v&&180>v?v=180-v:270<v&&360>=v&&(v=540-v);180<n&&360>=n&&(n=360-n);if(l.pane.options.startAngle===t||l.pane.options.startAngle===t+360||l.pane.options.startAngle===t-360)m="start";d=-90<=t&&90>=t||-360<=t&&-270>=t||270<=t&&360>=t?"start"===m?"right":"left":"start"===m?"left":"right";70<n&&110>n&&(d="center");
15>v||180<=v&&195>v?q=.3*r.height:15<=v&&35>=v?q="start"===m?0:.75*r.height:195<=v&&215>=v?q="start"===m?.75*r.height:0:35<v&&90>=v?q="start"===m?.25*-r.height:r.height:215<v&&270>=v&&(q="start"===m?r.height:.25*-r.height);15>n?x="start"===m?.15*-r.height:.15*r.height:165<n&&180>=n&&(x="start"===m?.15*r.height:.15*-r.height);h.attr({align:d});h.translate(x,q+e)}c.pos.x=w.x+b.x;c.pos.y=w.y+k}});v(p,"getMarkPath",function(c,l,h,b,k,p,a){var r=this.axis;r.isRadial?(c=r.getPosition(this.pos,r.center[2]/
2+b),l=["M",l,h,"L",c.x,c.y]):l=c.call(this,l,h,b,k,p,a);return l})});y(u,"parts-more/AreaRangeSeries.js",[u["parts/Globals.js"]],function(a){var q=a.pick,e=a.extend,m=a.isArray,n=a.defined,b=a.seriesType,g=a.seriesTypes,f=a.Series.prototype,d=a.Point.prototype;b("arearange","area",{lineWidth:1,threshold:null,tooltip:{pointFormat:'\x3cspan style\x3d"color:{series.color}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},trackByArea:!0,
dataLabels:{align:null,verticalAlign:null,xLow:0,xHigh:0,yLow:0,yHigh:0}},{pointArrayMap:["low","high"],toYData:function(b){return[b.low,b.high]},pointValKey:"low",deferTranslatePolar:!0,highToXY:function(b){var a=this.chart,d=this.xAxis.postTranslate(b.rectPlotX,this.yAxis.len-b.plotHigh);b.plotHighX=d.x-a.plotLeft;b.plotHigh=d.y-a.plotTop;b.plotLowX=b.plotX},translate:function(){var b=this,a=b.yAxis,d=!!b.modifyValue;g.area.prototype.translate.apply(b);b.points.forEach(function(c){var k=c.low,p=
c.high,w=c.plotY;null===p||null===k?(c.isNull=!0,c.plotY=null):(c.plotLow=w,c.plotHigh=a.translate(d?b.modifyValue(p,c):p,0,1,0,1),d&&(c.yBottom=c.plotHigh))});this.chart.polar&&this.points.forEach(function(c){b.highToXY(c);c.tooltipPos=[(c.plotHighX+c.plotLowX)/2,(c.plotHigh+c.plotLow)/2]})},getGraphPath:function(b){var a=[],d=[],c,k=g.area.prototype.getGraphPath,p,w,l;l=this.options;var h=this.chart.polar&&!1!==l.connectEnds,r=l.connectNulls,A=l.step;b=b||this.points;for(c=b.length;c--;)p=b[c],
p.isNull||h||r||b[c+1]&&!b[c+1].isNull||d.push({plotX:p.plotX,plotY:p.plotY,doCurve:!1}),w={polarPlotY:p.polarPlotY,rectPlotX:p.rectPlotX,yBottom:p.yBottom,plotX:q(p.plotHighX,p.plotX),plotY:p.plotHigh,isNull:p.isNull},d.push(w),a.push(w),p.isNull||h||r||b[c-1]&&!b[c-1].isNull||d.push({plotX:p.plotX,plotY:p.plotY,doCurve:!1});b=k.call(this,b);A&&(!0===A&&(A="left"),l.step={left:"right",center:"center",right:"left"}[A]);a=k.call(this,a);d=k.call(this,d);l.step=A;l=[].concat(b,a);this.chart.polar||
"M"!==d[0]||(d[0]="L");this.graphPath=l;this.areaPath=b.concat(d);l.isArea=!0;l.xMap=b.xMap;this.areaPath.xMap=b.xMap;return l},drawDataLabels:function(){var b=this.points,a=b.length,d,c=[],k=this.options.dataLabels,p,w,l=this.chart.inverted,h,r;m(k)?1<k.length?(h=k[0],r=k[1]):(h=k[0],r={enabled:!1}):(h=e({},k),h.x=k.xHigh,h.y=k.yHigh,r=e({},k),r.x=k.xLow,r.y=k.yLow);if(h.enabled||this._hasPointLabels){for(d=a;d--;)if(p=b[d])w=h.inside?p.plotHigh<p.plotLow:p.plotHigh>p.plotLow,p.y=p.high,p._plotY=
p.plotY,p.plotY=p.plotHigh,c[d]=p.dataLabel,p.dataLabel=p.dataLabelUpper,p.below=w,l?h.align||(h.align=w?"right":"left"):h.verticalAlign||(h.verticalAlign=w?"top":"bottom");this.options.dataLabels=h;f.drawDataLabels&&f.drawDataLabels.apply(this,arguments);for(d=a;d--;)if(p=b[d])p.dataLabelUpper=p.dataLabel,p.dataLabel=c[d],delete p.dataLabels,p.y=p.low,p.plotY=p._plotY}if(r.enabled||this._hasPointLabels){for(d=a;d--;)if(p=b[d])w=r.inside?p.plotHigh<p.plotLow:p.plotHigh>p.plotLow,p.below=!w,l?r.align||
(r.align=w?"left":"right"):r.verticalAlign||(r.verticalAlign=w?"bottom":"top");this.options.dataLabels=r;f.drawDataLabels&&f.drawDataLabels.apply(this,arguments)}if(h.enabled)for(d=a;d--;)if(p=b[d])p.dataLabels=[p.dataLabelUpper,p.dataLabel].filter(function(c){return!!c});this.options.dataLabels=k},alignDataLabel:function(){g.column.prototype.alignDataLabel.apply(this,arguments)},drawPoints:function(){var b=this.points.length,d,m;f.drawPoints.apply(this,arguments);for(m=0;m<b;)d=this.points[m],d.origProps=
{plotY:d.plotY,plotX:d.plotX,isInside:d.isInside,negative:d.negative,zone:d.zone,y:d.y},d.lowerGraphic=d.graphic,d.graphic=d.upperGraphic,d.plotY=d.plotHigh,n(d.plotHighX)&&(d.plotX=d.plotHighX),d.y=d.high,d.negative=d.high<(this.options.threshold||0),d.zone=this.zones.length&&d.getZone(),this.chart.polar||(d.isInside=d.isTopInside=void 0!==d.plotY&&0<=d.plotY&&d.plotY<=this.yAxis.len&&0<=d.plotX&&d.plotX<=this.xAxis.len),m++;f.drawPoints.apply(this,arguments);for(m=0;m<b;)d=this.points[m],d.upperGraphic=
d.graphic,d.graphic=d.lowerGraphic,a.extend(d,d.origProps),delete d.origProps,m++},setStackedPoints:a.noop},{setState:function(){var b=this.state,a=this.series,f=a.chart.polar;n(this.plotHigh)||(this.plotHigh=a.yAxis.toPixels(this.high,!0));n(this.plotLow)||(this.plotLow=this.plotY=a.yAxis.toPixels(this.low,!0));a.stateMarkerGraphic&&(a.lowerStateMarkerGraphic=a.stateMarkerGraphic,a.stateMarkerGraphic=a.upperStateMarkerGraphic);this.graphic=this.upperGraphic;this.plotY=this.plotHigh;f&&(this.plotX=
this.plotHighX);d.setState.apply(this,arguments);this.state=b;this.plotY=this.plotLow;this.graphic=this.lowerGraphic;f&&(this.plotX=this.plotLowX);a.stateMarkerGraphic&&(a.upperStateMarkerGraphic=a.stateMarkerGraphic,a.stateMarkerGraphic=a.lowerStateMarkerGraphic,a.lowerStateMarkerGraphic=void 0);d.setState.apply(this,arguments)},haloPath:function(){var b=this.series.chart.polar,a=[];this.plotY=this.plotLow;b&&(this.plotX=this.plotLowX);this.isInside&&(a=d.haloPath.apply(this,arguments));this.plotY=
this.plotHigh;b&&(this.plotX=this.plotHighX);this.isTopInside&&(a=a.concat(d.haloPath.apply(this,arguments)));return a},destroyElements:function(){["lowerGraphic","upperGraphic"].forEach(function(b){this[b]&&(this[b]=this[b].destroy())},this);this.graphic=null;return d.destroyElements.apply(this,arguments)}})});y(u,"parts-more/AreaSplineRangeSeries.js",[u["parts/Globals.js"]],function(a){var q=a.seriesType;q("areasplinerange","arearange",null,{getPointSpline:a.seriesTypes.spline.prototype.getPointSpline})});
y(u,"parts-more/ColumnRangeSeries.js",[u["parts/Globals.js"]],function(a){var q=a.defaultPlotOptions,e=a.merge,m=a.noop,n=a.pick,b=a.seriesType,g=a.seriesTypes.column.prototype;b("columnrange","arearange",e(q.column,q.arearange,{pointRange:null,marker:null,states:{hover:{halo:!1}}}),{translate:function(){var b=this,d=b.yAxis,a=b.xAxis,m=a.startAngleRad,q,c=b.chart,k=b.xAxis.isRadial,p=Math.max(c.chartWidth,c.chartHeight)+999,w;g.translate.apply(b);b.points.forEach(function(l){var h=l.shapeArgs,r=
b.options.minPointLength,A,f;l.plotHigh=w=Math.min(Math.max(-p,d.translate(l.high,0,1,0,1)),p);l.plotLow=Math.min(Math.max(-p,l.plotY),p);f=w;A=n(l.rectPlotY,l.plotY)-w;Math.abs(A)<r?(r-=A,A+=r,f-=r/2):0>A&&(A*=-1,f-=A);k?(q=l.barX+m,l.shapeType="path",l.shapeArgs={d:b.polarArc(f+A,f,q,q+l.pointWidth)}):(h.height=A,h.y=f,l.tooltipPos=c.inverted?[d.len+d.pos-c.plotLeft-f-A/2,a.len+a.pos-c.plotTop-h.x-h.width/2,A]:[a.left-c.plotLeft+h.x+h.width/2,d.pos-c.plotTop+f+A/2,A])})},directTouch:!0,trackerGroups:["group",
"dataLabelsGroup"],drawGraph:m,getSymbol:m,crispCol:function(){return g.crispCol.apply(this,arguments)},drawPoints:function(){return g.drawPoints.apply(this,arguments)},drawTracker:function(){return g.drawTracker.apply(this,arguments)},getColumnMetrics:function(){return g.getColumnMetrics.apply(this,arguments)},pointAttribs:function(){return g.pointAttribs.apply(this,arguments)},animate:function(){return g.animate.apply(this,arguments)},polarArc:function(){return g.polarArc.apply(this,arguments)},
translate3dPoints:function(){return g.translate3dPoints.apply(this,arguments)},translate3dShapes:function(){return g.translate3dShapes.apply(this,arguments)}},{setState:g.pointClass.prototype.setState})});y(u,"parts-more/ColumnPyramidSeries.js",[u["parts/Globals.js"]],function(a){var q=a.pick,e=a.seriesType,m=a.seriesTypes.column.prototype;e("columnpyramid","column",{},{translate:function(){var a=this,b=a.chart,g=a.options,f=a.dense=2>a.closestPointRange*a.xAxis.transA,f=a.borderWidth=q(g.borderWidth,
f?0:1),d=a.yAxis,v=g.threshold,e=a.translatedThreshold=d.getThreshold(v),x=q(g.minPointLength,5),c=a.getColumnMetrics(),k=c.width,p=a.barW=Math.max(k,1+2*f),w=a.pointXOffset=c.offset;b.inverted&&(e-=.5);g.pointPadding&&(p=Math.ceil(p));m.translate.apply(a);a.points.forEach(function(c){var h=q(c.yBottom,e),r=999+Math.abs(h),l=Math.min(Math.max(-r,c.plotY),d.len+r),r=c.plotX+w,f=p/2,m=Math.min(l,h),h=Math.max(l,h)-m,n,t,E,C,B,D;c.barX=r;c.pointWidth=k;c.tooltipPos=b.inverted?[d.len+d.pos-b.plotLeft-
l,a.xAxis.len-r-f,h]:[r+f,l+d.pos-b.plotTop,h];l=v+(c.total||c.y);"percent"===g.stacking&&(l=v+(0>c.y)?-100:100);l=d.toPixels(l,!0);n=b.plotHeight-l-(b.plotHeight-e);t=f*(m-l)/n;E=f*(m+h-l)/n;n=r-t+f;t=r+t+f;C=r+E+f;E=r-E+f;B=m-x;D=m+h;0>c.y&&(B=m,D=m+h+x);b.inverted&&(C=b.plotWidth-m,n=l-(b.plotWidth-e),t=f*(l-C)/n,E=f*(l-(C-h))/n,n=r+f+t,t=n-2*t,C=r-E+f,E=r+E+f,B=m,D=m+h-x,0>c.y&&(D=m+h+x));c.shapeType="path";c.shapeArgs={x:n,y:B,width:t-n,height:h,d:["M",n,B,"L",t,B,C,D,E,D,"Z"]}})}})});y(u,"parts-more/GaugeSeries.js",
[u["parts/Globals.js"]],function(a){var q=a.isNumber,e=a.merge,m=a.pick,n=a.pInt,b=a.Series,g=a.seriesType,f=a.TrackerMixin;g("gauge","line",{dataLabels:{borderColor:"#cccccc",borderRadius:3,borderWidth:1,crop:!1,defer:!1,enabled:!0,verticalAlign:"top",y:15,zIndex:2},dial:{},pivot:{},tooltip:{headerFormat:""},showInLegend:!1},{angular:!0,directTouch:!0,drawGraph:a.noop,fixedBox:!0,forceDL:!0,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],translate:function(){var b=this.yAxis,a=this.options,
f=b.center;this.generatePoints();this.points.forEach(function(d){var c=e(a.dial,d.dial),k=n(m(c.radius,80))*f[2]/200,p=n(m(c.baseLength,70))*k/100,w=n(m(c.rearLength,10))*k/100,l=c.baseWidth||3,h=c.topWidth||1,r=a.overshoot,A=b.startAngleRad+b.translate(d.y,null,null,null,!0);q(r)?(r=r/180*Math.PI,A=Math.max(b.startAngleRad-r,Math.min(b.endAngleRad+r,A))):!1===a.wrap&&(A=Math.max(b.startAngleRad,Math.min(b.endAngleRad,A)));A=180*A/Math.PI;d.shapeType="path";d.shapeArgs={d:c.path||["M",-w,-l/2,"L",
p,-l/2,k,-h/2,k,h/2,p,l/2,-w,l/2,"z"],translateX:f[0],translateY:f[1],rotation:A};d.plotX=f[0];d.plotY=f[1]})},drawPoints:function(){var b=this,a=b.chart,f=b.yAxis.center,n=b.pivot,c=b.options,k=c.pivot,p=a.renderer;b.points.forEach(function(d){var l=d.graphic,h=d.shapeArgs,r=h.d,k=e(c.dial,d.dial);l?(l.animate(h),h.d=r):d.graphic=p[d.shapeType](h).attr({rotation:h.rotation,zIndex:1}).addClass("highcharts-dial").add(b.group);if(!a.styledMode)d.graphic[l?"animate":"attr"]({stroke:k.borderColor||"none",
"stroke-width":k.borderWidth||0,fill:k.backgroundColor||"#000000"})});n?n.animate({translateX:f[0],translateY:f[1]}):(b.pivot=p.circle(0,0,m(k.radius,5)).attr({zIndex:2}).addClass("highcharts-pivot").translate(f[0],f[1]).add(b.group),a.styledMode||b.pivot.attr({"stroke-width":k.borderWidth||0,stroke:k.borderColor||"#cccccc",fill:k.backgroundColor||"#000000"}))},animate:function(b){var a=this;b||(a.points.forEach(function(b){var d=b.graphic;d&&(d.attr({rotation:180*a.yAxis.startAngleRad/Math.PI}),
d.animate({rotation:b.shapeArgs.rotation},a.options.animation))}),a.animate=null)},render:function(){this.group=this.plotGroup("group","series",this.visible?"visible":"hidden",this.options.zIndex,this.chart.seriesGroup);b.prototype.render.call(this);this.group.clip(this.chart.clipRect)},setData:function(a,f){b.prototype.setData.call(this,a,!1);this.processData();this.generatePoints();m(f,!0)&&this.chart.redraw()},hasData:function(){return!!this.points.length},drawTracker:f&&f.drawTrackerPoint},{setState:function(b){this.state=
b}})});y(u,"parts-more/BoxPlotSeries.js",[u["parts/Globals.js"]],function(a){var q=a.noop,e=a.pick,m=a.seriesType,n=a.seriesTypes;m("boxplot","column",{threshold:null,tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e \x3cb\x3e {series.name}\x3c/b\x3e\x3cbr/\x3eMaximum: {point.high}\x3cbr/\x3eUpper quartile: {point.q3}\x3cbr/\x3eMedian: {point.median}\x3cbr/\x3eLower quartile: {point.q1}\x3cbr/\x3eMinimum: {point.low}\x3cbr/\x3e'},whiskerLength:"50%",fillColor:"#ffffff",
lineWidth:1,medianWidth:2,whiskerWidth:2},{pointArrayMap:["low","q1","median","q3","high"],toYData:function(b){return[b.low,b.q1,b.median,b.q3,b.high]},pointValKey:"high",pointAttribs:function(){return{}},drawDataLabels:q,translate:function(){var b=this.yAxis,a=this.pointArrayMap;n.column.prototype.translate.apply(this);this.points.forEach(function(f){a.forEach(function(a){null!==f[a]&&(f[a+"Plot"]=b.translate(f[a],0,1,0,1))})})},drawPoints:function(){var b=this,a=b.options,f=b.chart,d=f.renderer,
m,n,q,c,k,p,w=0,l,h,r,A,H=!1!==b.doQuartiles,I,G=b.options.whiskerLength;b.points.forEach(function(g){var v=g.graphic,t=v?"animate":"attr",x=g.shapeArgs,K={},u={},L={},F={},z=g.color||b.color;void 0!==g.plotY&&(l=x.width,h=Math.floor(x.x),r=h+l,A=Math.round(l/2),m=Math.floor(H?g.q1Plot:g.lowPlot),n=Math.floor(H?g.q3Plot:g.lowPlot),q=Math.floor(g.highPlot),c=Math.floor(g.lowPlot),v||(g.graphic=v=d.g("point").add(b.group),g.stem=d.path().addClass("highcharts-boxplot-stem").add(v),G&&(g.whiskers=d.path().addClass("highcharts-boxplot-whisker").add(v)),
H&&(g.box=d.path(void 0).addClass("highcharts-boxplot-box").add(v)),g.medianShape=d.path(void 0).addClass("highcharts-boxplot-median").add(v)),f.styledMode||(u.stroke=g.stemColor||a.stemColor||z,u["stroke-width"]=e(g.stemWidth,a.stemWidth,a.lineWidth),u.dashstyle=g.stemDashStyle||a.stemDashStyle,g.stem.attr(u),G&&(L.stroke=g.whiskerColor||a.whiskerColor||z,L["stroke-width"]=e(g.whiskerWidth,a.whiskerWidth,a.lineWidth),g.whiskers.attr(L)),H&&(K.fill=g.fillColor||a.fillColor||z,K.stroke=a.lineColor||
z,K["stroke-width"]=a.lineWidth||0,g.box.attr(K)),F.stroke=g.medianColor||a.medianColor||z,F["stroke-width"]=e(g.medianWidth,a.medianWidth,a.lineWidth),g.medianShape.attr(F)),p=g.stem.strokeWidth()%2/2,w=h+A+p,g.stem[t]({d:["M",w,n,"L",w,q,"M",w,m,"L",w,c]}),H&&(p=g.box.strokeWidth()%2/2,m=Math.floor(m)+p,n=Math.floor(n)+p,h+=p,r+=p,g.box[t]({d:["M",h,n,"L",h,m,"L",r,m,"L",r,n,"L",h,n,"z"]})),G&&(p=g.whiskers.strokeWidth()%2/2,q+=p,c+=p,I=/%$/.test(G)?A*parseFloat(G)/100:G/2,g.whiskers[t]({d:["M",
w-I,q,"L",w+I,q,"M",w-I,c,"L",w+I,c]})),k=Math.round(g.medianPlot),p=g.medianShape.strokeWidth()%2/2,k+=p,g.medianShape[t]({d:["M",h,k,"L",r,k]}))})},setStackedPoints:q})});y(u,"parts-more/ErrorBarSeries.js",[u["parts/Globals.js"]],function(a){var q=a.noop,e=a.seriesType,m=a.seriesTypes;e("errorbar","boxplot",{color:"#000000",grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},
whiskerWidth:null},{type:"errorbar",pointArrayMap:["low","high"],toYData:function(a){return[a.low,a.high]},pointValKey:"high",doQuartiles:!1,drawDataLabels:m.arearange?function(){var a=this.pointValKey;m.arearange.prototype.drawDataLabels.call(this);this.data.forEach(function(b){b.y=b[a]})}:q,getColumnMetrics:function(){return this.linkedParent&&this.linkedParent.columnMetrics||m.column.prototype.getColumnMetrics.call(this)}})});y(u,"parts-more/WaterfallSeries.js",[u["parts/Globals.js"]],function(a){var q=
a.correctFloat,e=a.isNumber,m=a.pick,n=a.objectEach,b=a.arrayMin,g=a.arrayMax,f=a.addEvent,d=a.Axis,v=a.Chart,t=a.Point,x=a.Series,c=a.StackItem,k=a.seriesType,p=a.seriesTypes;f(d,"afterInit",function(){this.isXAxis||(this.waterfallStacks={changed:!1})});f(v,"beforeRedraw",function(){for(var c=this.axes,b=this.series,h=b.length;h--;)b[h].options.stacking&&(c.forEach(function(c){c.isXAxis||(c.waterfallStacks.changed=!0)}),h=0)});f(d,"afterRender",function(){var c=this.options.stackLabels;c&&c.enabled&&
this.waterfallStacks&&this.renderWaterfallStackTotals()});d.prototype.renderWaterfallStackTotals=function(){var b=this.waterfallStacks,a=this.stackTotalGroup,h=new c(this,this.options.stackLabels,!1,0,void 0);this.dummyStackItem=h;n(b,function(b){n(b,function(b){h.total=b.stackTotal;b.label&&(h.label=b.label);c.prototype.render.call(h,a);b.label=h.label;delete h.label})});h.total=null};k("waterfall","column",{dataLabels:{inside:!0},lineWidth:1,lineColor:"#333333",dashStyle:"Dot",borderColor:"#333333",
states:{hover:{lineWidthPlus:0}}},{pointValKey:"y",showLine:!0,generatePoints:function(){var c,b,h,a;p.column.prototype.generatePoints.apply(this);h=0;for(b=this.points.length;h<b;h++)if(c=this.points[h],a=this.processedYData[h],c.isIntermediateSum||c.isSum)c.y=q(a)},translate:function(){var c=this.options,b=this.yAxis,h,a,d,k,f,g,n,q,e,v=m(c.minPointLength,5),t=v/2,x=c.threshold,u=c.stacking,F=b.waterfallStacks[this.stackKey],z;p.column.prototype.translate.apply(this);n=q=x;a=this.points;h=0;for(c=
a.length;h<c;h++){d=a[h];g=this.processedYData[h];k=d.shapeArgs;e=[0,g];z=d.y;if(u){if(F&&(e=F[h],"overlap"===u?(f=e.stackState[e.stateIndex--],f=0<=z?f:f-z,e.hasOwnProperty("absolutePos")&&delete e.absolutePos,e.hasOwnProperty("absoluteNeg")&&delete e.absoluteNeg):(0<=z?(f=e.threshold+e.posTotal,e.posTotal-=z):(f=e.threshold+e.negTotal,e.negTotal-=z,f-=z),!e.posTotal&&e.hasOwnProperty("absolutePos")&&(e.posTotal=e.absolutePos,delete e.absolutePos),!e.negTotal&&e.hasOwnProperty("absoluteNeg")&&(e.negTotal=
e.absoluteNeg,delete e.absoluteNeg)),d.isSum||(e.connectorThreshold=e.threshold+e.stackTotal),b.reversed?(g=0<=z?f-z:f+z,z=f):(g=f,z=f-z),d.below=g<=m(x,0),k.y=b.translate(g,0,1,0,1),k.height=Math.abs(k.y-b.translate(z,0,1,0,1))),z=b.dummyStackItem)z.x=h,z.label=F[h].label,z.setOffset(this.pointXOffset||0,this.barW||0,this.stackedYNeg[h],this.stackedYPos[h])}else f=Math.max(n,n+z)+e[0],k.y=b.translate(f,0,1,0,1),d.isSum?(k.y=b.translate(e[1],0,1,0,1),k.height=Math.min(b.translate(e[0],0,1,0,1),b.len)-
k.y):d.isIntermediateSum?(0<=z?(g=e[1]+q,z=q):(g=q,z=e[1]+q),b.reversed&&(g^=z,z^=g,g^=z),k.y=b.translate(g,0,1,0,1),k.height=Math.abs(k.y-Math.min(b.translate(z,0,1,0,1),b.len)),q+=e[1]):(k.height=0<g?b.translate(n,0,1,0,1)-k.y:b.translate(n,0,1,0,1)-b.translate(n-g,0,1,0,1),n+=g,d.below=n<m(x,0)),0>k.height&&(k.y+=k.height,k.height*=-1);d.plotY=k.y=Math.round(k.y)-this.borderWidth%2/2;k.height=Math.max(Math.round(k.height),.001);d.yBottom=k.y+k.height;k.height<=v&&!d.isNull?(k.height=v,k.y-=t,d.plotY=
k.y,d.minPointLengthOffset=0>d.y?-t:t):(d.isNull&&(k.width=0),d.minPointLengthOffset=0);k=d.plotY+(d.negative?k.height:0);this.chart.inverted?d.tooltipPos[0]=b.len-k:d.tooltipPos[1]=k}},processData:function(c){var b=this.options,h=this.yData,a=b.data,k,d=h.length,f=b.threshold||0,p,m,w,g,n,e;for(e=m=p=w=g=0;e<d;e++)n=h[e],k=a&&a[e]?a[e]:{},"sum"===n||k.isSum?h[e]=q(m):"intermediateSum"===n||k.isIntermediateSum?(h[e]=q(p),p=0):(m+=n,p+=n),w=Math.min(m,w),g=Math.max(m,g);x.prototype.processData.call(this,
c);b.stacking||(this.dataMin=w+f,this.dataMax=g)},toYData:function(c){return c.isSum?0===c.x?null:"sum":c.isIntermediateSum?0===c.x?null:"intermediateSum":c.y},pointAttribs:function(c,b){var h=this.options.upColor;h&&!c.options.color&&(c.color=0<c.y?h:null);c=p.column.prototype.pointAttribs.call(this,c,b);delete c.dashstyle;return c},getGraphPath:function(){return["M",0,0]},getCrispPath:function(){var c=this.data,b=this.yAxis,h=c.length,a=Math.round(this.graph.strokeWidth())%2/2,k=Math.round(this.borderWidth)%
2/2,d=this.xAxis.reversed,f=this.yAxis.reversed,p=this.options.stacking,m=[],g,n,e,q,v,t,x;for(t=1;t<h;t++){v=c[t].shapeArgs;n=c[t-1];q=c[t-1].shapeArgs;g=b.waterfallStacks[this.stackKey];e=0<n.y?-q.height:0;g&&(g=g[t-1],p?(g=g.connectorThreshold,e=Math.round(b.translate(g,0,1,0,1)+(f?e:0))-a):e=q.y+n.minPointLengthOffset+k-a,x=["M",q.x+(d?0:q.width),e,"L",v.x+(d?v.width:0),e]);if(!p&&0>n.y&&!f||0<n.y&&f)x[2]+=q.height,x[5]+=q.height;m=m.concat(x)}return m},drawGraph:function(){x.prototype.drawGraph.call(this);
this.graph.attr({d:this.getCrispPath()})},setStackedPoints:function(){function c(c,b,h,a){if(v)for(h;h<v;h++)g.stackState[h]+=a;else g.stackState[0]=c,v=g.stackState.length;g.stackState.push(g.stackState[v-1]+b)}var b=this.options,h=this.yAxis.waterfallStacks,a=b.threshold,k=a||0,d=k,f=this.stackKey,p=this.xData,m=p.length,g,n,e,q,v,t,x,u,y;this.yAxis.usePercentage=!1;n=e=q=k;if(this.visible||!this.chart.options.chart.ignoreHiddenSeries){h[f]||(h[f]={});for(var f=h[f],J=0;J<m;J++){t=p[J];if(!f[t]||
h.changed)f[t]={negTotal:0,posTotal:0,stackTotal:0,threshold:0,stateIndex:0,stackState:[],label:h.changed&&f[t]?f[t].label:void 0};g=f[t];y=this.yData[J];0<=y?g.posTotal+=y:g.negTotal+=y;u=b.data[J];t=g.absolutePos=g.posTotal;x=g.absoluteNeg=g.negTotal;g.stackTotal=t+x;v=g.stackState.length;u&&u.isIntermediateSum?(c(q,e,0,q),q=e,e=a,k^=d,d^=k,k^=d):u&&u.isSum?(c(a,n,v),k=a):(c(k,y,0,n),u&&(n+=y,e+=y));g.stateIndex++;g.threshold=k;k+=g.stackTotal}h.changed=!1}},getExtremes:function(){var c=this.options.stacking,
a,h,k;c&&(a=this.yAxis,a=a.waterfallStacks,h=this.stackedYNeg=[],k=this.stackedYPos=[],"overlap"===c?n(a[this.stackKey],function(c){h.push(b(c.stackState));k.push(g(c.stackState))}):n(a[this.stackKey],function(c){h.push(c.negTotal+c.threshold);k.push(c.posTotal+c.threshold)}),this.dataMin=b(h),this.dataMax=g(k))}},{getClassName:function(){var c=t.prototype.getClassName.call(this);this.isSum?c+=" highcharts-sum":this.isIntermediateSum&&(c+=" highcharts-intermediate-sum");return c},isValid:function(){return e(this.y,
!0)||this.isSum||this.isIntermediateSum}})});y(u,"parts-more/PolygonSeries.js",[u["parts/Globals.js"]],function(a){var q=a.Series,e=a.seriesType,m=a.seriesTypes;e("polygon","scatter",{marker:{enabled:!1,states:{hover:{enabled:!1}}},stickyTracking:!1,tooltip:{followPointer:!0,pointFormat:""},trackByArea:!0},{type:"polygon",getGraphPath:function(){for(var a=q.prototype.getGraphPath.call(this),b=a.length+1;b--;)(b===a.length||"M"===a[b])&&0<b&&a.splice(b,0,"z");return this.areaPath=a},drawGraph:function(){this.options.fillColor=
this.color;m.area.prototype.drawGraph.call(this)},drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,drawTracker:q.prototype.drawTracker,setStackedPoints:a.noop})});y(u,"parts-more/BubbleLegend.js",[u["parts/Globals.js"]],function(a){var q=a.Series,e=a.Legend,m=a.Chart,n=a.addEvent,b=a.wrap,g=a.color,f=a.isNumber,d=a.numberFormat,v=a.objectEach,t=a.merge,x=a.noop,c=a.pick,k=a.stableSort,p=a.setOptions,w=a.arrayMin,l=a.arrayMax;p({legend:{bubbleLegend:{borderColor:void 0,borderWidth:2,className:void 0,
color:void 0,connectorClassName:void 0,connectorColor:void 0,connectorDistance:60,connectorWidth:1,enabled:!1,labels:{className:void 0,allowOverlap:!1,format:"",formatter:void 0,align:"right",style:{fontSize:10,color:void 0},x:0,y:0},maxSize:60,minSize:10,legendIndex:0,ranges:{value:void 0,borderColor:void 0,color:void 0,connectorColor:void 0},sizeBy:"area",sizeByAbsoluteValue:!1,zIndex:1,zThreshold:0}}});a.BubbleLegend=function(c,b){this.init(c,b)};a.BubbleLegend.prototype={init:function(c,b){this.options=
c;this.visible=!0;this.chart=b.chart;this.legend=b},setState:x,addToLegend:function(c){c.splice(this.options.legendIndex,0,this)},drawLegendSymbol:function(b){var h=this.chart,a=this.options,d=c(b.options.itemDistance,20),l,p=a.ranges;l=a.connectorDistance;this.fontMetrics=h.renderer.fontMetrics(a.labels.style.fontSize.toString()+"px");p&&p.length&&f(p[0].value)?(k(p,function(c,b){return b.value-c.value}),this.ranges=p,this.setOptions(),this.render(),h=this.getMaxLabelSize(),p=this.ranges[0].radius,
b=2*p,l=l-p+h.width,l=0<l?l:0,this.maxLabel=h,this.movementX="left"===a.labels.align?l:0,this.legendItemWidth=b+l+d,this.legendItemHeight=b+this.fontMetrics.h/2):b.options.bubbleLegend.autoRanges=!0},setOptions:function(){var b=this.ranges,a=this.options,k=this.chart.series[a.seriesIndex],d=this.legend.baseline,f={"z-index":a.zIndex,"stroke-width":a.borderWidth},l={"z-index":a.zIndex,"stroke-width":a.connectorWidth},p=this.getLabelStyles(),m=k.options.marker.fillOpacity,n=this.chart.styledMode;b.forEach(function(h,
r){n||(f.stroke=c(h.borderColor,a.borderColor,k.color),f.fill=c(h.color,a.color,1!==m?g(k.color).setOpacity(m).get("rgba"):k.color),l.stroke=c(h.connectorColor,a.connectorColor,k.color));b[r].radius=this.getRangeRadius(h.value);b[r]=t(b[r],{center:b[0].radius-b[r].radius+d});n||t(!0,b[r],{bubbleStyle:t(!1,f),connectorStyle:t(!1,l),labelStyle:p})},this)},getLabelStyles:function(){var b=this.options,a={},k="left"===b.labels.align,d=this.legend.options.rtl;v(b.labels.style,function(c,b){"color"!==b&&
"fontSize"!==b&&"z-index"!==b&&(a[b]=c)});return t(!1,a,{"font-size":b.labels.style.fontSize,fill:c(b.labels.style.color,"#000000"),"z-index":b.zIndex,align:d||k?"right":"left"})},getRangeRadius:function(c){var b=this.options;return this.chart.series[this.options.seriesIndex].getRadius.call(this,b.ranges[b.ranges.length-1].value,b.ranges[0].value,b.minSize,b.maxSize,c)},render:function(){var c=this.chart.renderer,b=this.options.zThreshold;this.symbols||(this.symbols={connectors:[],bubbleItems:[],
labels:[]});this.legendSymbol=c.g("bubble-legend");this.legendItem=c.g("bubble-legend-item");this.legendSymbol.translateX=0;this.legendSymbol.translateY=0;this.ranges.forEach(function(c){c.value>=b&&this.renderRange(c)},this);this.legendSymbol.add(this.legendItem);this.legendItem.add(this.legendGroup);this.hideOverlappingLabels()},renderRange:function(c){var b=this.options,a=b.labels,h=this.chart.renderer,k=this.symbols,d=k.labels,f=c.center,l=Math.abs(c.radius),p=b.connectorDistance,m=a.align,g=
a.style.fontSize,p=this.legend.options.rtl||"left"===m?-p:p,a=b.connectorWidth,n=this.ranges[0].radius,e=f-l-b.borderWidth/2+a/2,w,g=g/2-(this.fontMetrics.h-g)/2,q=h.styledMode;"center"===m&&(p=0,b.connectorDistance=0,c.labelStyle.align="center");m=e+b.labels.y;w=n+p+b.labels.x;k.bubbleItems.push(h.circle(n,f+((e%1?1:.5)-(a%2?0:.5)),l).attr(q?{}:c.bubbleStyle).addClass((q?"highcharts-color-"+this.options.seriesIndex+" ":"")+"highcharts-bubble-legend-symbol "+(b.className||"")).add(this.legendSymbol));
k.connectors.push(h.path(h.crispLine(["M",n,e,"L",n+p,e],b.connectorWidth)).attr(q?{}:c.connectorStyle).addClass((q?"highcharts-color-"+this.options.seriesIndex+" ":"")+"highcharts-bubble-legend-connectors "+(b.connectorClassName||"")).add(this.legendSymbol));c=h.text(this.formatLabel(c),w,m+g).attr(q?{}:c.labelStyle).addClass("highcharts-bubble-legend-labels "+(b.labels.className||"")).add(this.legendSymbol);d.push(c);c.placed=!0;c.alignAttr={x:w,y:m+g}},getMaxLabelSize:function(){var c,b;this.symbols.labels.forEach(function(a){b=
a.getBBox(!0);c=c?b.width>c.width?b:c:b});return c||{}},formatLabel:function(c){var b=this.options,h=b.labels.formatter;return(b=b.labels.format)?a.format(b,c):h?h.call(c):d(c.value,1)},hideOverlappingLabels:function(){var c=this.chart,b=this.symbols;!this.options.labels.allowOverlap&&b&&(c.hideOverlappingLabels(b.labels),b.labels.forEach(function(c,a){c.newOpacity?c.newOpacity!==c.oldOpacity&&b.connectors[a].show():b.connectors[a].hide()}))},getRanges:function(){var b=this.legend.bubbleLegend,a,
k=b.options.ranges,d,p=Number.MAX_VALUE,m=-Number.MAX_VALUE;b.chart.series.forEach(function(b){b.isBubble&&!b.ignoreSeries&&(d=b.zData.filter(f),d.length&&(p=c(b.options.zMin,Math.min(p,Math.max(w(d),!1===b.options.displayNegative?b.options.zThreshold:-Number.MAX_VALUE))),m=c(b.options.zMax,Math.max(m,l(d)))))});a=p===m?[{value:m}]:[{value:p},{value:(p+m)/2},{value:m,autoRanges:!0}];k.length&&k[0].radius&&a.reverse();a.forEach(function(b,c){k&&k[c]&&(a[c]=t(!1,k[c],b))});return a},predictBubbleSizes:function(){var b=
this.chart,c=this.fontMetrics,a=b.legend.options,k="horizontal"===a.layout,d=k?b.legend.lastLineHeight:0,f=b.plotSizeX,p=b.plotSizeY,l=b.series[this.options.seriesIndex],b=Math.ceil(l.minPxSize),m=Math.ceil(l.maxPxSize),l=l.options.maxSize,g=Math.min(p,f);if(a.floating||!/%$/.test(l))c=m;else if(l=parseFloat(l),c=(g+d-c.h/2)*l/100/(l/100+1),k&&p-c>=f||!k&&f-c>=p)c=m;return[b,Math.ceil(c)]},updateRanges:function(b,c){var a=this.legend.options.bubbleLegend;a.minSize=b;a.maxSize=c;a.ranges=this.getRanges()},
correctSizes:function(){var b=this.legend,c=this.chart.series[this.options.seriesIndex];1<Math.abs(Math.ceil(c.maxPxSize)-this.options.maxSize)&&(this.updateRanges(this.options.minSize,c.maxPxSize),b.render())}};n(a.Legend,"afterGetAllItems",function(c){var b=this.bubbleLegend,k=this.options,h=k.bubbleLegend,d=this.chart.getVisibleBubbleSeriesIndex();b&&b.ranges&&b.ranges.length&&(h.ranges.length&&(h.autoRanges=!!h.ranges[0].autoRanges),this.destroyItem(b));0<=d&&k.enabled&&h.enabled&&(h.seriesIndex=
d,this.bubbleLegend=new a.BubbleLegend(h,this),this.bubbleLegend.addToLegend(c.allItems))});m.prototype.getVisibleBubbleSeriesIndex=function(){for(var b=this.series,c=0;c<b.length;){if(b[c]&&b[c].isBubble&&b[c].visible&&b[c].zData.length)return c;c++}return-1};e.prototype.getLinesHeights=function(){var b=this.allItems,c=[],a,k=b.length,d,l=0;for(d=0;d<k;d++)if(b[d].legendItemHeight&&(b[d].itemHeight=b[d].legendItemHeight),b[d]===b[k-1]||b[d+1]&&b[d]._legendItemPos[1]!==b[d+1]._legendItemPos[1]){c.push({height:0});
a=c[c.length-1];for(l;l<=d;l++)b[l].itemHeight>a.height&&(a.height=b[l].itemHeight);a.step=d}return c};e.prototype.retranslateItems=function(b){var c,a,k,d=this.options.rtl,h=0;this.allItems.forEach(function(l,f){c=l.legendGroup.translateX;a=l._legendItemPos[1];if((k=l.movementX)||d&&l.ranges)k=d?c-l.options.maxSize/2:c+k,l.legendGroup.attr({translateX:k});f>b[h].step&&h++;l.legendGroup.attr({translateY:Math.round(a+b[h].height/2)});l._legendItemPos[1]=a+b[h].height/2})};n(q,"legendItemClick",function(){var b=
this.chart,c=this.visible,a=this.chart.legend;a&&a.bubbleLegend&&(this.visible=!c,this.ignoreSeries=c,b=0<=b.getVisibleBubbleSeriesIndex(),a.bubbleLegend.visible!==b&&(a.update({bubbleLegend:{enabled:b}}),a.bubbleLegend.visible=b),this.visible=c)});b(m.prototype,"drawChartBox",function(b,c,a){var k=this.legend,d=0<=this.getVisibleBubbleSeriesIndex(),h;k&&k.options.enabled&&k.bubbleLegend&&k.options.bubbleLegend.autoRanges&&d?(h=k.bubbleLegend.options,d=k.bubbleLegend.predictBubbleSizes(),k.bubbleLegend.updateRanges(d[0],
d[1]),h.placed||(k.group.placed=!1,k.allItems.forEach(function(b){b.legendGroup.translateY=null})),k.render(),this.getMargins(),this.axes.forEach(function(b){b.render();h.placed||(b.setScale(),b.updateNames(),v(b.ticks,function(b){b.isNew=!0;b.isNewLabel=!0}))}),h.placed=!0,this.getMargins(),b.call(this,c,a),k.bubbleLegend.correctSizes(),k.retranslateItems(k.getLinesHeights())):(b.call(this,c,a),k&&k.options.enabled&&k.bubbleLegend&&(k.render(),k.retranslateItems(k.getLinesHeights())))})});y(u,"parts-more/BubbleSeries.js",
[u["parts/Globals.js"]],function(a){var q=a.arrayMax,e=a.arrayMin,m=a.Axis,n=a.color,b=a.isNumber,g=a.noop,f=a.pick,d=a.pInt,v=a.Point,t=a.Series,x=a.seriesType,c=a.seriesTypes;x("bubble","scatter",{dataLabels:{formatter:function(){return this.point.z},inside:!0,verticalAlign:"middle"},animationLimit:250,marker:{lineColor:null,lineWidth:1,fillOpacity:.5,radius:null,states:{hover:{radiusPlus:0}},symbol:"circle"},minSize:8,maxSize:"20%",softThreshold:!1,states:{hover:{halo:{size:5}}},tooltip:{pointFormat:"({point.x}, {point.y}), Size: {point.z}"},
turboThreshold:0,zThreshold:0,zoneAxis:"z"},{pointArrayMap:["y","z"],parallelArrays:["x","y","z"],trackerGroups:["group","dataLabelsGroup"],specialGroup:"group",bubblePadding:!0,zoneAxis:"z",directTouch:!0,isBubble:!0,pointAttribs:function(b,c){var a=this.options.marker.fillOpacity;b=t.prototype.pointAttribs.call(this,b,c);1!==a&&(b.fill=n(b.fill).setOpacity(a).get("rgba"));return b},getRadii:function(b,c,a){var k,d=this.zData,f=a.minPxSize,p=a.maxPxSize,m=[],g;k=0;for(a=d.length;k<a;k++)g=d[k],m.push(this.getRadius(b,
c,f,p,g));this.radii=m},getRadius:function(c,a,d,l,h){var k=this.options,f="width"!==k.sizeBy,p=k.zThreshold,m=a-c;k.sizeByAbsoluteValue&&null!==h&&(h=Math.abs(h-p),m=Math.max(a-p,Math.abs(c-p)),c=0);b(h)?h<c?d=d/2-1:(c=0<m?(h-c)/m:.5,f&&0<=c&&(c=Math.sqrt(c)),d=Math.ceil(d+c*(l-d))/2):d=null;return d},animate:function(b){!b&&this.points.length<this.options.animationLimit&&(this.points.forEach(function(b){var c=b.graphic,a;c&&c.width&&(a={x:c.x,y:c.y,width:c.width,height:c.height},c.attr({x:b.plotX,
y:b.plotY,width:1,height:1}),c.animate(a,this.options.animation))},this),this.animate=null)},hasData:function(){return!!this.processedXData.length},translate:function(){var k,d=this.data,f,l,h=this.radii;c.scatter.prototype.translate.call(this);for(k=d.length;k--;)f=d[k],l=h?h[k]:0,b(l)&&l>=this.minPxSize/2?(f.marker=a.extend(f.marker,{radius:l,width:2*l,height:2*l}),f.dlBox={x:f.plotX-l,y:f.plotY-l,width:2*l,height:2*l}):f.shapeArgs=f.plotY=f.dlBox=void 0},alignDataLabel:c.column.prototype.alignDataLabel,
buildKDTree:g,applyZones:g},{haloPath:function(b){return v.prototype.haloPath.call(this,0===b?0:(this.marker?this.marker.radius||0:0)+b)},ttBelow:!1});m.prototype.beforePadding=function(){var c=this,p=this.len,m=this.chart,l=0,h=p,g=this.isXAxis,n=g?"xData":"yData",v=this.min,t={},x=Math.min(m.plotWidth,m.plotHeight),u=Number.MAX_VALUE,y=-Number.MAX_VALUE,C=this.max-v,B=p/C,D=[];this.series.forEach(function(b){var k=b.options;!b.bubblePadding||!b.visible&&m.options.chart.ignoreHiddenSeries||(c.allowZoomOutside=
!0,D.push(b),g&&(["minSize","maxSize"].forEach(function(b){var c=k[b],a=/%$/.test(c),c=d(c);t[b]=a?x*c/100:c}),b.minPxSize=t.minSize,b.maxPxSize=Math.max(t.maxSize,t.minSize),b=b.zData.filter(a.isNumber),b.length&&(u=f(k.zMin,Math.min(u,Math.max(e(b),!1===k.displayNegative?k.zThreshold:-Number.MAX_VALUE))),y=f(k.zMax,Math.max(y,q(b))))))});D.forEach(function(a){var d=a[n],k=d.length,f;g&&a.getRadii(u,y,a);if(0<C)for(;k--;)b(d[k])&&c.dataMin<=d[k]&&d[k]<=c.dataMax&&(f=a.radii[k],l=Math.min((d[k]-v)*
B-f,l),h=Math.max((d[k]-v)*B+f,h))});D.length&&0<C&&!this.isLog&&(h-=p,B*=(p+Math.max(0,l)-Math.min(h,p))/p,[["min","userMin",l],["max","userMax",h]].forEach(function(b){void 0===f(c.options[b[0]],c[b[1]])&&(c[b[0]]+=b[2]/B)}))}});y(u,"modules/networkgraph/integrations.js",[u["parts/Globals.js"]],function(a){a.networkgraphIntegrations={verlet:{attractiveForceFunction:function(a,e){return(e-a)/a},repulsiveForceFunction:function(a,e){return(e-a)/a*(e>a?1:0)},barycenter:function(){var a=this.options.gravitationalConstant,
e=this.barycenter.xFactor,m=this.barycenter.yFactor,e=(e-(this.box.left+this.box.width)/2)*a,m=(m-(this.box.top+this.box.height)/2)*a;this.nodes.forEach(function(a){a.fixedPosition||(a.plotX-=e/a.mass/a.degree,a.plotY-=m/a.mass/a.degree)})},repulsive:function(a,e,m){e=e*this.diffTemperature/a.mass/a.degree;a.fixedPosition||(a.plotX+=m.x*e,a.plotY+=m.y*e)},attractive:function(a,e,m){var n=a.getMass(),b=-m.x*e*this.diffTemperature;e=-m.y*e*this.diffTemperature;a.fromNode.fixedPosition||(a.fromNode.plotX-=
b*n.fromNode/a.fromNode.degree,a.fromNode.plotY-=e*n.fromNode/a.fromNode.degree);a.toNode.fixedPosition||(a.toNode.plotX+=b*n.toNode/a.toNode.degree,a.toNode.plotY+=e*n.toNode/a.toNode.degree)},integrate:function(a,e){var m=-a.options.friction,n=a.options.maxSpeed,b=(e.plotX+e.dispX-e.prevX)*m,m=(e.plotY+e.dispY-e.prevY)*m,g=Math.abs,f=g(b)/(b||1),g=g(m)/(m||1),b=f*Math.min(n,Math.abs(b)),m=g*Math.min(n,Math.abs(m));e.prevX=e.plotX+e.dispX;e.prevY=e.plotY+e.dispY;e.plotX+=b;e.plotY+=m;e.temperature=
a.vectorLength({x:b,y:m})},getK:function(a){return Math.pow(a.box.width*a.box.height/a.nodes.length,.5)}},euler:{attractiveForceFunction:function(a,e){return a*a/e},repulsiveForceFunction:function(a,e){return e*e/a},barycenter:function(){var a=this.options.gravitationalConstant,e=this.barycenter.xFactor,m=this.barycenter.yFactor;this.nodes.forEach(function(n){if(!n.fixedPosition){var b=n.getDegree(),b=b*(1+b/2);n.dispX+=(e-n.plotX)*a*b/n.degree;n.dispY+=(m-n.plotY)*a*b/n.degree}})},repulsive:function(a,
e,m,n){a.dispX+=m.x/n*e/a.degree;a.dispY+=m.y/n*e/a.degree},attractive:function(a,e,m,n){var b=a.getMass(),g=m.x/n*e;e*=m.y/n;a.fromNode.fixedPosition||(a.fromNode.dispX-=g*b.fromNode/a.fromNode.degree,a.fromNode.dispY-=e*b.fromNode/a.fromNode.degree);a.toNode.fixedPosition||(a.toNode.dispX+=g*b.toNode/a.toNode.degree,a.toNode.dispY+=e*b.toNode/a.toNode.degree)},integrate:function(a,e){var m;e.dispX+=e.dispX*a.options.friction;e.dispY+=e.dispY*a.options.friction;m=e.temperature=a.vectorLength({x:e.dispX,
y:e.dispY});0!==m&&(e.plotX+=e.dispX/m*Math.min(Math.abs(e.dispX),a.temperature),e.plotY+=e.dispY/m*Math.min(Math.abs(e.dispY),a.temperature))},getK:function(a){return Math.pow(a.box.width*a.box.height/a.nodes.length,.3)}}}});y(u,"modules/networkgraph/QuadTree.js",[u["parts/Globals.js"]],function(a){var q=a.QuadTreeNode=function(a){this.box=a;this.boxSize=Math.min(a.width,a.height);this.nodes=[];this.body=this.isInternal=!1;this.isEmpty=!0};a.extend(q.prototype,{insert:function(a,e){this.isInternal?
this.nodes[this.getBoxPosition(a)].insert(a,e-1):(this.isEmpty=!1,this.body?e?(this.isInternal=!0,this.divideBox(),!0!==this.body&&(this.nodes[this.getBoxPosition(this.body)].insert(this.body,e-1),this.body=!0),this.nodes[this.getBoxPosition(a)].insert(a,e-1)):this.nodes.push(a):(this.isInternal=!1,this.body=a))},updateMassAndCenter:function(){var a=0,e=0,b=0;this.isInternal?(this.nodes.forEach(function(g){g.isEmpty||(a+=g.mass,e+=g.plotX*g.mass,b+=g.plotY*g.mass)}),e/=a,b/=a):this.body&&(a=this.body.mass,
e=this.body.plotX,b=this.body.plotY);this.mass=a;this.plotX=e;this.plotY=b},divideBox:function(){var a=this.box.width/2,e=this.box.height/2;this.nodes[0]=new q({left:this.box.left,top:this.box.top,width:a,height:e});this.nodes[1]=new q({left:this.box.left+a,top:this.box.top,width:a,height:e});this.nodes[2]=new q({left:this.box.left+a,top:this.box.top+e,width:a,height:e});this.nodes[3]=new q({left:this.box.left,top:this.box.top+e,width:a,height:e})},getBoxPosition:function(a){var m=a.plotY<this.box.top+
this.box.height/2;return a.plotX<this.box.left+this.box.width/2?m?0:3:m?1:2}});var e=a.QuadTree=function(a,e,b,g){this.box={left:a,top:e,width:b,height:g};this.maxDepth=25;this.root=new q(this.box,"0");this.root.isInternal=!0;this.root.isRoot=!0;this.root.divideBox()};a.extend(e.prototype,{insertNodes:function(a){a.forEach(function(a){this.root.insert(a,this.maxDepth)},this)},visitNodeRecursive:function(a,e,b,g,f){var d;a||(a=this.root);a===this.root&&e&&(d=e(a));!1!==d&&(a.nodes.forEach(function(a){if(a.isInternal){e&&
(d=e(a));if(!1===d)return;this.visitNodeRecursive(a,e,b,g,f)}else a.body&&e&&e(a.body);b&&b(a)},this),a===this.root&&b&&b(a))},calculateMassAndCenter:function(){this.visitNodeRecursive(null,null,function(a){a.updateMassAndCenter()})},render:function(a,e){this.visitNodeRecursive(this.root,null,null,a,e)},clear:function(a){this.render(a,!0)},renderBox:function(a,e,b){a.graphic||b?b&&(a.graphic&&(a.graphic=a.graphic.destroy()),a.graphic2&&(a.graphic2=a.graphic2.destroy()),a.label&&(a.label=a.label.destroy())):
(a.graphic=e.renderer.rect(a.box.left+e.plotLeft,a.box.top+e.plotTop,a.box.width,a.box.height).attr({stroke:"rgba(100, 100, 100, 0.5)","stroke-width":2}).add(),isNaN(a.plotX)||(a.graphic2=e.renderer.circle(a.plotX,a.plotY,a.mass/10).attr({fill:"red",translateY:e.plotTop,translateX:e.plotLeft}).add()))}})});y(u,"modules/networkgraph/layouts.js",[u["parts/Globals.js"]],function(a){var q=a.pick,e=a.defined,m=a.addEvent,n=a.Chart;a.layouts={"reingold-fruchterman":function(){}};a.extend(a.layouts["reingold-fruchterman"].prototype,
{init:function(b){this.options=b;this.nodes=[];this.links=[];this.series=[];this.box={x:0,y:0,width:0,height:0};this.setInitialRendering(!0);this.integration=a.networkgraphIntegrations[b.integration];this.attractiveForce=q(b.attractiveForce,this.integration.attractiveForceFunction);this.repulsiveForce=q(b.repulsiveForce,this.integration.repulsiveForceFunction);this.approximation=b.approximation},start:function(){var a=this.series,g=this.options;this.currentStep=0;this.forces=a[0]&&a[0].forces||[];
this.initialRendering&&(this.initPositions(),a.forEach(function(a){a.render()}));this.setK();this.resetSimulation(g);g.enableSimulation&&this.step()},step:function(){var b=this,g=this.series,f=this.options;b.currentStep++;"barnes-hut"===b.approximation&&(b.createQuadTree(),b.quadTree.calculateMassAndCenter());b.forces.forEach(function(a){b[a+"Forces"](b.temperature)});b.applyLimits(b.temperature);b.temperature=b.coolDown(b.startTemperature,b.diffTemperature,b.currentStep);b.prevSystemTemperature=
b.systemTemperature;b.systemTemperature=b.getSystemTemperature();f.enableSimulation&&(g.forEach(function(a){a.chart&&a.render()}),b.maxIterations--&&isFinite(b.temperature)&&!b.isStable()?(b.simulation&&a.win.cancelAnimationFrame(b.simulation),b.simulation=a.win.requestAnimationFrame(function(){b.step()})):b.simulation=!1)},stop:function(){this.simulation&&a.win.cancelAnimationFrame(this.simulation)},setArea:function(a,g,f,d){this.box={left:a,top:g,width:f,height:d}},setK:function(){this.k=this.options.linkLength||
this.integration.getK(this)},addNodes:function(a){a.forEach(function(a){-1===this.nodes.indexOf(a)&&this.nodes.push(a)},this)},removeNode:function(a){a=this.nodes.indexOf(a);-1!==a&&this.nodes.splice(a,1)},removeLink:function(a){a=this.links.indexOf(a);-1!==a&&this.links.splice(a,1)},addLinks:function(a){a.forEach(function(a){-1===this.links.indexOf(a)&&this.links.push(a)},this)},addSeries:function(a){-1===this.series.indexOf(a)&&this.series.push(a)},clear:function(){this.nodes.length=0;this.links.length=
0;this.series.length=0;this.resetSimulation()},resetSimulation:function(){this.forcedStop=!1;this.systemTemperature=0;this.setMaxIterations();this.setTemperature();this.setDiffTemperature()},setMaxIterations:function(a){this.maxIterations=q(a,this.options.maxIterations)},setTemperature:function(){this.temperature=this.startTemperature=Math.sqrt(this.nodes.length)},setDiffTemperature:function(){this.diffTemperature=this.startTemperature/(this.options.maxIterations+1)},setInitialRendering:function(a){this.initialRendering=
a},createQuadTree:function(){this.quadTree=new a.QuadTree(this.box.left,this.box.top,this.box.width,this.box.height);this.quadTree.insertNodes(this.nodes)},initPositions:function(){var b=this.options.initialPositions;a.isFunction(b)?(b.call(this),this.nodes.forEach(function(a){e(a.prevX)||(a.prevX=a.plotX);e(a.prevY)||(a.prevY=a.plotY);a.dispX=0;a.dispY=0})):"circle"===b?this.setCircularPositions():this.setRandomPositions()},setCircularPositions:function(){function a(c){c.linksFrom.forEach(function(c){n[c.toNode.id]||
(n[c.toNode.id]=!0,m.push(c.toNode),a(c.toNode))})}var g=this.box,f=this.nodes,d=2*Math.PI/(f.length+1),e=f.filter(function(a){return 0===a.linksTo.length}),m=[],n={},c=this.options.initialPositionRadius;e.forEach(function(c){m.push(c);a(c)});m.length?f.forEach(function(a){-1===m.indexOf(a)&&m.push(a)}):m=f;m.forEach(function(a,b){a.plotX=a.prevX=q(a.plotX,g.width/2+c*Math.cos(b*d));a.plotY=a.prevY=q(a.plotY,g.height/2+c*Math.sin(b*d));a.dispX=0;a.dispY=0})},setRandomPositions:function(){function a(a){a=
a*a/Math.PI;return a-=Math.floor(a)}var g=this.box,f=this.nodes,d=f.length+1;f.forEach(function(b,f){b.plotX=b.prevX=q(b.plotX,g.width*a(f));b.plotY=b.prevY=q(b.plotY,g.height*a(d+f));b.dispX=0;b.dispY=0})},force:function(a){this.integration[a].apply(this,Array.prototype.slice.call(arguments,1))},barycenterForces:function(){this.getBarycenter();this.force("barycenter")},getBarycenter:function(){var a=0,g=0,f=0;this.nodes.forEach(function(b){g+=b.plotX*b.mass;f+=b.plotY*b.mass;a+=b.mass});return this.barycenter=
{x:g,y:f,xFactor:g/a,yFactor:f/a}},barnesHutApproximation:function(a,g){var b=this.getDistXY(a,g),d=this.vectorLength(b),e,m;a!==g&&0!==d&&(g.isInternal?g.boxSize/d<this.options.theta&&0!==d?(m=this.repulsiveForce(d,this.k),this.force("repulsive",a,m*g.mass,b,d),e=!1):e=!0:(m=this.repulsiveForce(d,this.k),this.force("repulsive",a,m*g.mass,b,d)));return e},repulsiveForces:function(){var a=this;"barnes-hut"===a.approximation?a.nodes.forEach(function(b){a.quadTree.visitNodeRecursive(null,function(f){return a.barnesHutApproximation(b,
f)})}):a.nodes.forEach(function(b){a.nodes.forEach(function(f){var d,e,g;b===f||b.fixedPosition||(g=a.getDistXY(b,f),e=a.vectorLength(g),0!==e&&(d=a.repulsiveForce(e,a.k),a.force("repulsive",b,d*f.mass,g,e)))})})},attractiveForces:function(){var a=this,e,f,d;a.links.forEach(function(b){b.fromNode&&b.toNode&&(e=a.getDistXY(b.fromNode,b.toNode),f=a.vectorLength(e),0!==f&&(d=a.attractiveForce(f,a.k),a.force("attractive",b,d,e,f)))})},applyLimits:function(){var a=this;a.nodes.forEach(function(b){b.fixedPosition||
(a.integration.integrate(a,b),a.applyLimitBox(b,a.box),b.dispX=0,b.dispY=0)})},applyLimitBox:function(a,e){var b=a.marker&&a.marker.radius||0;a.plotX=Math.max(Math.min(a.plotX,e.width-b),e.left+b);a.plotY=Math.max(Math.min(a.plotY,e.height-b),e.top+b)},coolDown:function(a,e,f){return a-e*f},isStable:function(){return.00001>Math.abs(this.systemTemperature-this.prevSystemTemperature)||0>=this.temperature},getSystemTemperature:function(){return this.nodes.reduce(function(a,e){return a+e.temperature},
0)},vectorLength:function(a){return Math.sqrt(a.x*a.x+a.y*a.y)},getDistR:function(a,e){a=this.getDistXY(a,e);return this.vectorLength(a)},getDistXY:function(a,e){var b=a.plotX-e.plotX;a=a.plotY-e.plotY;return{x:b,y:a,absX:Math.abs(b),absY:Math.abs(a)}}});m(n,"predraw",function(){this.graphLayoutsLookup&&this.graphLayoutsLookup.forEach(function(a){a.stop()})});m(n,"render",function(){function b(a){a.maxIterations--&&isFinite(a.temperature)&&!a.isStable()&&!a.options.enableSimulation&&(a.beforeStep&&
a.beforeStep(),a.step(),e=!1,f=!0)}var e,f=!1;if(this.graphLayoutsLookup){a.setAnimation(!1,this);for(this.graphLayoutsLookup.forEach(function(a){a.start()});!e;)e=!0,this.graphLayoutsLookup.forEach(b);f&&this.series.forEach(function(a){a&&a.layout&&a.render()})}})});y(u,"modules/networkgraph/draggable-nodes.js",[u["parts/Globals.js"]],function(a){var q=a.Chart,e=a.addEvent;a.dragNodesMixin={onMouseDown:function(a,e){e=this.chart.pointer.normalize(e);a.fixedPosition={chartX:e.chartX,chartY:e.chartY,
plotX:a.plotX,plotY:a.plotY};a.inDragMode=!0},onMouseMove:function(a,e){if(a.fixedPosition&&a.inDragMode){var b=this.chart,g=b.pointer.normalize(e);e=a.fixedPosition.chartX-g.chartX;g=a.fixedPosition.chartY-g.chartY;if(5<Math.abs(e)||5<Math.abs(g))e=a.fixedPosition.plotX-e,g=a.fixedPosition.plotY-g,b.isInsidePlot(e,g)&&(a.plotX=e,a.plotY=g,this.redrawHalo(a),this.layout.simulation?this.layout.resetSimulation():(this.layout.setInitialRendering(!1),this.layout.enableSimulation?this.layout.start():this.layout.setMaxIterations(1),
this.chart.redraw(),this.layout.setInitialRendering(!0)))}},onMouseUp:function(a){a.fixedPosition&&(this.layout.enableSimulation?this.layout.start():this.chart.redraw(),a.inDragMode=!1,this.options.fixedDraggable||delete a.fixedPosition)},redrawHalo:function(a){a&&this.halo&&this.halo.attr({d:a.haloPath(this.options.states.hover.halo.size)})}};e(q,"load",function(){var a=this,n,b,g;a.container&&(n=e(a.container,"mousedown",function(f){var d=a.hoverPoint;d&&d.series&&d.series.hasDraggableNodes&&d.series.options.draggable&&
(d.series.onMouseDown(d,f),b=e(a.container,"mousemove",function(a){return d&&d.series&&d.series.onMouseMove(d,a)}),g=e(a.container.ownerDocument,"mouseup",function(a){b();g();return d&&d.series&&d.series.onMouseUp(d,a)}))}));e(a,"destroy",function(){n()})})});y(u,"parts-more/PackedBubbleSeries.js",[u["parts/Globals.js"]],function(a){var q=a.seriesType,e=a.Series,m=a.Point,n=a.defined,b=a.pick,g=a.addEvent,f=a.Chart,d=a.Color,v=a.layouts["reingold-fruchterman"],t=a.seriesTypes.bubble.prototype.pointClass,
x=a.dragNodesMixin;a.networkgraphIntegrations.packedbubble={repulsiveForceFunction:function(a,b,d,f){return Math.min(a,(d.marker.radius+f.marker.radius)/2)},barycenter:function(){var a=this,b=a.options.gravitationalConstant,d=a.box,f=a.nodes,l,h;f.forEach(function(c){a.options.splitSeries&&!c.isParentNode?(l=c.series.parentNode.plotX,h=c.series.parentNode.plotY):(l=d.width/2,h=d.height/2);c.fixedPosition||(c.plotX-=(c.plotX-l)*b/(c.mass*Math.sqrt(f.length)),c.plotY-=(c.plotY-h)*b/(c.mass*Math.sqrt(f.length)))})},
repulsive:function(a,b,d,f){var c=b*this.diffTemperature/a.mass/a.degree;b=d.x*c;d=d.y*c;a.fixedPosition||(a.plotX+=b,a.plotY+=d);f.fixedPosition||(f.plotX-=b,f.plotY-=d)},integrate:a.networkgraphIntegrations.verlet.integrate,getK:a.noop};a.layouts.packedbubble=a.extendClass(v,{beforeStep:function(){this.options.marker&&this.series.forEach(function(a){a&&a.calculateParentRadius()})},setCircularPositions:function(){var a=this,d=a.box,f=a.nodes,e=2*Math.PI/(f.length+1),l,h,g=a.options.initialPositionRadius;
f.forEach(function(c,k){a.options.splitSeries&&!c.isParentNode?(l=c.series.parentNode.plotX,h=c.series.parentNode.plotY):(l=d.width/2,h=d.height/2);c.plotX=c.prevX=b(c.plotX,l+g*Math.cos(c.index||k*e));c.plotY=c.prevY=b(c.plotY,h+g*Math.sin(c.index||k*e));c.dispX=0;c.dispY=0})},repulsiveForces:function(){var a=this,b,d,f,l=a.options.bubblePadding;a.nodes.forEach(function(c){c.degree=c.mass;c.neighbours=0;a.nodes.forEach(function(k){b=0;c===k||c.fixedPosition||!a.options.seriesInteraction&&c.series!==
k.series||(f=a.getDistXY(c,k),d=a.vectorLength(f)-(c.marker.radius+k.marker.radius+l),0>d&&(c.degree+=.01,c.neighbours++,b=a.repulsiveForce(-d/Math.sqrt(c.neighbours),a.k,c,k)),a.force("repulsive",c,b*k.mass,f,k,d))})})},applyLimitBox:function(a){var c,b;this.options.splitSeries&&!a.isParentNode&&this.options.parentNodeLimit&&(c=this.getDistXY(a,a.series.parentNode),b=a.series.parentNodeRadius-a.marker.radius-this.vectorLength(c),0>b&&b>-2*a.marker.radius&&(a.plotX-=.01*c.x,a.plotY-=.01*c.y));v.prototype.applyLimitBox.apply(this,
arguments)},isStable:function(){return.00001>Math.abs(this.systemTemperature-this.prevSystemTemperature)||0>=this.temperature||0<this.systemTemperature&&.02>this.systemTemperature/this.nodes.length&&this.enableSimulation}});q("packedbubble","bubble",{minSize:"10%",maxSize:"50%",sizeBy:"area",zoneAxis:"y",tooltip:{pointFormat:"Value: {point.value}"},draggable:!0,useSimulation:!0,dataLabels:{formatter:function(){return this.point.value},parentNodeFormatter:function(){return this.name},parentNodeTextPath:{enabled:!0},
padding:0},layoutAlgorithm:{initialPositions:"circle",initialPositionRadius:20,bubblePadding:5,parentNodeLimit:!1,seriesInteraction:!0,dragBetweenSeries:!1,parentNodeOptions:{maxIterations:400,gravitationalConstant:.03,maxSpeed:50,initialPositionRadius:100,seriesInteraction:!0,marker:{fillColor:null,fillOpacity:1,lineWidth:1,lineColor:null,symbol:"circle"}},enableSimulation:!0,type:"packedbubble",integration:"packedbubble",maxIterations:1E3,splitSeries:!1,maxSpeed:5,gravitationalConstant:.01,friction:-.981}},
{hasDraggableNodes:!0,forces:["barycenter","repulsive"],pointArrayMap:["value"],pointValKey:"value",isCartesian:!1,axisTypes:[],noSharedTooltip:!0,accumulateAllPoints:function(a){var c=a.chart,b=[],d,f;for(d=0;d<c.series.length;d++)if(a=c.series[d],a.visible||!c.options.chart.ignoreHiddenSeries)for(f=0;f<a.yData.length;f++)b.push([null,null,a.yData[f],a.index,f,{id:f,marker:{radius:0}}]);return b},init:function(){e.prototype.init.apply(this,arguments);g(this,"updatedData",function(){this.chart.series.forEach(function(a){a.type===
this.type&&(a.isDirty=!0)},this)});return this},render:function(){var c=[];e.prototype.render.apply(this,arguments);this.options.dataLabels.allowOverlap||(this.data.forEach(function(b){a.isArray(b.dataLabels)&&b.dataLabels.forEach(function(a){c.push(a)})}),this.chart.hideOverlappingLabels(c))},setVisible:function(){var a=this;e.prototype.setVisible.apply(a,arguments);a.parentNodeLayout&&a.graph?a.visible?(a.graph.show(),a.parentNode.dataLabel&&a.parentNode.dataLabel.show()):(a.graph.hide(),a.parentNodeLayout.removeNode(a.parentNode),
a.parentNode.dataLabel&&a.parentNode.dataLabel.hide()):a.layout&&(a.visible?a.layout.addNodes(a.points):a.points.forEach(function(b){a.layout.removeNode(b)}))},drawDataLabels:function(){var a=this.options.dataLabels.textPath,b=this.points;e.prototype.drawDataLabels.apply(this,arguments);this.parentNode&&(this.parentNode.formatPrefix="parentNode",this.points=[this.parentNode],this.options.dataLabels.textPath=this.options.dataLabels.parentNodeTextPath,e.prototype.drawDataLabels.apply(this,arguments),
this.points=b,this.options.dataLabels.textPath=a)},seriesBox:function(){var b=this.chart,d=Math.max,f=Math.min,e,l=[b.plotLeft,b.plotLeft+b.plotWidth,b.plotTop,b.plotTop+b.plotHeight];this.data.forEach(function(a){n(a.plotX)&&n(a.plotY)&&a.marker.radius&&(e=a.marker.radius,l[0]=f(l[0],a.plotX-e),l[1]=d(l[1],a.plotX+e),l[2]=f(l[2],a.plotY-e),l[3]=d(l[3],a.plotY+e))});return a.isNumber(l.width/l.height)?l:null},calculateParentRadius:function(){var a;a=this.seriesBox();this.parentNodeRadius=Math.min(Math.max(Math.sqrt(2*
this.parentNodeMass/Math.PI)+20,20),a?Math.max(Math.sqrt(Math.pow(a.width,2)+Math.pow(a.height,2))/2+20,20):Math.sqrt(2*this.parentNodeMass/Math.PI)+20);this.parentNode&&(this.parentNode.marker.radius=this.parentNodeRadius)},drawGraph:function(){if(this.layout&&this.layout.options.splitSeries){var b=this.chart,k,f=this.layout.options.parentNodeOptions.marker,f={fill:f.fillColor||d(this.color).brighten(.4).get(),opacity:f.fillOpacity,stroke:f.lineColor||this.color,"stroke-width":f.lineWidth};k=this.visible?
"inherit":"hidden";this.parentNodesGroup||(this.parentNodesGroup=this.plotGroup("parentNodesGroup","parentNode",k,.1,b.seriesGroup),this.group.attr({zIndex:2}));this.calculateParentRadius();k=a.merge({x:this.parentNode.plotX-this.parentNodeRadius,y:this.parentNode.plotY-this.parentNodeRadius,width:2*this.parentNodeRadius,height:2*this.parentNodeRadius},f);this.graph?this.graph.attr(k):this.graph=this.parentNode.graphic=b.renderer.symbol(f.symbol).attr(k).add(this.parentNodesGroup)}},createParentNodes:function(){var a=
this,b=a.chart,d=a.parentNodeLayout,f,e=a.parentNode;a.parentNodeMass=0;a.points.forEach(function(b){a.parentNodeMass+=Math.PI*Math.pow(b.marker.radius,2)});a.calculateParentRadius();d.nodes.forEach(function(b){b.seriesIndex===a.index&&(f=!0)});d.setArea(0,0,b.plotWidth,b.plotHeight);f||(e||(e=(new t).init(this,{mass:a.parentNodeRadius/2,marker:{radius:a.parentNodeRadius},dataLabels:{inside:!1},dataLabelOnNull:!0,degree:a.parentNodeRadius,isParentNode:!0,seriesIndex:a.index})),a.parentNode&&(e.plotX=
a.parentNode.plotX,e.plotY=a.parentNode.plotY),a.parentNode=e,d.addSeries(a),d.addNodes([e]))},addSeriesLayout:function(){var b=this.options.layoutAlgorithm,d=this.chart.graphLayoutsStorage,f=this.chart.graphLayoutsLookup,e=a.merge(b,b.parentNodeOptions,{enableSimulation:this.layout.options.enableSimulation}),l;l=d[b.type+"-series"];l||(d[b.type+"-series"]=l=new a.layouts[b.type],l.init(e),f.splice(l.index,0,l));this.parentNodeLayout=l;this.createParentNodes()},addLayout:function(){var b=this.options.layoutAlgorithm,
d=this.chart.graphLayoutsStorage,f=this.chart.graphLayoutsLookup,e=this.chart.options.chart,l;d||(this.chart.graphLayoutsStorage=d={},this.chart.graphLayoutsLookup=f=[]);l=d[b.type];l||(b.enableSimulation=n(e.forExport)?!e.forExport:b.enableSimulation,d[b.type]=l=new a.layouts[b.type],l.init(b),f.splice(l.index,0,l));this.layout=l;this.points.forEach(function(a){a.mass=2;a.degree=1;a.collisionNmb=1});l.setArea(0,0,this.chart.plotWidth,this.chart.plotHeight);l.addSeries(this);l.addNodes(this.points)},
deferLayout:function(){var a=this.options.layoutAlgorithm;this.visible&&(this.addLayout(),a.splitSeries&&this.addSeriesLayout())},translate:function(){var b=this.chart,d=this.data,f=this.index,e,l,h,g,m=this.options.useSimulation;this.processedXData=this.xData;this.generatePoints();n(b.allDataPoints)||(b.allDataPoints=this.accumulateAllPoints(this),this.getPointRadius());m?h=b.allDataPoints:(h=this.placeBubbles(b.allDataPoints),this.options.draggable=!1);for(g=0;g<h.length;g++)h[g][3]===f&&(e=d[h[g][4]],
l=h[g][2],m||(e.plotX=h[g][0]-b.plotLeft+b.diffX,e.plotY=h[g][1]-b.plotTop+b.diffY),e.marker=a.extend(e.marker,{radius:l,width:2*l,height:2*l}));m&&this.deferLayout()},checkOverlap:function(a,b){var c=a[0]-b[0],d=a[1]-b[1];return-.001>Math.sqrt(c*c+d*d)-Math.abs(a[2]+b[2])},positionBubble:function(a,b,d){var c=Math.sqrt,f=Math.asin,e=Math.acos,k=Math.pow,g=Math.abs,c=c(k(a[0]-b[0],2)+k(a[1]-b[1],2)),e=e((k(c,2)+k(d[2]+b[2],2)-k(d[2]+a[2],2))/(2*(d[2]+b[2])*c)),f=f(g(a[0]-b[0])/c);a=(0>a[1]-b[1]?0:
Math.PI)+e+f*(0>(a[0]-b[0])*(a[1]-b[1])?1:-1);return[b[0]+(b[2]+d[2])*Math.sin(a),b[1]-(b[2]+d[2])*Math.cos(a),d[2],d[3],d[4]]},placeBubbles:function(a){var b=this.checkOverlap,c=this.positionBubble,d=[],f=1,e=0,g=0,m;m=[];var n;a=a.sort(function(a,b){return b[2]-a[2]});if(a.length){d.push([[0,0,a[0][2],a[0][3],a[0][4]]]);if(1<a.length)for(d.push([[0,0-a[1][2]-a[0][2],a[1][2],a[1][3],a[1][4]]]),n=2;n<a.length;n++)a[n][2]=a[n][2]||1,m=c(d[f][e],d[f-1][g],a[n]),b(m,d[f][0])?(d.push([]),g=0,d[f+1].push(c(d[f][e],
d[f][0],a[n])),f++,e=0):1<f&&d[f-1][g+1]&&b(m,d[f-1][g+1])?(g++,d[f].push(c(d[f][e],d[f-1][g],a[n])),e++):(e++,d[f].push(m));this.chart.stages=d;this.chart.rawPositions=[].concat.apply([],d);this.resizeRadius();m=this.chart.rawPositions}return m},resizeRadius:function(){var a=this.chart,b=a.rawPositions,d=Math.min,f=Math.max,e=a.plotLeft,h=a.plotTop,g=a.plotHeight,m=a.plotWidth,n,t,v,q,x,u;n=v=Number.POSITIVE_INFINITY;t=q=Number.NEGATIVE_INFINITY;for(u=0;u<b.length;u++)x=b[u][2],n=d(n,b[u][0]-x),
t=f(t,b[u][0]+x),v=d(v,b[u][1]-x),q=f(q,b[u][1]+x);u=[t-n,q-v];d=d.apply([],[(m-e)/u[0],(g-h)/u[1]]);if(1e-10<Math.abs(d-1)){for(u=0;u<b.length;u++)b[u][2]*=d;this.placeBubbles(b)}else a.diffY=g/2+h-v-(q-v)/2,a.diffX=m/2+e-n-(t-n)/2},calculateZExtremes:function(){var c=this.options.zMin,d=this.options.zMax,f=Infinity,e=-Infinity;if(c&&d)return[c,d];this.chart.series.forEach(function(b){b.yData.forEach(function(b){a.defined(b)&&(b>e&&(e=b),b<f&&(f=b))})});c=b(c,f);d=b(d,e);return[c,d]},getPointRadius:function(){var a=
this,b=a.chart,d=a.options,f=d.useSimulation,e=Math.min(b.plotWidth,b.plotHeight),h={},g=[],m=b.allDataPoints,n,t,v,q,x;["minSize","maxSize"].forEach(function(a){var b=parseInt(d[a],10),c=/%$/.test(d[a]);h[a]=c?e*b/100:b*Math.sqrt(m.length)});b.minRadius=n=h.minSize/Math.sqrt(m.length);b.maxRadius=t=h.maxSize/Math.sqrt(m.length);x=f?a.calculateZExtremes():[n,t];(m||[]).forEach(function(b,c){v=f?Math.max(Math.min(b[2],x[1]),x[0]):b[2];q=a.getRadius(x[0],x[1],n,t,v);0===q&&(q=null);m[c][2]=q;g.push(q)});
a.radii=g},redrawHalo:x.redrawHalo,onMouseDown:x.onMouseDown,onMouseMove:x.onMouseMove,onMouseUp:function(b){if(b.fixedPosition&&!b.removed){var c,d,f=this.layout,e=this.parentNodeLayout;e&&f.options.dragBetweenSeries&&e.nodes.forEach(function(e){b&&b.marker&&e!==b.series.parentNode&&(c=f.getDistXY(b,e),d=f.vectorLength(c)-e.marker.radius-b.marker.radius,0>d&&(e.series.addPoint(a.merge(b.options,{plotX:b.plotX,plotY:b.plotY}),!1),f.removeNode(b),b.remove()))});x.onMouseUp.apply(this,arguments)}},
destroy:function(){this.parentNode&&(this.parentNodeLayout.removeNode(this.parentNode),this.parentNode.dataLabel&&(this.parentNode.dataLabel=this.parentNode.dataLabel.destroy()));a.Series.prototype.destroy.apply(this,arguments)},alignDataLabel:a.Series.prototype.alignDataLabel},{destroy:function(){this.series.layout&&this.series.layout.removeNode(this);return m.prototype.destroy.apply(this,arguments)}});g(f,"beforeRedraw",function(){this.allDataPoints&&delete this.allDataPoints})});y(u,"parts-more/Polar.js",
[u["parts/Globals.js"]],function(a){var q=a.pick,e=a.Series,m=a.seriesTypes,n=a.wrap,b=e.prototype,g=a.Pointer.prototype;b.searchPointByAngle=function(a){var b=this.chart,f=this.xAxis.pane.center;return this.searchKDTree({clientX:180+-180/Math.PI*Math.atan2(a.chartX-f[0]-b.plotLeft,a.chartY-f[1]-b.plotTop)})};b.getConnectors=function(a,b,e,g){var d,c,f,m,n,l,h,t;c=g?1:0;d=0<=b&&b<=a.length-1?b:0>b?a.length-1+b:0;b=0>d-1?a.length-(1+c):d-1;c=d+1>a.length-1?c:d+1;f=a[b];c=a[c];m=f.plotX;f=f.plotY;n=
c.plotX;l=c.plotY;c=a[d].plotX;d=a[d].plotY;m=(1.5*c+m)/2.5;f=(1.5*d+f)/2.5;n=(1.5*c+n)/2.5;h=(1.5*d+l)/2.5;l=Math.sqrt(Math.pow(m-c,2)+Math.pow(f-d,2));t=Math.sqrt(Math.pow(n-c,2)+Math.pow(h-d,2));m=Math.atan2(f-d,m-c);h=Math.PI/2+(m+Math.atan2(h-d,n-c))/2;Math.abs(m-h)>Math.PI/2&&(h-=Math.PI);m=c+Math.cos(h)*l;f=d+Math.sin(h)*l;n=c+Math.cos(Math.PI+h)*t;h=d+Math.sin(Math.PI+h)*t;c={rightContX:n,rightContY:h,leftContX:m,leftContY:f,plotX:c,plotY:d};e&&(c.prevPointCont=this.getConnectors(a,b,!1,g));
return c};b.toXY=function(a){var b,f=this.chart,e=a.plotX;b=a.plotY;a.rectPlotX=e;a.rectPlotY=b;b=this.xAxis.postTranslate(a.plotX,this.yAxis.len-b);a.plotX=a.polarPlotX=b.x-f.plotLeft;a.plotY=a.polarPlotY=b.y-f.plotTop;this.kdByAngle?(f=(e/Math.PI*180+this.xAxis.pane.options.startAngle)%360,0>f&&(f+=360),a.clientX=f):a.clientX=a.plotX};m.spline&&(n(m.spline.prototype,"getPointSpline",function(a,b,e,g){this.chart.polar?g?(a=this.getConnectors(b,g,!0,this.connectEnds),a=["C",a.prevPointCont.rightContX,
a.prevPointCont.rightContY,a.leftContX,a.leftContY,a.plotX,a.plotY]):a=["M",e.plotX,e.plotY]:a=a.call(this,b,e,g);return a}),m.areasplinerange&&(m.areasplinerange.prototype.getPointSpline=m.spline.prototype.getPointSpline));a.addEvent(e,"afterTranslate",function(){var b=this.chart,d,e;if(b.polar){(this.kdByAngle=b.tooltip&&b.tooltip.shared)?this.searchPoint=this.searchPointByAngle:this.options.findNearestPointBy="xy";if(!this.preventPostTranslate)for(d=this.points,e=d.length;e--;)this.toXY(d[e]),
!b.hasParallelCoordinates&&!this.yAxis.reversed&&d[e].y<this.yAxis.min&&(d[e].isNull=!0);this.hasClipCircleSetter||(this.hasClipCircleSetter=!!a.addEvent(this,"afterRender",function(){var d;b.polar&&(d=this.yAxis.center,this.group.clip(b.renderer.clipCircle(d[0],d[1],d[2]/2)),this.setClip=a.noop)}))}},{order:2});n(b,"getGraphPath",function(a,b){var d=this,e,f,c;if(this.chart.polar){b=b||this.points;for(e=0;e<b.length;e++)if(!b[e].isNull){f=e;break}!1!==this.options.connectEnds&&void 0!==f&&(this.connectEnds=
!0,b.splice(b.length,0,b[f]),c=!0);b.forEach(function(a){void 0===a.polarPlotY&&d.toXY(a)})}e=a.apply(this,[].slice.call(arguments,1));c&&b.pop();return e});e=function(a,b){var d=this.chart,e=this.options.animation,f=this.group,c=this.markerGroup,k=this.xAxis.center,g=d.plotLeft,m=d.plotTop;d.polar?d.renderer.isSVG&&(!0===e&&(e={}),b?(a={translateX:k[0]+g,translateY:k[1]+m,scaleX:.001,scaleY:.001},f.attr(a),c&&c.attr(a)):(a={translateX:g,translateY:m,scaleX:1,scaleY:1},f.animate(a,e),c&&c.animate(a,
e),this.animate=null)):a.call(this,b)};n(b,"animate",e);m.column&&(m=m.column.prototype,m.polarArc=function(a,b,e,g){var d=this.xAxis.center,c=this.yAxis.len;return this.chart.renderer.symbols.arc(d[0],d[1],c-b,null,{start:e,end:g,innerR:c-q(a,c)})},n(m,"animate",e),n(m,"translate",function(a){var b=this.xAxis,e=b.startAngleRad,f,g,c;this.preventPostTranslate=!0;a.call(this);if(b.isRadial)for(f=this.points,c=f.length;c--;)g=f[c],a=g.barX+e,g.shapeType="path",g.shapeArgs={d:this.polarArc(g.yBottom,
g.plotY,a,a+g.pointWidth)},this.toXY(g),g.tooltipPos=[g.plotX,g.plotY],g.ttBelow=g.plotY>b.center[1]}),n(m,"alignDataLabel",function(a,d,e,g,m,c){this.chart.polar?(a=d.rectPlotX/Math.PI*180,null===g.align&&(g.align=20<a&&160>a?"left":200<a&&340>a?"right":"center"),null===g.verticalAlign&&(g.verticalAlign=45>a||315<a?"bottom":135<a&&225>a?"top":"middle"),b.alignDataLabel.call(this,d,e,g,m,c)):a.call(this,d,e,g,m,c)}));n(g,"getCoordinates",function(a,b){var d=this.chart,e={xAxis:[],yAxis:[]};d.polar?
d.axes.forEach(function(a){var c=a.isXAxis,f=a.center,g=b.chartX-f[0]-d.plotLeft,f=b.chartY-f[1]-d.plotTop;e[c?"xAxis":"yAxis"].push({axis:a,value:a.translate(c?Math.PI-Math.atan2(g,f):Math.sqrt(Math.pow(g,2)+Math.pow(f,2)),!0)})}):e=a.call(this,b);return e});a.SVGRenderer.prototype.clipCircle=function(b,d,e){var f=a.uniqueKey(),g=this.createElement("clipPath").attr({id:f}).add(this.defs);b=this.circle(b,d,e).add(g);b.id=f;b.clipPath=g;return b};a.addEvent(a.Chart,"getAxes",function(){this.pane||
(this.pane=[]);a.splat(this.options.pane).forEach(function(b){new a.Pane(b,this)},this)});a.addEvent(a.Chart,"afterDrawChartBox",function(){this.pane.forEach(function(a){a.render()})});n(a.Chart.prototype,"get",function(b,d){return a.find(this.pane,function(a){return a.options.id===d})||b.call(this,d)})});y(u,"masters/highcharts-more.src.js",[],function(){})});
//# sourceMappingURL=highcharts-more.js.map
</script>


<script type='text/javascript'>
var chart_counts_mean;
$(document).ready(function () { chart_counts_mean = new Highcharts.Chart({
    chart: {
        type: "area",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_counts_mean'
    },
    title: {text: 'Displays number of mean checks per result status'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Number of mean results per category'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            area: {
                stacking: 'normal',
            },
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [0, 0, 0, 1],
        },
        {
            name: 'minor improvements',
            color: 'lightgreen',
            data: [0, 1, 1, 0],
        },
        {
            name: 'equals',
            color: 'green',
            data: [0, 0, 0, 0],
        },
        {
            name: 'minor regressions',
            color: 'darkgreen',
            data: [1, 0, 0, 0],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [1, 1, 1, 1],
        },
        {
            name: 'errors',
            color: 'lightpink',
            data: [4, 4, 8, 4],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_overall_mean_cont;
$(document).ready(function () { chart_overall_mean_cont = new Highcharts.Chart({
    chart: {
        type: "boxplot",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_overall_mean_cont'
    },
    title: {text: 'Displays min/max/avg values per each mean result status'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Percentage gain/loss'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [13.27, 13.27, 13.27, 13.27, 13.27]],
        },
        {
            name: 'equals',
            color: 'green',
            data: [[-1.26, -1.26, -1.26, -1.26, -1.26], [3.94, 3.94, 3.94, 3.94, 3.94], [2.91, 2.91, 2.91, 2.91, 2.91], [0, 0, 0, 0, 0]],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [[-6.75, -6.75, -6.75, -6.75, -6.75], [-6.07, -6.07, -6.07, -6.07, -6.07], [-20.25, -20.25, -20.25, -20.25, -20.25], [-8.4, -8.4, -8.4, -8.4, -8.4]],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_counts_stddev;
$(document).ready(function () { chart_counts_stddev = new Highcharts.Chart({
    chart: {
        type: "area",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#fffef0',
        renderTo: 'chart_counts_stddev'
    },
    title: {text: 'Displays number of stddev checks per result status'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Number of stddev results per category'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            area: {
                stacking: 'normal',
            },
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [0, 0, 0, 1],
        },
        {
            name: 'minor improvements',
            color: 'lightgreen',
            data: [0, 1, 1, 0],
        },
        {
            name: 'equals',
            color: 'green',
            data: [0, 0, 0, 0],
        },
        {
            name: 'minor regressions',
            color: 'darkgreen',
            data: [1, 0, 0, 0],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [1, 1, 1, 1],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_overall_stddev_cont;
$(document).ready(function () { chart_overall_stddev_cont = new Highcharts.Chart({
    chart: {
        type: "boxplot",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#fffef0',
        renderTo: 'chart_overall_stddev_cont'
    },
    title: {text: 'Displays min/max/avg values per each stddev result status'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Percentage gain/loss'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
        {
            name: 'equals',
            color: 'green',
            data: [[0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0]],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_mean_counts;
$(document).ready(function () { chart_Localhost_mean_counts = new Highcharts.Chart({
    chart: {
        type: "area",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_mean_counts'
    },
    title: {text: 'Displays number of checks per result status of Localhost/*/*:./*-*/*/*.mean tests'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Number of results per category'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            area: {
                stacking: 'normal',
            },
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [0, 0, 0, 1],
        },
        {
            name: 'equals',
            color: 'green',
            data: [1, 1, 1, 0],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [1, 1, 1, 1],
        },
        {
            name: 'errors',
            color: 'lightpink',
            data: [0, 0, 0, 0],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_mean_overall_cont;
$(document).ready(function () { chart_Localhost_mean_overall_cont = new Highcharts.Chart({
    chart: {
        type: "boxplot",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_mean_overall_cont'
    },
    title: {text: 'Displays min/max/avg values per result status of Localhost/*/*:./*-*/*/*.mean test'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Percentage gain/loss'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [13.27, 13.27, 13.27, 13.27, 13.27]],
        },
        {
            name: 'equals',
            color: 'green',
            data: [[-1.26, -1.26, -1.26, -1.26, -1.26], [3.94, 3.94, 3.94, 3.94, 3.94], [2.91, 2.91, 2.91, 2.91, 2.91], [0, 0, 0, 0, 0]],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [[-6.75, -6.75, -6.75, -6.75, -6.75], [-6.07, -6.07, -6.07, -6.07, -6.07], [-20.25, -20.25, -20.25, -20.25, -20.25], [-8.4, -8.4, -8.4, -8.4, -8.4]],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_mean_counts;
$(document).ready(function () { chart_Localhost_mean_counts = new Highcharts.Chart({
    chart: {
        type: "area",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_mean_counts'
    },
    title: {text: 'Displays number of checks per result status of Localhost2/*/*:./*-*/*/*.mean tests'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Number of results per category'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            area: {
                stacking: 'normal',
            },
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [0, 0, 0, 0],
        },
        {
            name: 'equals',
            color: 'green',
            data: [0, 0, 0, 0],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [0, 0, 0, 0],
        },
        {
            name: 'errors',
            color: 'lightpink',
            data: [2, 2, 2, 2],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_mean_overall_cont;
$(document).ready(function () { chart_Localhost_mean_overall_cont = new Highcharts.Chart({
    chart: {
        type: "boxplot",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_mean_overall_cont'
    },
    title: {text: 'Displays min/max/avg values per result status of Localhost2/*/*:./*-*/*/*.mean test'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Percentage gain/loss'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
        {
            name: 'equals',
            color: 'green',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_mean_counts;
$(document).ready(function () { chart_Localhost_mean_counts = new Highcharts.Chart({
    chart: {
        type: "area",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_mean_counts'
    },
    title: {text: 'Displays number of checks per result status of Localhost3/*/*:./*-*/*/*.mean tests'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Number of results per category'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            area: {
                stacking: 'normal',
            },
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [0, 0, 0, 0],
        },
        {
            name: 'equals',
            color: 'green',
            data: [0, 0, 0, 0],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [0, 0, 0, 0],
        },
        {
            name: 'errors',
            color: 'lightpink',
            data: [0, 0, 2, 0],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_mean_overall_cont;
$(document).ready(function () { chart_Localhost_mean_overall_cont = new Highcharts.Chart({
    chart: {
        type: "boxplot",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_mean_overall_cont'
    },
    title: {text: 'Displays min/max/avg values per result status of Localhost3/*/*:./*-*/*/*.mean test'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Percentage gain/loss'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
        {
            name: 'equals',
            color: 'green',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_fio_iops_sec_mean_counts;
$(document).ready(function () { chart_Localhost_fio_iops_sec_mean_counts = new Highcharts.Chart({
    chart: {
        type: "area",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_fio_iops_sec_mean_counts'
    },
    title: {text: 'Displays number of checks per result status of Localhost/fio/*:./*-*/*/iops_sec.mean tests'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Number of results per category'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            area: {
                stacking: 'normal',
            },
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [0, 0, 0, 1],
        },
        {
            name: 'equals',
            color: 'green',
            data: [1, 1, 1, 0],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [1, 1, 1, 1],
        },
        {
            name: 'errors',
            color: 'lightpink',
            data: [0, 0, 0, 0],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_fio_iops_sec_mean_overall_cont;
$(document).ready(function () { chart_Localhost_fio_iops_sec_mean_overall_cont = new Highcharts.Chart({
    chart: {
        type: "boxplot",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_fio_iops_sec_mean_overall_cont'
    },
    title: {text: 'Displays min/max/avg values per result status of Localhost/fio/*:./*-*/*/iops_sec.mean test'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Percentage gain/loss'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [13.27, 13.27, 13.27, 13.27, 13.27]],
        },
        {
            name: 'equals',
            color: 'green',
            data: [[-1.26, -1.26, -1.26, -1.26, -1.26], [3.94, 3.94, 3.94, 3.94, 3.94], [2.91, 2.91, 2.91, 2.91, 2.91], [0, 0, 0, 0, 0]],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [[-6.75, -6.75, -6.75, -6.75, -6.75], [-6.07, -6.07, -6.07, -6.07, -6.07], [-20.25, -20.25, -20.25, -20.25, -20.25], [-8.4, -8.4, -8.4, -8.4, -8.4]],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_fio_iops_sec_mean_counts;
$(document).ready(function () { chart_Localhost_fio_iops_sec_mean_counts = new Highcharts.Chart({
    chart: {
        type: "area",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_fio_iops_sec_mean_counts'
    },
    title: {text: 'Displays number of checks per result status of Localhost2/fio/*:./*-*/*/iops_sec.mean tests'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Number of results per category'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            area: {
                stacking: 'normal',
            },
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [0, 0, 0, 0],
        },
        {
            name: 'equals',
            color: 'green',
            data: [0, 0, 0, 0],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [0, 0, 0, 0],
        },
        {
            name: 'errors',
            color: 'lightpink',
            data: [2, 2, 2, 2],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_fio_iops_sec_mean_overall_cont;
$(document).ready(function () { chart_Localhost_fio_iops_sec_mean_overall_cont = new Highcharts.Chart({
    chart: {
        type: "boxplot",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_fio_iops_sec_mean_overall_cont'
    },
    title: {text: 'Displays min/max/avg values per result status of Localhost2/fio/*:./*-*/*/iops_sec.mean test'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Percentage gain/loss'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
        {
            name: 'equals',
            color: 'green',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_fio_iops_sec_mean_counts;
$(document).ready(function () { chart_Localhost_fio_iops_sec_mean_counts = new Highcharts.Chart({
    chart: {
        type: "area",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_fio_iops_sec_mean_counts'
    },
    title: {text: 'Displays number of checks per result status of Localhost3/fio/*:./*-*/*/iops_sec.mean tests'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Number of results per category'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            area: {
                stacking: 'normal',
            },
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [0, 0, 0, 0],
        },
        {
            name: 'equals',
            color: 'green',
            data: [0, 0, 0, 0],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [0, 0, 0, 0],
        },
        {
            name: 'errors',
            color: 'lightpink',
            data: [0, 0, 2, 0],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_fio_iops_sec_mean_overall_cont;
$(document).ready(function () { chart_Localhost_fio_iops_sec_mean_overall_cont = new Highcharts.Chart({
    chart: {
        type: "boxplot",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_fio_iops_sec_mean_overall_cont'
    },
    title: {text: 'Displays min/max/avg values per result status of Localhost3/fio/*:./*-*/*/iops_sec.mean test'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Percentage gain/loss'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
        {
            name: 'equals',
            color: 'green',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_fio_read_throughput_iops_sec_mean_counts;
$(document).ready(function () { chart_Localhost_fio_read_throughput_iops_sec_mean_counts = new Highcharts.Chart({
    chart: {
        type: "area",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_fio_read_throughput_iops_sec_mean_counts'
    },
    title: {text: 'Displays number of checks per result status of Localhost/fio/0000:./read-*/throughput/iops_sec.mean tests'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Number of results per category'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            area: {
                stacking: 'normal',
            },
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [0, 0, 0, 1],
        },
        {
            name: 'equals',
            color: 'green',
            data: [1, 1, 1, 0],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [1, 1, 1, 1],
        },
        {
            name: 'errors',
            color: 'lightpink',
            data: [0, 0, 0, 0],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont;
$(document).ready(function () { chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont = new Highcharts.Chart({
    chart: {
        type: "boxplot",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont'
    },
    title: {text: 'Displays min/max/avg values per result status of Localhost/fio/0000:./read-*/throughput/iops_sec.mean test'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Percentage gain/loss'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [13.27, 13.27, 13.27, 13.27, 13.27]],
        },
        {
            name: 'equals',
            color: 'green',
            data: [[-1.26, -1.26, -1.26, -1.26, -1.26], [3.94, 3.94, 3.94, 3.94, 3.94], [2.91, 2.91, 2.91, 2.91, 2.91], [0, 0, 0, 0, 0]],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [[-6.75, -6.75, -6.75, -6.75, -6.75], [-6.07, -6.07, -6.07, -6.07, -6.07], [-20.25, -20.25, -20.25, -20.25, -20.25], [-8.4, -8.4, -8.4, -8.4, -8.4]],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_fio_read_throughput_iops_sec_mean_counts;
$(document).ready(function () { chart_Localhost_fio_read_throughput_iops_sec_mean_counts = new Highcharts.Chart({
    chart: {
        type: "area",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_fio_read_throughput_iops_sec_mean_counts'
    },
    title: {text: 'Displays number of checks per result status of Localhost2/fio/0000:./read-*/throughput/iops_sec.mean tests'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Number of results per category'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            area: {
                stacking: 'normal',
            },
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [0, 0, 0, 0],
        },
        {
            name: 'equals',
            color: 'green',
            data: [0, 0, 0, 0],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [0, 0, 0, 0],
        },
        {
            name: 'errors',
            color: 'lightpink',
            data: [2, 2, 2, 2],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont;
$(document).ready(function () { chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont = new Highcharts.Chart({
    chart: {
        type: "boxplot",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont'
    },
    title: {text: 'Displays min/max/avg values per result status of Localhost2/fio/0000:./read-*/throughput/iops_sec.mean test'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Percentage gain/loss'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
        {
            name: 'equals',
            color: 'green',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_fio_read_throughput_iops_sec_mean_counts;
$(document).ready(function () { chart_Localhost_fio_read_throughput_iops_sec_mean_counts = new Highcharts.Chart({
    chart: {
        type: "area",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_fio_read_throughput_iops_sec_mean_counts'
    },
    title: {text: 'Displays number of checks per result status of Localhost3/fio/0000:./read-*/throughput/iops_sec.mean tests'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Number of results per category'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            area: {
                stacking: 'normal',
            },
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [0, 0, 0, 0],
        },
        {
            name: 'equals',
            color: 'green',
            data: [0, 0, 0, 0],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [0, 0, 0, 0],
        },
        {
            name: 'errors',
            color: 'lightpink',
            data: [0, 0, 2, 0],
        },
    ]
});});
</script>

<script type='text/javascript'>
var chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont;
$(document).ready(function () { chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont = new Highcharts.Chart({
    chart: {
        type: "boxplot",
        zoomType: 'xy',
        width: 900,
        height: 600,
        backgroundColor: '#f5f5ff',
        renderTo: 'chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont'
    },
    title: {text: 'Displays min/max/avg values per result status of Localhost3/fio/0000:./read-*/throughput/iops_sec.mean test'},
    xAxis: [{
        categories: ['selftests/.assets/results/1_base/result_20200726_112748', 'selftests/.assets/results/2_kernel_update/result_20200726_114437', 'selftests/.assets/results/3_kernel_and_less_cpus/result_20200726_125851', 'selftests/.assets/results/4_kernel_and_less_cpus_and_different_duration/result_20200726_130256'],
        title: {text: 'Builds'}
    }],
    yAxis: {
        title: {
            text: 'Percentage gain/loss'
        }
    },
    tooltip: {split: true},
    plotOptions: { 
            series: {
                lineWidth: 3
            }
    },
    series: [
        {
            name: 'improvements',
            color: 'gold',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
        {
            name: 'equals',
            color: 'green',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
        {
            name: 'regressions',
            color: 'red',
            data: [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],
        },
    ]
});});
</script>


<script language="javascript">
function toggle(name, element) {
    var ele = document.getElementById(element);
    var text = document.getElementById(element + '-hide');
    if (ele.style.display == "inline-block") {
        ele.style.display = "none";
        text.innerHTML = "show " + name;
    } else {
        ele.style.display = "inline-block";
        text.innerHTML = "hide " + name;
    }
}

function toggle_short(element) {
    var ele = document.getElementById(element);
    var text = document.getElementById(element + '-hide');
    if (ele.style.display == "block") {
        ele.style.display = "none";
        text.innerHTML = "[+]";
    } else {
        ele.style.display = "block";
        text.innerHTML = "[-]";
    }
}
</script>

<script language="javascript">
var table_of_failures_show_statuses = new Set()
var table_of_failures_hide_name_segments = new Set()

function tableOfFailuresFilter() {
    var items = document.getElementById('table_of_failures').querySelectorAll('tr');
    var i;
    var show;
    <!-- skip first item because that is the header !-->
    for (i = 1; i < items.length; i++) {
        display = "none";
        var statuses = table_of_failures_show_statuses.values()
        for (var status = ""; status = statuses.next().value;) {
            if (items[i].className.includes(" " + status + " ")) {
                display = "table-row";
                break;
            }
        }
        if (display != "none") {
            var names = table_of_failures_hide_name_segments.values()
            for (var name = ""; name = names.next().value;) {
                if (items[i].querySelectorAll('td')[0].className.includes(name)) {
                    display = "none";
                    break;
                }
            }
        }
        items[i].style.display = display;
    }
}

function tableOfFailuresToggleByStatus(stat, table) {
    var button = document.getElementById('table_of_failures_' + stat)
    if (table_of_failures_show_statuses.has(stat)) {
        table_of_failures_show_statuses.delete(stat);
        button.innerHTML = button.innerHTML.toLowerCase();
    } else {
        table_of_failures_show_statuses.add(stat);
        button.innerHTML = button.innerHTML.toUpperCase();
    }
    tableOfFailuresFilter()
}

function tableOfFailuresToggleByNameSegment(name) {
    var button = document.getElementById('table_of_failures_button_' + name)
    if (table_of_failures_hide_name_segments.has(name)) {
        table_of_failures_hide_name_segments.delete(name);
        button.innerHTML = button.innerHTML.toUpperCase();
        button.className = "status_0"
    } else {
        table_of_failures_hide_name_segments.add(name);
        button.innerHTML = button.innerHTML.toLowerCase();
        button.className = "status_-1"
    }
    tableOfFailuresFilter()
}

function tableOfFailuresToggleMultiple(action, statuses) {
    for (i = 0; i < statuses.length; i++) {
        if (table_of_failures_show_statuses.has(statuses[i]) != action) {
            tableOfFailuresToggleByStatus(statuses[i]);
        }
    }
}
</script>

<script language="javascript">
var table_of_group_failures_show_statuses = new Set()
var table_of_group_failures_hide_name_segments = new Set()

function tableOfGroupFailuresFilter() {
    var items = document.getElementById('table_of_group_failures').querySelectorAll('tr');
    var i;
    var show;
    <!-- skip first item because that is the header !-->
    for (i = 1; i < items.length; i++) {
        display = "none";
        var statuses = table_of_group_failures_show_statuses.values()
        for (var status = ""; status = statuses.next().value;) {
            if (items[i].className.includes(" " + status + " ")) {
                display = "table-row";
                break;
            }
        }
        if (display != "none") {
            var names = table_of_group_failures_hide_name_segments.values()
            for (var name = ""; name = names.next().value;) {
                if (items[i].querySelectorAll('td')[0].className.includes(name)) {
                    display = "none";
                    break;
                }
            }
        }
        items[i].style.display = display;
    }
}

function tableOfGroupFailuresToggleByStatus(stat, table) {
    var button = document.getElementById('table_of_group_failures_' + stat)
    if (table_of_group_failures_show_statuses.has(stat)) {
        table_of_group_failures_show_statuses.delete(stat);
        button.innerHTML = button.innerHTML.toLowerCase();
    } else {
        table_of_group_failures_show_statuses.add(stat);
        button.innerHTML = button.innerHTML.toUpperCase();
    }
    tableOfGroupFailuresFilter()
}

function tableOfGroupFailuresToggleByNameSegment(name) {
    var button = document.getElementById('table_of_group_failures_button_' + name)
    if (table_of_group_failures_hide_name_segments.has(name)) {
        table_of_group_failures_hide_name_segments.delete(name);
        button.innerHTML = button.innerHTML.toUpperCase();
        button.className = "status_0"
    } else {
        table_of_group_failures_hide_name_segments.add(name);
        button.innerHTML = button.innerHTML.toLowerCase();
        button.className = "status_-1"
    }
    tableOfGroupFailuresFilter()
}

function tableOfGroupFailuresToggleMultiple(action, statuses) {
    for (i = 0; i < statuses.length; i++) {
        if (table_of_group_failures_show_statuses.has(statuses[i]) != action) {
            tableOfGroupFailuresToggleByStatus(statuses[i]);
        }
    }
}
</script>

<script language="javascript">
function initialize() {
    /* table of failures */
    tableOfFailuresToggleMultiple(true, ['status_99', 'status_-1', 'status_-2',
        'status_-3', 'any_status_99', 'any_status_-1', 'any_status_-2',
        'any_status_-3']);
    tableOfFailuresToggleByNameSegment('stddev');
    /* table of group failures */
    tableOfGroupFailuresToggleMultiple(true, ['status_99', 'status_-1', 'status_-2',
        'status_-3', 'any_status_99', 'any_status_-1', 'any_status_-2',
        'any_status_-3']);
    tableOfGroupFailuresToggleByNameSegment('stddev');
}
</script>

<script language="javascript">
function elementValueToClipboard(name) {
    var copyText = document.getElementById(name);
    copyText.select();
    /* Copy the text inside the text field */
    document.execCommand("copy");
};
</script>

<style>
#container p { display: inline }
body {background-color: white}
h1 {display: inline-block}
h2 {display: inline-block}
a {font-family: monospace;}
</style>

<style>
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  background-color: lightgrey;
  color: black;
  text-align: left;
  position: absolute;
  z-index: 1;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.supsub {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    vertical-align: middle;
    font-size: 9px;
    line-height: 7px;
}
</style>

<style>
.status_0 {background-color: green; color: white}
.status_1 {background-color: lightgreen; color: white}
.status_2 {background-color: darkgreen; color: white}
.status_99 {background-color: lightpink; color: black}
.status_-1 {background-color: red; color: black}
.status_-2 {background-color: pink; color: black}
.status_-3 {background-color: gold; color: black}
</style>
</head>

<body onload="initialize()">
<h1>Comparison of build 1
 and 10
 (Fedora-30
 and Fedora-30
)</h1>
<div id='headding'>
    <table>
    <tr>
        <td>Base</td>
        <td><a href=Unknown></a></td>
    </tr>
    <tr>
        <td>Target</td>
        <td>Fedora-30
 <a href=Unknown>build 10
</a></td>
    </tr>
    </table>
</div>

<div id='summary_table'>
    <table border=1>
    <tr>
        <td>Build</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'><a href="Unknown">1
</a></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><a href="Unknown">7
</a></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><a href="Unknown">8
</a></td>
        <td style='background-color: rgba(255, 102.0, 102.0)'><a href="Unknown">9
</a></td>
        <td style='background-color: rgba(255, 153.0, 153.0)'><a href="Unknown">10
</a></td>
    </tr>
    <tr>
        <td>Machine</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'><a href="192.168.122.162
" title="192.168.122.162
">192</a></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><a href="192.168.122.162
" title="192.168.122.162
">192</a></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><a href="https://example.org/192.168.122.162/details" title="192.168.122.162">192</a>,<a href="https://example.org/192.168.122.163/details
" title="192.168.122.163
">192</a></td>
        <td style='background-color: rgba(255, 102.0, 102.0)'><a href="192.168.122.162" title="192.168.122.162">192</a>,<a href="192.168.122.163
" title="192.168.122.163
">192</a></td>
        <td style='background-color: rgba(255, 153.0, 153.0)'><a href="192.168.122.162
" title="192.168.122.162
">192</a></td>
    </tr>
    <tr>
        <td>Distro</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'><div class="tooltip">A<span class="tooltiptext">Fedora-30
</span></div></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><div class="tooltip">A<span class="tooltiptext">Fedora-30
</span></div></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><div class="tooltip">A<span class="tooltiptext">Fedora-30
</span></div></td>
        <td style='background-color: rgba(255, 102.0, 102.0)'><div class="tooltip">A<span class="tooltiptext">Fedora-30
</span></div></td>
        <td style='background-color: rgba(255, 153.0, 153.0)'><div class="tooltip">A<span class="tooltiptext">Fedora-30
</span></div></td>
    </tr>
    <tr>
        <td>Guest distro</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'>DISTRO
</a></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>DISTRO
</a></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>DISTRO
</a></td>
        <td style='background-color: rgba(255, 102.0, 102.0)'>DISTRO
</a></td>
        <td style='background-color: rgba(255, 153.0, 153.0)'>DISTRO
</a></td>
    </tr>
    <tr>
        <td>Runperf version</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'><a href="https://github.com/distributed-system-analysis/run-perf/tree/99a5c8e3e3b9b7c96ec571c579952b83e2119eac-dirty
">99a5c8</a></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><a href="https://github.com/distributed-system-analysis/run-perf/tree/99a5c8e3e3b9b7c96ec571c579952b83e2119eac-dirty
">99a5c8</a></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><a href="https://github.com/distributed-system-analysis/run-perf/tree/99a5c8e3e3b9b7c96ec571c579952b83e2119eac-dirty
">99a5c8</a></td>
        <td style='background-color: rgba(255, 102.0, 102.0)'><a href="https://github.com/distributed-system-analysis/run-perf/tree/99a5c8e3e3b9b7c96ec571c579952b83e2119eac-dirty
">99a5c8</a></td>
        <td style='background-color: rgba(255, 153.0, 153.0)'><a href="https://github.com/distributed-system-analysis/run-perf/tree/99a5c8e3e3b9b7c96ec571c579952b83e2119eac-dirty
">99a5c8</a></td>
    </tr>
    <tr>
        <td>Runperf cmd</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'><div class="tooltip">A<span class="tooltiptext">scripts/run-perf -vvv --hosts foo:192.168.122.162 --distro DISTRO --default-password MASKED --metadata MASKED --profiles Localhost --paths ../runperf_config/ -- fio:{&#34;type&#34;:&#34;read&#34;, &#34;ramptime&#34;:&#34;10&#34;, &#34;runtime&#34;:&#34;60&#34;, &#34;samples&#34;:&#34;1&#34;, &#34;file-size&#34;: &#34;1300000&#34;, &#34;targets&#34;: &#34;/fio&#34;}
</span></div></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><div class="tooltip">A<span class="tooltiptext">scripts/run-perf -vvv --hosts foo:192.168.122.162 --distro DISTRO --default-password MASKED --metadata MASKED --profiles Localhost --paths ../runperf_config/ -- fio:{&#34;type&#34;:&#34;read&#34;, &#34;ramptime&#34;:&#34;10&#34;, &#34;runtime&#34;:&#34;60&#34;, &#34;samples&#34;:&#34;1&#34;, &#34;file-size&#34;: &#34;1300000&#34;, &#34;targets&#34;: &#34;/fio&#34;}
</span></div></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><div class="tooltip">A<span class="tooltiptext">scripts/run-perf -vvv --hosts foo:192.168.122.162 --distro DISTRO --default-password MASKED --metadata MASKED --profiles Localhost --paths ../runperf_config/ -- fio:{&#34;type&#34;:&#34;read&#34;, &#34;ramptime&#34;:&#34;10&#34;, &#34;runtime&#34;:&#34;60&#34;, &#34;samples&#34;:&#34;1&#34;, &#34;file-size&#34;: &#34;1300000&#34;, &#34;targets&#34;: &#34;/fio&#34;}
</span></div></td>
        <td style='background-color: rgba(255, 102.0, 102.0)'><div class="tooltip">A<span class="tooltiptext">scripts/run-perf -vvv --hosts foo:192.168.122.162 --distro DISTRO --default-password MASKED --metadata MASKED --profiles Localhost --paths ../runperf_config/ -- fio:{&#34;type&#34;:&#34;read&#34;, &#34;ramptime&#34;:&#34;10&#34;, &#34;runtime&#34;:&#34;60&#34;, &#34;samples&#34;:&#34;1&#34;, &#34;file-size&#34;: &#34;1300000&#34;, &#34;targets&#34;: &#34;/fio&#34;}
</span></div></td>
        <td style='background-color: rgba(255, 153.0, 153.0)'><div class="tooltip">A<span class="tooltiptext">scripts/run-perf -vvv --hosts foo:192.168.122.162 --distro DISTRO --default-password MASKED --metadata MASKED --profiles Localhost --paths ../runperf_config/ -- fio:{&#34;type&#34;:&#34;read&#34;, &#34;ramptime&#34;:&#34;10&#34;, &#34;runtime&#34;:&#34;60&#34;, &#34;samples&#34;:&#34;1&#34;, &#34;file-size&#34;: &#34;1300000&#34;, &#34;targets&#34;: &#34;/fio&#34;}
</span></div></td>
    </tr>
    <tr>
        <td>World env</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'><textarea style="position: absolute; left: -9999px;"  id="env-World-1-raw">[{&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.0.9-301.fc30.x86_64\n#1 SMP Tue Apr 23 23:57:35 UTC 2019\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.0.9-301.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 3\nguest_mem_m: 2048\nhost_cpus: 3\nhugepage_kb: 1\nnuma_nodes: 1&#39;}]</textarea><div class="tooltip" onclick="elementValueToClipboard('env-World-1-raw')">E3<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>
kernel
======
-5.6.13-100.fc30.x86_64
-#1 SMP Fri May 15 00:36:06 UTC 2020
+5.0.9-301.fc30.x86_64
+#1 SMP Tue Apr 23 23:57:35 UTC 2019
-BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet
+BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.0.9-301.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap quiet

mitigations
===========
-/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages
-/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown
-/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization
+/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: __user pointer sanitization
-/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown

params
======
-guest_cpus: 1
+guest_cpus: 3
-host_cpus: 1
+host_cpus: 3</pre></span></div></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><textarea style="position: absolute; left: -9999px;"  id="env-World-2-raw">[{&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.0.9-301.fc30.x86_64\n#1 SMP Tue Apr 23 23:57:35 UTC 2019\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.0.9-301.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 3\nguest_mem_m: 2048\nhost_cpus: 3\nhugepage_kb: 1\nnuma_nodes: 1&#39;}]</textarea><div class="tooltip" onclick="elementValueToClipboard('env-World-2-raw')">E3<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>
kernel
======
-5.6.13-100.fc30.x86_64
-#1 SMP Fri May 15 00:36:06 UTC 2020
+5.0.9-301.fc30.x86_64
+#1 SMP Tue Apr 23 23:57:35 UTC 2019
-BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet
+BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.0.9-301.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap quiet

mitigations
===========
-/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages
-/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown
-/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization
+/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: __user pointer sanitization
-/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown

params
======
-guest_cpus: 1
+guest_cpus: 3
-host_cpus: 1
+host_cpus: 3</pre></span></div></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><textarea style="position: absolute; left: -9999px;"  id="env-World-3-raw">[{&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.6.13-100.fc30.x86_64\n#1 SMP Fri May 15 00:36:06 UTC 2020\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages\n/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 3\nguest_mem_m: 2048\nhost_cpus: 3\nhugepage_kb: 1\nnuma_nodes: 1&#39;}, {&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.6.13-100.fc30.x86_64\n#1 SMP Fri May 15 00:36:06 UTC 2020\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages\n/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 3\nguest_mem_m: 2048\nhost_cpus: 3\nhugepage_kb: 1\nnuma_nodes: 1&#39;}]</textarea><div class="tooltip" onclick="elementValueToClipboard('env-World-3-raw')">D2<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>
general
=======
+This is a testing FILTERED value that is only present in the diff but should not be present in the RAW (click and ctrl+v) value

params
======
-guest_cpus: 1
+guest_cpus: 3
-host_cpus: 1
+host_cpus: 3</pre></span></div>,<div class="tooltip" onclick="elementValueToClipboard('env-World-3-raw')">C-1<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>+World PROFILE MISSING IN SRC</pre></span></div></td>
        <td style='background-color: rgba(255, 102.0, 102.0)'><textarea style="position: absolute; left: -9999px;"  id="env-World-4-raw">[{&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.6.13-100.fc30.x86_64\n#1 SMP Fri May 15 00:36:06 UTC 2020\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages\n/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 1\nguest_mem_m: 2048\nhost_cpus: 1\nhugepage_kb: 1\nnuma_nodes: 1&#39;}, {&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.6.13-100.fc30.x86_64\n#1 SMP Fri May 15 00:36:06 UTC 2020\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages\n/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 1\nguest_mem_m: 2048\nhost_cpus: 1\nhugepage_kb: 1\nnuma_nodes: 1&#39;}]</textarea><div class="tooltip" onclick="elementValueToClipboard('env-World-4-raw')">B1<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>
general
=======
+This is a testing FILTERED value that is only present in the diff but should not be present in the RAW (click and ctrl+v) value</pre></span></div>,<div class="tooltip" onclick="elementValueToClipboard('env-World-4-raw')">C-1<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>+World PROFILE MISSING IN SRC</pre></span></div></td>
        <td style='background-color: rgba(255, 153.0, 153.0)'><textarea style="position: absolute; left: -9999px;"  id="env-World-5-raw">[{&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.6.13-100.fc30.x86_64\n#1 SMP Fri May 15 00:36:06 UTC 2020\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages\n/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 1\nguest_mem_m: 2048\nhost_cpus: 1\nhugepage_kb: 1\nnuma_nodes: 1&#39;}]</textarea><div class="tooltip" onclick="elementValueToClipboard('env-World-5-raw')">A0<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre></pre></span></div></td>
    </tr><tr>
        <td>Localhost env</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost-1-raw">[{&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.0.9-301.fc30.x86_64\n#1 SMP Tue Apr 23 23:57:35 UTC 2019\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.0.9-301.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 3\nguest_mem_m: 2048\nhost_cpus: 3\nhugepage_kb: 1\nnuma_nodes: 1&#39;, &#39;persistent&#39;: {&#39;rc_local&#39;: &#39;#!/bin/bash\necho Testing rc.local&#39;}}]</textarea><div class="tooltip" onclick="elementValueToClipboard('env-Localhost-1-raw')">E3<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>
kernel
======
-5.6.13-100.fc30.x86_64
-#1 SMP Fri May 15 00:36:06 UTC 2020
+5.0.9-301.fc30.x86_64
+#1 SMP Tue Apr 23 23:57:35 UTC 2019
-BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet
+BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.0.9-301.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap quiet

mitigations
===========
-/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages
-/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown
-/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization
+/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: __user pointer sanitization
-/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown

params
======
-guest_cpus: 1
+guest_cpus: 3
-host_cpus: 1
+host_cpus: 3</pre></span></div></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost-2-raw">[{&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.0.9-301.fc30.x86_64\n#1 SMP Tue Apr 23 23:57:35 UTC 2019\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.0.9-301.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 3\nguest_mem_m: 2048\nhost_cpus: 3\nhugepage_kb: 1\nnuma_nodes: 1&#39;, &#39;persistent&#39;: {&#39;rc_local&#39;: &#39;#!/bin/bash\necho Testing rc.local&#39;}}]</textarea><div class="tooltip" onclick="elementValueToClipboard('env-Localhost-2-raw')">E3<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>
kernel
======
-5.6.13-100.fc30.x86_64
-#1 SMP Fri May 15 00:36:06 UTC 2020
+5.0.9-301.fc30.x86_64
+#1 SMP Tue Apr 23 23:57:35 UTC 2019
-BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet
+BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.0.9-301.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap quiet

mitigations
===========
-/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages
-/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown
-/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization
+/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: __user pointer sanitization
-/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown

params
======
-guest_cpus: 1
+guest_cpus: 3
-host_cpus: 1
+host_cpus: 3</pre></span></div></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost-3-raw">[{&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.6.13-100.fc30.x86_64\n#1 SMP Fri May 15 00:36:06 UTC 2020\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages\n/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 3\nguest_mem_m: 2048\nhost_cpus: 3\nhugepage_kb: 1\nnuma_nodes: 1&#39;}, {&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.6.13-100.fc30.x86_64\n#1 SMP Fri May 15 00:36:06 UTC 2020\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages\n/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 3\nguest_mem_m: 2048\nhost_cpus: 3\nhugepage_kb: 1\nnuma_nodes: 1&#39;}]</textarea><div class="tooltip" onclick="elementValueToClipboard('env-Localhost-3-raw')">D2<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>
params
======
-guest_cpus: 1
+guest_cpus: 3
-host_cpus: 1
+host_cpus: 3

List of missing keys
=====================
-persistent MISSING IN DST</pre></span></div>,<div class="tooltip" onclick="elementValueToClipboard('env-Localhost-3-raw')">C-1<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>+Localhost PROFILE MISSING IN SRC</pre></span></div></td>
        <td style='background-color: rgba(255, 102.0, 102.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost-4-raw">[{&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.6.13-100.fc30.x86_64\n#1 SMP Fri May 15 00:36:06 UTC 2020\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages\n/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 1\nguest_mem_m: 2048\nhost_cpus: 1\nhugepage_kb: 1\nnuma_nodes: 1&#39;}, {&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.6.13-100.fc30.x86_64\n#1 SMP Fri May 15 00:36:06 UTC 2020\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages\n/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 1\nguest_mem_m: 2048\nhost_cpus: 1\nhugepage_kb: 1\nnuma_nodes: 1&#39;}]</textarea><div class="tooltip" onclick="elementValueToClipboard('env-Localhost-4-raw')">B1<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>
List of missing keys
=====================
-persistent MISSING IN DST</pre></span></div>,<div class="tooltip" onclick="elementValueToClipboard('env-Localhost-4-raw')">C-1<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>+Localhost PROFILE MISSING IN SRC</pre></span></div></td>
        <td style='background-color: rgba(255, 153.0, 153.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost-5-raw">[{&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.6.13-100.fc30.x86_64\n#1 SMP Fri May 15 00:36:06 UTC 2020\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages\n/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 1\nguest_mem_m: 2048\nhost_cpus: 1\nhugepage_kb: 1\nnuma_nodes: 1&#39;, &#39;persistent&#39;: {&#39;rc_local&#39;: &#39;#!/bin/bash\necho Testing rc.local&#39;}}]</textarea><div class="tooltip" onclick="elementValueToClipboard('env-Localhost-5-raw')">A0<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre></pre></span></div></td>
    </tr><tr>
        <td>Localhost2 env</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost2-1-raw">[{&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.0.9-301.fc30.x86_64\n#1 SMP Tue Apr 23 23:57:35 UTC 2019\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.0.9-301.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 3\nguest_mem_m: 2048\nhost_cpus: 3\nhugepage_kb: 1\nnuma_nodes: 1&#39;, &#39;persistent&#39;: {&#39;rc_local&#39;: &#39;#!/bin/bash\necho Testing rc.local&#39;}}]</textarea><div class="tooltip" onclick="elementValueToClipboard('env-Localhost2-1-raw')">A-1<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>+Localhost2 PROFILE MISSING IN SRC</pre></span></div></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost2-2-raw"></textarea></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost2-3-raw"></textarea></td>
        <td style='background-color: rgba(255, 102.0, 102.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost2-4-raw"></textarea></td>
        <td style='background-color: rgba(255, 153.0, 153.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost2-5-raw"></textarea></td>
    </tr><tr>
        <td>Localhost3 env</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost3-1-raw"></textarea></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost3-2-raw"></textarea></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost3-3-raw"></textarea></td>
        <td style='background-color: rgba(255, 102.0, 102.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost3-4-raw">[{&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.6.13-100.fc30.x86_64\n#1 SMP Fri May 15 00:36:06 UTC 2020\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages\n/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 1\nguest_mem_m: 2048\nhost_cpus: 1\nhugepage_kb: 1\nnuma_nodes: 1&#39;}, {&#39;general&#39;: &#39;Name:foo\nDistro:Fedora-30&#39;, &#39;kernel&#39;: &#39;5.6.13-100.fc30.x86_64\n#1 SMP Fri May 15 00:36:06 UTC 2020\nx86_64\nGNU/Linux\nBOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.6.13-100.fc30.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet\n&#39;, &#39;mitigations&#39;: &#39;/sys/devices/system/cpu/vulnerabilities/itlb_multihit:KVM: Mitigation: Split huge pages\n/sys/devices/system/cpu/vulnerabilities/l1tf:Mitigation: PTE Inversion; VMX: flush not necessary, SMT disabled\n/sys/devices/system/cpu/vulnerabilities/mds:Mitigation: Clear CPU buffers; SMT Host state unknown\n/sys/devices/system/cpu/vulnerabilities/meltdown:Mitigation: PTI\n/sys/devices/system/cpu/vulnerabilities/spec_store_bypass:Mitigation: Speculative Store Bypass disabled via prctl and seccomp\n/sys/devices/system/cpu/vulnerabilities/spectre_v1:Mitigation: usercopy/swapgs barriers and __user pointer sanitization\n/sys/devices/system/cpu/vulnerabilities/spectre_v2:Mitigation: Full generic retpoline, IBPB: conditional, IBRS_FW, STIBP: disabled, RSB filling\n/sys/devices/system/cpu/vulnerabilities/tsx_async_abort:Mitigation: Clear CPU buffers; SMT Host state unknown\n&#39;, &#39;rpm&#39;: &#39;abrt-addon-ccpp-2.12.0-2.fc30.x86_64\nabrt-addon-coredump-helper-2.12.0-2.fc30.x86_64\nabrt-addon-kerneloops-2.12.0-2.fc30.x86_64\nabrt-addon-pstoreoops-2.12.0-2.fc30.x86_64\nabrt-addon-vmcore-2.12.0-2.fc30.x86_64\nabrt-addon-xorg-2.12.0-2.fc30.x86_64\nabrt-cli-2.12.0-2.fc30.x86_64\nabrt-dbus-2.12.0-2.fc30.x86_64\nabrt-libs-2.12.0-2.fc30.x86_64\nabrt-plugin-bodhi-2.12.0-2.fc30.x86_64\nabrt-retrace-client-2.12.0-2.fc30.x86_64\nabrt-tui-2.12.0-2.fc30.x86_64\nabrt-2.12.0-2.fc30.x86_64\nacl-2.2.53-3.fc30.x86_64\nadcli-0.8.2-3.fc30.x86_64\nalternatives-1.11-4.fc30.x86_64\nannobin-8.71-4.fc30.x86_64\nansible-2.9.9-1.fc30.noarch\natmel-firmware-1.3-20.fc30.noarch\nattr-2.4.48-5.fc30.x86_64\nat-3.1.23-2.fc30.x86_64\naudit-libs-3.0-0.7.20190326git03e7489.fc30.x86_64\naudit-3.0-0.7.20190326git03e7489.fc30.x86_64\naugeas-libs-1.11.0-4.fc30.x86_64\nauthselect-libs-1.0.3-1.fc30.x86_64\nauthselect-1.0.3-1.fc30.x86_64\navahi-libs-0.7-18.fc30.x86_64\nbasesystem-11-7.fc30.noarch\nbash-completion-2.8-6.fc30.noarch\nbash-5.0.2-1.fc30.x86_64\nbc-1.07.1-8.fc30.x86_64\nbind-export-libs-9.11.5-13.P4.fc30.x86_64\nbind-libs-lite-9.11.5-13.P4.fc30.x86_64\nbind-libs-9.11.5-13.P4.fc30.x86_64\nbind-license-9.11.5-13.P4.fc30.noarch\nbind-utils-9.11.5-13.P4.fc30.x86_64\nbinutils-2.31.1-37.fc30.x86_64\nbluez-libs-5.50-6.fc30.x86_64\nbluez-5.50-6.fc30.x86_64\nboost-regex-1.69.0-6.fc30.x86_64\nbridge-utils-1.6-3.fc30.x86_64\nbrotli-1.0.7-3.fc30.x86_64\nbtrfs-progs-4.20.2-1.fc30.x86_64\nbzip2-libs-1.0.6-29.fc30.x86_64\nbzip2-1.0.6-29.fc30.x86_64\nb43-fwcutter-019-15.fc30.x86_64\nb43-openfwwf-5.2-21.fc30.noarch\nca-certificates-2018.2.26-3.fc30.noarch\ncairo-gobject-1.16.0-4.fc30.x86_64\ncairo-1.16.0-4.fc30.x86_64\nc-ares-1.15.0-3.fc30.x86_64\ncifs-utils-6.8-4.fc30.x86_64\ncockpit-bridge-191-1.fc30.x86_64\ncockpit-networkmanager-191-1.fc30.noarch\ncockpit-packagekit-191-1.fc30.noarch\ncockpit-selinux-191-1.fc30.noarch\ncockpit-storaged-191-1.fc30.noarch\ncockpit-system-191-1.fc30.noarch\ncockpit-ws-191-1.fc30.x86_64\ncockpit-191-1.fc30.x86_64\ncomps-extras-24-5.fc30.noarch\ncoreutils-common-8.31-1.fc30.x86_64\ncoreutils-8.31-1.fc30.x86_64\ncpio-2.12-10.fc30.x86_64\ncpp-9.0.1-0.10.fc30.x86_64\ncracklib-dicts-2.9.6-19.fc30.x86_64\ncracklib-2.9.6-19.fc30.x86_64\ncrda-3.18_2018.05.31-6.fc30.x86_64\ncronie-anacron-1.5.4-1.fc30.x86_64\ncronie-1.5.4-1.fc30.x86_64\ncrontabs-1.11-18.20150630git.fc30.noarch\ncrypto-policies-20190211-2.gite3eacfc.fc30.noarch\ncryptsetup-libs-2.1.0-3.fc30.x86_64\ncryptsetup-2.1.0-3.fc30.x86_64\nctags-5.8-25.fc30.x86_64\ncups-libs-2.2.11-1.fc30.x86_64\ncurl-7.64.0-6.fc30.x86_64\ncyrus-sasl-gssapi-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-lib-2.1.27-0.6rc7.fc30.x86_64\ncyrus-sasl-plain-2.1.27-0.6rc7.fc30.x86_64\ndbus-broker-20-3.fc30.x86_64\ndbus-common-1.12.12-7.fc30.noarch\ndbus-glib-0.110-3.fc29.x86_64\ndbus-libs-1.12.12-7.fc30.x86_64\ndbus-1.12.12-7.fc30.x86_64\ndbxtool-8-9.fc30.x86_64\ndejavu-fonts-common-2.37-1.fc30.noarch\ndejavu-sans-fonts-2.37-1.fc30.noarch\ndeltarpm-3.6-29.fc30.x86_64\ndesktop-file-utils-0.23-10.fc30.x86_64\ndevice-mapper-event-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-event-1.02.154-3.fc30.x86_64\ndevice-mapper-libs-1.02.154-3.fc30.x86_64\ndevice-mapper-multipath-libs-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-multipath-0.7.9-6.git2df6110.fc30.x86_64\ndevice-mapper-persistent-data-0.7.6-4.fc30.x86_64\ndevice-mapper-1.02.154-3.fc30.x86_64\ndhcp-client-4.3.6-32.fc30.x86_64\ndhcp-common-4.3.6-32.fc30.noarch\ndhcp-libs-4.3.6-32.fc30.x86_64\ndiffutils-3.7-2.fc30.x86_64\ndmidecode-3.2-2.fc30.x86_64\ndnf-data-4.2.2-2.fc30.noarch\ndnf-plugins-core-4.0.6-1.fc30.noarch\ndnf-yum-4.2.2-2.fc30.noarch\ndnf-4.2.2-2.fc30.noarch\ndnsmasq-2.80-4.fc30.x86_64\ndosfstools-4.1-8.fc30.x86_64\ndos2unix-7.4.0-6.fc30.x86_64\ndracut-config-rescue-049-26.git20181204.fc30.x86_64\ndracut-network-049-26.git20181204.fc30.x86_64\ndracut-squash-049-26.git20181204.fc30.x86_64\ndracut-049-26.git20181204.fc30.x86_64\ndwz-0.12-10.fc30.x86_64\nebtables-2.0.10-31.fc30.x86_64\ned-1.14.2-6.fc30.x86_64\nefibootmgr-16-5.fc30.x86_64\nefi-filesystem-4-2.fc30.noarch\nefi-srpm-macros-4-2.fc30.noarch\nefivar-libs-37-1.fc30.x86_64\nelfutils-default-yama-scope-0.176-1.fc30.noarch\nelfutils-libelf-0.176-1.fc30.x86_64\nelfutils-libs-0.176-1.fc30.x86_64\nelfutils-0.176-1.fc30.x86_64\nemacs-filesystem-26.1-8.fc30.noarch\nethtool-4.17-3.fc30.x86_64\nexpat-2.2.6-2.fc30.x86_64\ne2fsprogs-libs-1.44.6-1.fc30.x86_64\ne2fsprogs-1.44.6-1.fc30.x86_64\nfedora-gpg-keys-30-1.noarch\nfedora-logos-30.0.1-1.fc30.x86_64\nfedora-release-common-30-1.noarch\nfedora-release-notes-28.01-3.fc30.noarch\nfedora-release-server-30-1.noarch\nfedora-repos-30-1.noarch\nfile-libs-5.36-2.fc30.x86_64\nfilesystem-3.10-1.fc30.x86_64\nfile-5.36-2.fc30.x86_64\nfindutils-4.6.0-22.fc30.x86_64\nfio-3.19-1.x86_64\nfipscheck-lib-1.5.0-6.fc30.x86_64\nfipscheck-1.5.0-6.fc30.x86_64\nfirewalld-filesystem-0.6.3-2.fc30.noarch\nfirewalld-0.6.3-2.fc30.noarch\nfontconfig-2.13.1-6.fc30.x86_64\nfontpackages-filesystem-1.44-24.fc30.noarch\nfpaste-0.3.9.2-2.fc30.noarch\nfpc-srpm-macros-1.2-1.fc30.noarch\nfprintd-pam-0.8.1-4.fc30.x86_64\nfprintd-0.8.1-4.fc30.x86_64\nfreetype-2.9.1-7.fc30.x86_64\nfstrm-0.4.0-3.fc30.x86_64\nfuse-libs-2.9.9-3.fc30.x86_64\ngawk-4.2.1-6.fc30.x86_64\ngcc-c++-9.0.1-0.10.fc30.x86_64\ngcc-9.0.1-0.10.fc30.x86_64\ngc-7.6.4-5.fc30.x86_64\ngdb-headless-8.2.91.20190401-23.fc30.x86_64\ngdbm-libs-1.18-4.fc30.x86_64\ngdbm-1.18-4.fc30.x86_64\ngdisk-1.0.4-4.fc30.x86_64\ngdk-pixbuf2-2.38.1-1.fc30.x86_64\nGeoIP-GeoLite-data-2018.06-3.fc30.noarch\nGeoIP-1.6.12-5.fc30.x86_64\ngettext-libs-0.19.8.1-18.fc30.x86_64\ngettext-0.19.8.1-18.fc30.x86_64\nghc-srpm-macros-1.4.2-9.fc30.noarch\nglibc-all-langpacks-2.29-9.fc30.x86_64\nglibc-common-2.29-9.fc30.x86_64\nglibc-devel-2.29-9.fc30.x86_64\nglibc-headers-2.29-9.fc30.x86_64\nglibc-2.29-9.fc30.x86_64\nglib-networking-2.60.1-2.fc30.x86_64\nglib2-2.60.1-2.fc30.x86_64\ngmp-6.1.2-10.fc30.x86_64\ngnat-srpm-macros-4-9.fc30.noarch\ngnupg2-2.2.13-1.fc30.x86_64\ngnutls-3.6.7-1.fc30.x86_64\ngobject-introspection-1.60.1-2.fc30.x86_64\ngo-srpm-macros-2-19.fc30.noarch\ngpgme-1.12.0-1.fc30.x86_64\ngpg-pubkey-af0ede67-5e3bfc4a\ngpg-pubkey-cfc659b9-5b6eac67\ngrep-3.1-9.fc30.x86_64\ngroff-base-1.22.3-19.fc30.x86_64\ngrubby-8.40-30.fc30.x86_64\ngrub2-common-2.02-75.fc30.noarch\ngrub2-efi-x64-2.02-75.fc30.x86_64\ngrub2-tools-extra-2.02-75.fc30.x86_64\ngrub2-tools-minimal-2.02-75.fc30.x86_64\ngrub2-tools-2.02-75.fc30.x86_64\ngsettings-desktop-schemas-3.32.0-1.fc30.x86_64\ngssproxy-0.8.0-10.fc30.x86_64\nguile22-2.2.4-3.fc30.x86_64\ngzip-1.9-9.fc30.x86_64\nhostname-3.20-8.fc30.x86_64\nhunspell-en-US-0.20140811.1-14.fc30.noarch\nhunspell-1.7.0-2.fc30.x86_64\nhwdata-0.322-1.fc30.noarch\ncheckpolicy-2.9-1.fc30.x86_64\nchrony-3.4-2.fc30.x86_64\nima-evm-utils-1.1-5.fc30.x86_64\ninfo-6.6-1.fc30.x86_64\nipcalc-0.2.5-2.fc30.x86_64\niproute-tc-5.0.0-2.fc30.x86_64\niproute-5.0.0-2.fc30.x86_64\nipset-libs-6.38-2.fc30.x86_64\nipset-6.38-2.fc30.x86_64\niptables-libs-1.8.0-5.fc30.x86_64\niptables-1.8.0-5.fc30.x86_64\niptstate-2.2.6-8.fc30.x86_64\niputils-20180629-4.fc30.x86_64\nipw2100-firmware-1.3-24.fc30.noarch\nipw2200-firmware-3.1-17.fc30.noarch\nirqbalance-1.4.0-3.fc30.x86_64\niscsi-initiator-utils-iscsiuio-6.2.0.876-8.gitf3c8e90.fc30.x86_64\niscsi-initiator-utils-6.2.0.876-8.gitf3c8e90.fc30.x86_64\nisl-0.16.1-8.fc30.x86_64\nisns-utils-libs-0.97-8.fc30.x86_64\niwl100-firmware-39.31.5.1-94.fc30.noarch\niwl1000-firmware-39.31.5.1-94.fc30.noarch\niwl105-firmware-18.168.6.1-94.fc30.noarch\niwl135-firmware-18.168.6.1-94.fc30.noarch\niwl2000-firmware-18.168.6.1-94.fc30.noarch\niwl2030-firmware-18.168.6.1-94.fc30.noarch\niwl3160-firmware-25.30.13.0-94.fc30.noarch\niwl3945-firmware-15.32.2.9-94.fc30.noarch\niwl4965-firmware-228.61.2.24-94.fc30.noarch\niwl5000-firmware-8.83.5.1_1-94.fc30.noarch\niwl5150-firmware-8.24.2.2-94.fc30.noarch\niwl6000-firmware-9.221.4.1-94.fc30.noarch\niwl6000g2a-firmware-18.168.6.1-94.fc30.noarch\niwl6000g2b-firmware-18.168.6.1-94.fc30.noarch\niwl6050-firmware-41.28.5.1-94.fc30.noarch\niwl7260-firmware-25.30.13.0-94.fc30.noarch\niw-5.0.1-1.fc30.x86_64\njansson-2.12-2.fc30.x86_64\njimtcl-0.78-2.fc30.x86_64\njitterentropy-2.1.2-4.fc30.x86_64\njson-c-0.13.1-4.fc30.x86_64\njson-glib-1.4.4-2.fc30.x86_64\njwhois-4.0-56.fc30.x86_64\nkbd-legacy-2.0.4-13.fc30.noarch\nkbd-misc-2.0.4-13.fc30.noarch\nkbd-2.0.4-13.fc30.x86_64\nkernel-core-5.0.9-301.fc30.x86_64\nkernel-core-5.6.13-100.fc30.x86_64\nkernel-headers-5.6.11-100.fc30.x86_64\nkernel-modules-5.0.9-301.fc30.x86_64\nkernel-modules-5.6.13-100.fc30.x86_64\nkernel-tools-libs-5.6.7-100.fc30.x86_64\nkernel-tools-5.6.7-100.fc30.x86_64\nkernel-5.0.9-301.fc30.x86_64\nkernel-5.6.13-100.fc30.x86_64\nkexec-tools-2.0.19-1.fc30.x86_64\nkeyutils-libs-1.6-2.fc30.x86_64\nkeyutils-1.6-2.fc30.x86_64\nkmod-libs-25-5.fc30.x86_64\nkmod-25-5.fc30.x86_64\nkpartx-0.7.9-6.git2df6110.fc30.x86_64\nkrb5-libs-1.17-4.fc30.x86_64\nless-530-4.fc30.x86_64\nlibacl-2.2.53-3.fc30.x86_64\nlibaio-0.3.111-4.fc30.x86_64\nlibappstream-glib-0.7.15-1.fc30.x86_64\nlibargon2-20161029-8.fc30.x86_64\nlibarchive-3.3.3-6.fc30.x86_64\nlibassuan-2.5.2-2.fc30.x86_64\nlibatasmart-0.19-16.fc30.x86_64\nlibatomic_ops-7.6.6-2.fc30.x86_64\nlibattr-2.4.48-5.fc30.x86_64\nlibbabeltrace-1.5.6-2.fc30.x86_64\nlibbasicobjects-0.1.1-42.fc30.x86_64\nlibblkid-2.33.2-1.fc30.x86_64\nlibblockdev-crypto-2.21-2.fc30.x86_64\nlibblockdev-fs-2.21-2.fc30.x86_64\nlibblockdev-loop-2.21-2.fc30.x86_64\nlibblockdev-mdraid-2.21-2.fc30.x86_64\nlibblockdev-part-2.21-2.fc30.x86_64\nlibblockdev-swap-2.21-2.fc30.x86_64\nlibblockdev-utils-2.21-2.fc30.x86_64\nlibblockdev-2.21-2.fc30.x86_64\nlibbytesize-1.4-2.fc30.x86_64\nlibcap-ng-0.7.9-7.fc30.x86_64\nlibcap-2.26-5.fc30.x86_64\nlibcollection-0.7.0-42.fc30.x86_64\nlibcom_err-1.44.6-1.fc30.x86_64\nlibcomps-0.1.11-1.fc30.x86_64\nlibcroco-0.6.13-1.fc30.x86_64\nlibcurl-7.64.0-6.fc30.x86_64\nlibdaemon-0.14-17.fc30.x86_64\nlibdatrie-0.2.9-9.fc30.x86_64\nlibdb-utils-5.3.28-37.fc30.x86_64\nlibdb-5.3.28-37.fc30.x86_64\nlibdhash-0.5.0-42.fc30.x86_64\nlibdnf-0.28.1-1.fc30.x86_64\nlibedit-3.1-26.20181209cvs.fc30.x86_64\nlibertas-usb8388-firmware-20190312-94.fc30.noarch\nlibestr-0.1.9-12.fc30.x86_64\nlibevent-2.1.8-5.fc30.x86_64\nlibev-4.25-8.fc30.x86_64\nlibfastjson-0.99.8-4.fc30.x86_64\nlibfdisk-2.33.2-1.fc30.x86_64\nlibffi-3.1-19.fc30.x86_64\nlibfprint-0.8.2-3.fc30.x86_64\nlibgcc-9.0.1-0.10.fc30.x86_64\nlibgcrypt-1.8.4-3.fc30.x86_64\nlibgomp-9.0.1-0.10.fc30.x86_64\nlibgpg-error-1.33-2.fc30.x86_64\nlibgudev-232-5.fc30.x86_64\nlibicu-63.1-2.fc30.x86_64\nlibidn2-2.1.1a-1.fc30.x86_64\nlibini_config-1.3.1-42.fc30.x86_64\nlibipa_hbac-2.1.0-2.fc30.x86_64\nlibipt-2.0-2.fc30.x86_64\nlibkcapi-hmaccalc-1.1.4-1.fc30.x86_64\nlibkcapi-1.1.4-1.fc30.x86_64\nlibksba-1.3.5-9.fc30.x86_64\nlibldb-1.5.4-1.fc30.x86_64\nlibmbim-utils-1.18.0-2.fc30.x86_64\nlibmbim-1.18.0-2.fc30.x86_64\nlibmetalink-0.1.3-8.fc30.x86_64\nlibmnl-1.0.4-9.fc30.x86_64\nlibmodman-2.0.1-19.fc30.x86_64\nlibmodulemd1-1.8.6-3.fc30.x86_64\nlibmount-2.33.2-1.fc30.x86_64\nlibmpc-1.1.0-3.fc30.x86_64\nlibndp-1.7-3.fc30.x86_64\nlibnetfilter_conntrack-1.0.7-2.fc30.x86_64\nlibnfnetlink-1.0.1-15.fc30.x86_64\nlibnfsidmap-2.3.3-7.rc2.fc30.x86_64\nlibnftnl-1.1.1-6.fc30.x86_64\nlibnghttp2-1.37.0-1.fc30.x86_64\nlibnl3-cli-3.4.0-8.fc30.x86_64\nlibnl3-3.4.0-8.fc30.x86_64\nlibnsl2-1.2.0-4.20180605git4a062cf.fc30.x86_64\nlibpath_utils-0.2.1-42.fc30.x86_64\nlibpcap-1.9.0-3.fc30.x86_64\nlibpipeline-1.5.1-2.fc30.x86_64\nlibpkgconf-1.6.1-1.fc30.x86_64\nlibpng-1.6.36-1.fc30.x86_64\nlibproxy-0.4.15-13.fc30.x86_64\nlibpsl-0.20.2-6.fc30.x86_64\nlibpwquality-1.4.0-12.fc30.x86_64\nlibqmi-utils-1.22.0-2.fc30.x86_64\nlibqmi-1.22.0-2.fc30.x86_64\nlibref_array-0.1.5-42.fc30.x86_64\nlibreport-cli-2.10.0-1.fc30.x86_64\nlibreport-fedora-2.10.0-1.fc30.x86_64\nlibreport-filesystem-2.10.0-1.fc30.noarch\nlibreport-plugin-bugzilla-2.10.0-1.fc30.x86_64\nlibreport-plugin-kerneloops-2.10.0-1.fc30.x86_64\nlibreport-plugin-logger-2.10.0-1.fc30.x86_64\nlibreport-plugin-systemd-journal-2.10.0-1.fc30.x86_64\nlibreport-plugin-ureport-2.10.0-1.fc30.x86_64\nlibreport-web-2.10.0-1.fc30.x86_64\nlibreport-2.10.0-1.fc30.x86_64\nlibrepo-1.9.6-2.fc30.x86_64\nlibseccomp-2.4.0-0.fc30.x86_64\nlibselinux-utils-2.9-1.fc30.x86_64\nlibselinux-2.9-1.fc30.x86_64\nlibsemanage-2.9-1.fc30.x86_64\nlibsepol-2.9-1.fc30.x86_64\nlibsigsegv-2.11-7.fc30.x86_64\nlibsmartcols-2.33.2-1.fc30.x86_64\nlibsmbclient-4.10.2-0.fc30.x86_64\nlibsodium-1.0.18-1.fc30.x86_64\nlibsolv-0.7.4-2.fc30.x86_64\nlibsoup-2.66.1-2.fc30.x86_64\nlibssh-0.8.7-1.fc30.x86_64\nlibsss_autofs-2.1.0-2.fc30.x86_64\nlibsss_certmap-2.1.0-2.fc30.x86_64\nlibsss_idmap-2.1.0-2.fc30.x86_64\nlibsss_nss_idmap-2.1.0-2.fc30.x86_64\nlibsss_sudo-2.1.0-2.fc30.x86_64\nlibss-1.44.6-1.fc30.x86_64\nlibstdc++-devel-9.0.1-0.10.fc30.x86_64\nlibstdc++-9.0.1-0.10.fc30.x86_64\nlibstemmer-0-12.585svn.fc30.x86_64\nlibsysfs-2.1.0-26.fc30.x86_64\nlibtalloc-2.1.16-1.fc30.x86_64\nlibtar-1.2.20-17.fc30.x86_64\nlibtasn1-4.13-7.fc30.x86_64\nlibtdb-1.3.18-1.fc30.x86_64\nlibteam-1.28-2.fc30.x86_64\nlibtevent-0.9.39-1.fc30.x86_64\nlibthai-0.1.28-2.fc30.x86_64\nlibtirpc-1.1.4-2.rc2.fc30.1.x86_64\nlibtool-ltdl-2.4.6-29.fc30.x86_64\nlibudisks2-2.8.2-1.fc30.x86_64\nlibunistring-0.9.10-5.fc30.x86_64\nlibusbx-1.0.22-2.fc30.x86_64\nlibuser-0.62-20.fc30.x86_64\nlibutempter-1.1.6-16.fc30.x86_64\nlibuuid-2.33.2-1.fc30.x86_64\nlibverto-libev-0.3.0-7.fc30.x86_64\nlibverto-0.3.0-7.fc30.x86_64\nlibwbclient-4.10.2-0.fc30.x86_64\nlibXau-1.0.9-1.fc30.x86_64\nlibxcb-1.13.1-2.fc30.x86_64\nlibxcrypt-compat-4.4.4-2.fc30.x86_64\nlibxcrypt-devel-4.4.4-2.fc30.x86_64\nlibxcrypt-4.4.4-2.fc30.x86_64\nlibXext-1.3.3-11.fc30.x86_64\nlibxkbcommon-0.8.3-1.fc30.x86_64\nlibxml2-2.9.9-2.fc30.x86_64\nlibXrender-0.9.10-9.fc30.x86_64\nlibX11-common-1.6.7-1.fc30.noarch\nlibX11-1.6.7-1.fc30.x86_64\nlibyaml-0.2.1-5.fc30.x86_64\nlibzstd-1.3.8-2.fc30.x86_64\nlinux-atm-libs-2.5.1-21.fc29.x86_64\nlinux-firmware-whence-20190312-94.fc30.noarch\nlinux-firmware-20190312-94.fc30.noarch\nlmdb-libs-0.9.23-2.fc30.x86_64\nlogrotate-3.15.0-2.fc30.x86_64\nlsof-4.91-3.fc30.x86_64\nlua-libs-5.3.5-5.fc30.x86_64\nlvm2-libs-2.02.183-3.fc30.x86_64\nlvm2-2.02.183-3.fc30.x86_64\nlzo-2.08-15.fc30.x86_64\nlz4-libs-1.8.3-2.fc30.x86_64\nlz4-1.8.3-2.fc30.x86_64\nmailcap-2.1.48-5.fc30.noarch\nmake-4.2.1-14.fc30.x86_64\nman-db-2.8.4-4.fc30.x86_64\nman-pages-4.16-4.fc30.noarch\nmcelog-153-4.fc30.x86_64\nmdadm-4.1-rc2.0.3.fc30.x86_64\nmicrocode_ctl-2.1-27.fc30.x86_64\nmlocate-0.26-23.fc30.x86_64\nModemManager-glib-1.10.0-1.fc30.x86_64\nModemManager-1.10.0-1.fc30.x86_64\nmokutil-0.3.0-11.fc30.x86_64\nmozjs60-60.4.0-5.fc30.x86_64\nmpfr-3.1.6-4.fc30.x86_64\nmtr-0.92-4.fc30.x86_64\nnano-4.0-2.fc30.x86_64\nncurses-base-6.1-10.20180923.fc30.noarch\nncurses-libs-6.1-10.20180923.fc30.x86_64\nncurses-6.1-10.20180923.fc30.x86_64\nnettle-3.4.1rc1-2.fc30.x86_64\nnet-tools-2.0-0.54.20160912git.fc30.x86_64\nNetworkManager-bluetooth-1.16.0-1.fc30.x86_64\nNetworkManager-libnm-1.16.0-1.fc30.x86_64\nNetworkManager-team-1.16.0-1.fc30.x86_64\nNetworkManager-wifi-1.16.0-1.fc30.x86_64\nNetworkManager-wwan-1.16.0-1.fc30.x86_64\nNetworkManager-1.16.0-1.fc30.x86_64\nnfs-utils-2.3.3-7.rc2.fc30.x86_64\nnftables-0.9.0-5.fc30.x86_64\nnim-srpm-macros-2-1.fc30.noarch\nnmap-ncat-7.70-6.fc30.x86_64\nnpth-1.6-2.fc30.x86_64\nnspr-4.21.0-1.fc30.x86_64\nnss-softokn-freebl-3.43.0-1.fc30.x86_64\nnss-softokn-3.43.0-1.fc30.x86_64\nnss-sysinit-3.43.0-1.fc30.x86_64\nnss-util-3.43.0-1.fc30.x86_64\nnss-3.43.0-1.fc30.x86_64\nntfsprogs-2017.3.23-11.fc30.x86_64\nntfs-3g-2017.3.23-11.fc30.x86_64\nnumactl-libs-2.0.12-2.fc30.x86_64\nnumactl-2.0.12-2.fc30.x86_64\nocaml-srpm-macros-5-5.fc30.noarch\nopenblas-srpm-macros-2-5.fc30.noarch\nopenldap-2.4.47-1.fc30.x86_64\nopensc-0.19.0-6.fc30.x86_64\nopenssh-clients-7.9p1-5.fc30.x86_64\nopenssh-server-7.9p1-5.fc30.x86_64\nopenssh-7.9p1-5.fc30.x86_64\nopenssl-libs-1.1.1b-3.fc30.x86_64\nopenssl-pkcs11-0.4.10-1.fc30.x86_64\nopenssl-1.1.1b-3.fc30.x86_64\nos-prober-1.74-8.fc30.x86_64\nPackageKit-glib-1.1.12-5.fc30.x86_64\nPackageKit-1.1.12-5.fc30.x86_64\npam_krb5-2.4.13-13.fc30.x86_64\npam-1.3.1-17.fc30.x86_64\nparted-3.2-40.fc30.x86_64\npasswdqc-lib-1.3.0-14.fc30.x86_64\npasswdqc-1.3.0-14.fc30.x86_64\npasswd-0.80-5.fc30.x86_64\npbench-agent-0.69.3-1g958aeba4.noarch\npbench-perl-common-sense-3.74-1.x86_64\npbench-perl-Types-Serialiser-1.0-1.noarch\npbench-sysstat-12.0.3-1.x86_64\npciutils-libs-3.6.2-2.fc30.x86_64\npciutils-3.6.2-2.fc30.x86_64\npcre2-10.32-9.fc30.x86_64\npcre-8.43-1.fc30.x86_64\npcsc-lite-ccid-1.4.30-2.fc30.x86_64\npcsc-lite-libs-1.8.25-1.fc30.x86_64\npcsc-lite-1.8.25-1.fc30.x86_64\nperf-5.6.7-100.fc30.x86_64\nperl-Algorithm-Diff-1.1903-12.fc30.noarch\nperl-Archive-Tar-2.32-2.fc30.noarch\nperl-Archive-Zip-1.65-1.fc30.noarch\nperl-Attribute-Handlers-1.01-444.fc30.noarch\nperl-autodie-2.32-1.fc30.noarch\nperl-B-Debug-1.26-419.fc30.noarch\nperl-bignum-0.51-2.fc30.noarch\nperl-Carp-1.50-418.fc30.noarch\nperl-Compress-Bzip2-2.26-10.fc30.x86_64\nperl-Compress-Raw-Bzip2-2.084-2.fc30.x86_64\nperl-Compress-Raw-Zlib-2.084-2.fc30.x86_64\nperl-Config-Perl-V-0.31-2.fc30.noarch\nperl-constant-1.33-419.fc30.noarch\nperl-CPAN-Meta-Requirements-2.140-419.fc30.noarch\nperl-CPAN-Meta-YAML-0.018-419.fc30.noarch\nperl-CPAN-Meta-2.150010-418.fc30.noarch\nperl-CPAN-2.26-1.fc30.noarch\nperl-Data-Dumper-2.173-3.fc30.x86_64\nperl-Data-OptList-0.110-9.fc30.noarch\nperl-Data-Section-0.200007-6.fc30.noarch\nperl-Data-UUID-1.224-1.fc30.x86_64\nperl-DB_File-1.853-1.fc30.x86_64\nperl-Devel-Peek-1.27-444.fc30.x86_64\nperl-Devel-PPPort-3.51-1.fc30.x86_64\nperl-Devel-SelfStubber-1.06-444.fc30.noarch\nperl-Devel-Size-0.82-4.fc30.x86_64\nperl-devel-5.28.2-444.fc30.x86_64\nperl-Digest-MD5-2.55-418.fc30.x86_64\nperl-Digest-SHA-6.02-5.fc30.x86_64\nperl-Digest-1.17-418.fc30.noarch\nperl-Encode-devel-3.06-15.fc30.x86_64\nperl-Encode-Locale-1.05-12.fc30.noarch\nperl-Encode-3.06-15.fc30.x86_64\nperl-encoding-3.00-15.fc30.x86_64\nperl-Env-1.04-418.fc30.noarch\nperl-Errno-1.29-444.fc30.x86_64\nperl-experimental-0.022-1.fc30.noarch\nperl-Exporter-5.74-1.fc30.noarch\nperl-ExtUtils-CBuilder-0.280234-1.fc30.noarch\nperl-ExtUtils-Command-7.34-419.fc30.noarch\nperl-ExtUtils-Embed-1.35-444.fc30.noarch\nperl-ExtUtils-Install-2.14-419.fc30.noarch\nperl-ExtUtils-MakeMaker-7.34-419.fc30.noarch\nperl-ExtUtils-Manifest-1.72-1.fc30.noarch\nperl-ExtUtils-Miniperl-1.08-444.fc30.noarch\nperl-ExtUtils-MM-Utils-7.34-419.fc30.noarch\nperl-ExtUtils-ParseXS-3.39-419.fc30.noarch\nperl-File-Fetch-0.56-418.fc30.noarch\nperl-File-HomeDir-1.004-4.fc30.noarch\nperl-File-Path-2.16-2.fc30.noarch\nperl-File-Temp-0.230.900-2.fc30.noarch\nperl-File-Which-1.23-2.fc30.noarch\nperl-Filter-Simple-0.95-418.fc30.noarch\nperl-Filter-1.59-2.fc30.x86_64\nperl-Getopt-Long-2.51-1.fc30.noarch\nperl-HTTP-Tiny-0.076-2.fc30.noarch\nperl-Importer-0.025-4.fc30.noarch\nperl-inc-latest-0.500-12.fc30.noarch\nperl-interpreter-5.28.2-444.fc30.x86_64\nperl-IO-Compress-2.084-2.fc30.noarch\nperl-IO-Socket-IP-0.39-419.fc30.noarch\nperl-IO-Socket-SSL-2.066-2.fc30.noarch\nperl-IO-Zlib-1.10-444.fc30.noarch\nperl-IO-1.39-444.fc30.x86_64\nperl-IPC-Cmd-1.04-1.fc30.noarch\nperl-IPC-System-Simple-1.25-21.fc30.noarch\nperl-IPC-SysV-2.07-419.fc30.x86_64\nperl-JSON-PP-4.02-1.fc30.noarch\nperl-JSON-XS-4.02-1.fc30.x86_64\nperl-JSON-4.02-1.fc30.noarch\nperl-libnetcfg-5.28.2-444.fc30.noarch\nperl-libnet-3.11-419.fc30.noarch\nperl-libs-5.28.2-444.fc30.x86_64\nperl-Locale-Codes-3.63-1.fc30.noarch\nperl-Locale-Maketext-Simple-0.21-444.fc30.noarch\nperl-Locale-Maketext-1.29-419.fc30.noarch\nperl-local-lib-2.000024-5.fc30.noarch\nperl-macros-5.28.2-444.fc30.noarch\nperl-Math-BigInt-FastCalc-0.500.800-2.fc30.x86_64\nperl-Math-BigInt-1.9998.16-2.fc30.noarch\nperl-Math-BigRat-0.2614-4.fc30.noarch\nperl-Math-Complex-1.59-444.fc30.noarch\nperl-Memoize-1.03-444.fc30.noarch\nperl-MIME-Base64-3.15-418.fc30.x86_64\nperl-MIME-Charset-1.012.2-7.fc30.noarch\nperl-Module-Build-0.42.24-11.fc30.noarch\nperl-Module-CoreList-tools-5.20200428-1.fc30.noarch\nperl-Module-CoreList-5.20200428-1.fc30.noarch\nperl-Module-Load-Conditional-0.70-1.fc30.noarch\nperl-Module-Loaded-0.08-444.fc30.noarch\nperl-Module-Load-0.34-1.fc30.noarch\nperl-Module-Metadata-1.000036-1.fc30.noarch\nperl-Mozilla-CA-20180117-4.fc30.noarch\nperl-MRO-Compat-0.13-7.fc30.noarch\nperl-Net-Ping-2.62-444.fc30.noarch\nperl-Net-SSLeay-1.85-11.fc30.x86_64\nperl-open-1.11-444.fc30.noarch\nperl-Package-Generator-1.106-14.fc30.noarch\nperl-Params-Check-0.38-418.fc30.noarch\nperl-Params-Util-1.07-26.fc30.x86_64\nperl-parent-0.237-3.fc30.noarch\nperl-PathTools-3.75-2.fc30.x86_64\nperl-perlfaq-5.20200125-1.fc30.noarch\nperl-PerlIO-via-QuotedPrint-0.08-418.fc30.noarch\nperl-Perl-OSType-1.010-420.fc30.noarch\nperl-Pod-Escapes-1.07-418.fc30.noarch\nperl-Pod-Html-1.24-444.fc30.noarch\nperl-Pod-Checker-1.73-418.fc30.noarch\nperl-podlators-4.12-1.fc30.noarch\nperl-Pod-Parser-1.63-419.fc30.noarch\nperl-Pod-Perldoc-3.28.01-420.fc30.noarch\nperl-Pod-Simple-3.35-418.fc30.noarch\nperl-Pod-Usage-1.70-1.fc30.noarch\nperl-Scalar-List-Utils-1.50-418.fc30.x86_64\nperl-SelfLoader-1.25-444.fc30.noarch\nperl-Socket-2.029-1.fc30.x86_64\nperl-Software-License-0.103014-2.fc30.noarch\nperl-srpm-macros-1-29.fc30.noarch\nperl-Storable-3.15-4.fc30.x86_64\nperl-Sub-Exporter-0.987-18.fc30.noarch\nperl-Sub-Install-0.928-18.fc30.noarch\nperl-Sys-Syslog-0.35-419.fc30.x86_64\nperl-Term-ANSIColor-4.06-419.fc30.noarch\nperl-Term-Cap-1.17-418.fc30.noarch\nperl-TermReadKey-2.38-2.fc30.x86_64\nperl-Term-Size-Any-0.002-27.fc30.noarch\nperl-Term-Size-Perl-0.031-4.fc30.x86_64\nperl-Term-Table-0.015-1.fc30.noarch\nperl-Test-Harness-3.42-419.fc30.noarch\nperl-Test-Simple-1.302162-1.fc30.noarch\nperl-Test-1.31-444.fc30.noarch\nperl-Text-Balanced-2.03-418.fc30.noarch\nperl-Text-Diff-1.45-5.fc30.noarch\nperl-Text-Glob-0.11-7.fc30.noarch\nperl-Text-ParseWords-3.30-418.fc30.noarch\nperl-Text-Tabs+Wrap-2013.0523-418.fc30.noarch\nperl-Text-Template-1.55-2.fc30.noarch\nperl-Thread-Queue-3.13-2.fc30.noarch\nperl-threads-shared-1.59-3.fc30.x86_64\nperl-threads-2.22-418.fc30.x86_64\nperl-Time-HiRes-1.9760-1.fc30.x86_64\nperl-Time-Local-1.300-1.fc30.noarch\nperl-Time-Piece-1.33-444.fc30.x86_64\nperl-Unicode-Collate-1.27-2.fc30.x86_64\nperl-Unicode-LineBreak-2019.001-2.fc30.x86_64\nperl-Unicode-Normalize-1.26-418.fc30.x86_64\nperl-URI-1.76-2.fc30.noarch\nperl-utils-5.28.2-444.fc30.noarch\nperl-version-0.99.24-7.fc30.x86_64\nperl-5.28.2-444.fc30.x86_64\npigz-2.4-4.fc30.x86_64\npinfo-0.6.10-20.fc29.x86_64\npixman-0.38.0-1.fc30.x86_64\npkgconf-m4-1.6.1-1.fc30.noarch\npkgconf-pkg-config-1.6.1-1.fc30.x86_64\npkgconf-1.6.1-1.fc30.x86_64\nplymouth-core-libs-0.9.4-5.fc30.x86_64\nplymouth-scripts-0.9.4-5.fc30.x86_64\nplymouth-0.9.4-5.fc30.x86_64\npolicycoreutils-python-utils-2.9-1.fc30.noarch\npolicycoreutils-2.9-1.fc30.x86_64\npolkit-libs-0.115-10.fc30.1.x86_64\npolkit-pkla-compat-0.1-14.fc30.x86_64\npolkit-0.115-10.fc30.1.x86_64\npopt-1.16-17.fc30.x86_64\nprocps-ng-3.3.15-5.fc30.x86_64\nprotobuf-c-1.3.1-2.fc30.x86_64\npsacct-6.6.4-4.fc30.x86_64\npsmisc-23.3-1.fc30.x86_64\npublicsuffix-list-dafsa-20190128-2.fc30.noarch\npython-pip-wheel-19.0.3-1.fc30.noarch\npython-setuptools-wheel-40.8.0-1.fc30.noarch\npython-srpm-macros-3-47.fc30.noarch\npython-unversioned-command-2.7.18-1.fc30.noarch\npython2-libs-2.7.18-1.fc30.x86_64\npython2-pip-19.0.3-7.fc30.noarch\npython2-setuptools-40.8.0-2.fc30.noarch\npython2-2.7.18-1.fc30.x86_64\npython3-abrt-addon-2.12.0-2.fc30.x86_64\npython3-abrt-2.12.0-2.fc30.x86_64\npython3-asn1crypto-0.24.0-6.fc30.noarch\npython3-audit-3.0-0.7.20190326git03e7489.fc30.x86_64\npython3-augeas-0.5.0-14.fc30.noarch\npython3-babel-2.6.0-6.fc30.noarch\npython3-bcrypt-3.1.4-7.fc30.x86_64\npython3-cairo-1.18.0-2.fc30.x86_64\npython3-cffi-1.11.5-7.fc30.x86_64\npython3-cryptography-2.6.1-1.fc30.x86_64\npython3-dateutil-2.8.0-1.fc30.noarch\npython3-dbus-1.2.8-5.fc30.x86_64\npython3-decorator-4.3.0-2.fc30.noarch\npython3-distro-1.4.0-1.fc30.noarch\npython3-dnf-plugins-core-4.0.6-1.fc30.noarch\npython3-dnf-4.2.2-2.fc30.noarch\npython3-firewall-0.6.3-2.fc30.noarch\npython3-gobject-base-3.32.0-1.fc30.x86_64\npython3-gobject-3.32.0-1.fc30.x86_64\npython3-gpg-1.12.0-1.fc30.x86_64\npython3-hawkey-0.28.1-1.fc30.x86_64\npython3-chardet-3.0.4-9.fc30.noarch\npython3-idna-2.7-4.fc30.noarch\npython3-jinja2-2.10.1-1.fc30.noarch\npython3-jmespath-0.9.3-2.fc30.noarch\npython3-libcomps-0.1.11-1.fc30.x86_64\npython3-libdnf-0.28.1-1.fc30.x86_64\npython3-libreport-2.10.0-1.fc30.x86_64\npython3-libselinux-2.9-1.fc30.x86_64\npython3-libsemanage-2.9-1.fc30.x86_64\npython3-libs-3.7.3-1.fc30.x86_64\npython3-libxml2-2.9.9-2.fc30.x86_64\npython3-markupsafe-1.1.1-1.fc30.x86_64\npython3-ntlm-auth-1.1.0-4.fc30.noarch\npython3-paramiko-2.5.0-1.fc30.noarch\npython3-pip-19.0.3-7.fc30.noarch\npython3-ply-3.11-2.fc30.noarch\npython3-policycoreutils-2.9-1.fc30.noarch\npython3-pycparser-2.14-18.fc30.noarch\npython3-pynacl-1.3.0-1.fc30.x86_64\npython3-pyparsing-2.4.0-1.fc30.noarch\npython3-pysocks-1.6.8-7.fc30.noarch\npython3-pytz-2018.5-2.fc30.noarch\npython3-pyyaml-5.3.1-1.fc30.x86_64\npython3-requests_ntlm-1.1.0-4.fc30.noarch\npython3-requests-2.22.0-2.fc30.noarch\npython3-rpm-4.14.2.1-4.fc30.1.x86_64\npython3-setools-4.1.1-14.fc30.x86_64\npython3-setuptools-40.8.0-1.fc30.noarch\npython3-six-1.12.0-1.fc30.noarch\npython3-slip-dbus-0.6.4-15.fc30.noarch\npython3-slip-0.6.4-15.fc30.noarch\npython3-systemd-234-8.fc30.x86_64\npython3-urllib3-1.25.7-1.fc30.noarch\npython3-winrm-0.3.0-4.fc30.noarch\npython3-xmltodict-0.12.0-2.fc30.noarch\npython3-3.7.3-1.fc30.x86_64\np11-kit-trust-0.23.15-3.fc30.x86_64\np11-kit-0.23.15-3.fc30.x86_64\nqrencode-libs-3.4.4-8.fc30.x86_64\nqt5-srpm-macros-5.12.5-1.fc30.noarch\nquota-nls-4.04-12.fc30.noarch\nquota-4.04-12.fc30.x86_64\nreadline-8.0-2.fc30.x86_64\nrealmd-0.16.3-19.fc30.x86_64\nredhat-rpm-config-132-1.fc30.noarch\nrng-tools-6.7-1.fc30.x86_64\nrootfiles-8.1-24.fc30.noarch\nrpcbind-1.2.5-3.fc30.x86_64\nrpm-build-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-plugin-selinux-4.14.2.1-4.fc30.1.x86_64\nrpm-sign-libs-4.14.2.1-4.fc30.1.x86_64\nrpm-4.14.2.1-4.fc30.1.x86_64\nrsync-3.1.3-7.fc30.x86_64\nrsyslog-8.39.0-3.fc30.x86_64\nrust-srpm-macros-10-1.fc30.noarch\nsamba-client-libs-4.10.2-0.fc30.x86_64\nsamba-common-libs-4.10.2-0.fc30.x86_64\nsamba-common-4.10.2-0.fc30.noarch\nsamba-libs-4.10.2-0.fc30.x86_64\nsatyr-0.27-2.fc30.x86_64\nscreen-4.6.2-8.fc30.x86_64\nsed-4.5-3.fc30.x86_64\nselinux-policy-targeted-3.14.3-29.fc30.noarch\nselinux-policy-3.14.3-29.fc30.noarch\nsetroubleshoot-plugins-3.3.10-2.fc30.noarch\nsetroubleshoot-server-3.3.19-2.fc30.x86_64\nsetup-2.13.3-1.fc30.noarch\nshadow-utils-4.6-8.fc30.x86_64\nshared-mime-info-1.12-2.fc30.x86_64\nshim-x64-15-8.x86_64\nslang-2.3.2-5.fc30.x86_64\nsmartmontools-7.0-5.fc30.x86_64\nsnappy-1.1.7-8.fc30.x86_64\nsombok-2.4.0-9.fc30.x86_64\nsos-3.7-1.fc30.noarch\nsource-highlight-3.1.8-24.fc30.x86_64\nsqlite-libs-3.26.0-3.fc30.x86_64\nsqlite-3.26.0-3.fc30.x86_64\nsquashfs-tools-4.3-16.fc28.x86_64\nsscg-2.5.1-2.fc30.x86_64\nsshpass-1.06-7.fc30.x86_64\nsssd-ad-2.1.0-2.fc30.x86_64\nsssd-client-2.1.0-2.fc30.x86_64\nsssd-common-pac-2.1.0-2.fc30.x86_64\nsssd-common-2.1.0-2.fc30.x86_64\nsssd-ipa-2.1.0-2.fc30.x86_64\nsssd-kcm-2.1.0-2.fc30.x86_64\nsssd-krb5-common-2.1.0-2.fc30.x86_64\nsssd-krb5-2.1.0-2.fc30.x86_64\nsssd-ldap-2.1.0-2.fc30.x86_64\nsssd-nfs-idmap-2.1.0-2.fc30.x86_64\nsssd-2.1.0-2.fc30.x86_64\nsudo-1.8.27-1.fc30.x86_64\nsymlinks-1.4-22.fc30.x86_64\nsystemd-libs-241-7.gita2eaa1c.fc30.x86_64\nsystemd-pam-241-7.gita2eaa1c.fc30.x86_64\nsystemd-rpm-macros-241-7.gita2eaa1c.fc30.noarch\nsystemd-udev-241-7.gita2eaa1c.fc30.x86_64\nsystemd-241-7.gita2eaa1c.fc30.x86_64\nsystemtap-sdt-devel-4.2-1.fc30.x86_64\ntar-1.32-1.fc30.x86_64\ntcpdump-4.9.2-7.fc30.x86_64\nteamd-1.28-2.fc30.x86_64\ntelnet-0.17-76.fc30.x86_64\ntimedatex-0.5-6.fc30.x86_64\ntime-1.9-6.fc30.x86_64\ntraceroute-2.1.0-8.fc30.x86_64\ntree-1.8.0-2.fc30.x86_64\ntzdata-2019a-1.fc30.noarch\nudisks2-iscsi-2.8.2-1.fc30.x86_64\nudisks2-2.8.2-1.fc30.x86_64\nunzip-6.0-43.fc30.x86_64\nusb_modeswitch-data-20170806-4.fc30.noarch\nusb_modeswitch-2.5.2-3.fc30.x86_64\nusbutils-010-3.fc30.x86_64\nuserspace-rcu-0.10.1-5.fc30.x86_64\nutil-linux-user-2.33.2-1.fc30.x86_64\nutil-linux-2.33.2-1.fc30.x86_64\nvconfig-1.9-26.fc30.x86_64\nvim-minimal-8.1.1137-1.fc30.x86_64\nvolume_key-libs-0.3.12-3.fc30.x86_64\nwget-1.20.3-1.fc30.x86_64\nwhich-2.21-14.fc30.x86_64\nwireless-tools-29-22.fc30.x86_64\nwords-3.0-33.fc30.noarch\nwpa_supplicant-2.7-5.fc30.x86_64\nxdg-utils-1.1.3-4.fc30.noarch\nxfsprogs-4.19.0-4.fc30.x86_64\nxkeyboard-config-2.24-5.fc30.noarch\nxmlrpc-c-client-1.51.0-8.fc30.x86_64\nxmlrpc-c-1.51.0-8.fc30.x86_64\nxz-libs-5.2.4-5.fc30.x86_64\nxz-5.2.4-5.fc30.x86_64\nzd1211-firmware-1.5-4.fc30.noarch\nzchunk-libs-1.1.1-3.fc30.x86_64\nzip-3.0-24.fc30.x86_64\nzlib-1.2.11-15.fc30.x86_64\n&#39;, &#39;params&#39;: &#39;arch: x86_64\nguest_cpus: 1\nguest_mem_m: 2048\nhost_cpus: 1\nhugepage_kb: 1\nnuma_nodes: 1&#39;}]</textarea><div class="tooltip" onclick="elementValueToClipboard('env-Localhost3-4-raw')">A-1<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>+Localhost3 PROFILE MISSING IN SRC</pre></span></div>,<div class="tooltip" onclick="elementValueToClipboard('env-Localhost3-4-raw')">A-1<span class="tooltiptext"><a href="#">Click to copy the raw python dict</a><pre>+Localhost3 PROFILE MISSING IN SRC</pre></span></div></td>
        <td style='background-color: rgba(255, 153.0, 153.0)'><textarea style="position: absolute; left: -9999px;"  id="env-Localhost3-5-raw"></textarea></td>
    </tr>
    <tr>
        <td>Tests env</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'><div class="tooltip">A<span class="tooltiptext">Tests with different params from src build:<br><pre></pre></span></div></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><div class="tooltip">B<span class="tooltiptext">Tests with different params from src build:<br><pre>Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.mean
Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.stddev
Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.mean
Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.stddev</pre></span></div></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'><div class="tooltip">B<span class="tooltiptext">Tests with different params from src build:<br><pre>Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.mean
Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.stddev
Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.mean
Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.stddev</pre></span></div></td>
        <td style='background-color: rgba(255, 102.0, 102.0)'><div class="tooltip">C<span class="tooltiptext">Tests with different params from src build:<br><pre>Localhost3/fio/0000:./read-4KiB/throughput/iops_sec.mean
Localhost3/fio/0000:./read-4KiB/throughput/iops_sec.stddev
Localhost3/fio/0000:./read-64KiB/throughput/iops_sec.mean
Localhost3/fio/0000:./read-64KiB/throughput/iops_sec.stddev
Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.mean
Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.stddev
Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.mean
Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.stddev</pre></span></div></td>
        <td style='background-color: rgba(255, 153.0, 153.0)'><div class="tooltip">D<span class="tooltiptext">Tests with different params from src build:<br><pre>Localhost/fio/0000:./read-4KiB/throughput/iops_sec.mean
Localhost/fio/0000:./read-4KiB/throughput/iops_sec.stddev
Localhost/fio/0000:./read-64KiB/throughput/iops_sec.mean
Localhost/fio/0000:./read-64KiB/throughput/iops_sec.stddev
Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.mean
Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.stddev
Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.mean
Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.stddev</pre></span></div></td>
    </tr>
    <tr>
        <td>Failures</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>5</td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>5</td>
        <td style='background-color: rgba(255, 102.0, 102.0)'>9</td>
        <td style='background-color: rgba(255, 153.0, 153.0)'>6</td>
    </tr>
    <tr>
        <td>Group failures</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>0</td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>0</td>
        <td style='background-color: rgba(255, 102.0, 102.0)'>3</td>
        <td style='background-color: rgba(255, 153.0, 153.0)'>0</td>
    </tr>
    <tr>
        <td>Non-primary failures</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>15</td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>15</td>
        <td style='background-color: rgba(255, 102.0, 102.0)'>28</td>
        <td style='background-color: rgba(255, 153.0, 153.0)'>16</td>
    <tr>
        <td>Runtime errors</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>0</td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>0</td>
        <td style='background-color: rgba(255, 102.0, 102.0)'>0</td>
        <td style='background-color: rgba(255, 153.0, 153.0)'>0</td>
    </tr>
    <tr>
        <td>Total checks</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'></td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>35</td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>35</td>
        <td style='background-color: rgba(255, 102.0, 102.0)'>51</td>
        <td style='background-color: rgba(255, 153.0, 153.0)'>35</td>
    </tr>
    <tr>
        <td>Build score</td>
        <td style='background-color: rgba(255, 255.0, 255.0)'>0</td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>6</td>
        <td style='background-color: rgba(255, 204.0, 204.0)'>6</td>
        <td style='background-color: rgba(255, 102.0, 102.0)'>26</td>
        <td style='background-color: rgba(255, 153.0, 153.0)'>7</td>
    </table>
</div>

<h1>Group stats</h1>
<a id="div_table_of_group_failures-hide" href="javascript:toggle_short('table_of_group_failures');">[-]</a><br>

<div id='div_table_of_group_failures' style="display: block">
    <span>This build status: </span>
    <a id='table_of_group_failures_status_0' href="javascript:tableOfGroupFailuresToggleByStatus('status_0')" class="status_0">equals</a>
    <a id='table_of_group_failures_status_1' href="javascript:tableOfGroupFailuresToggleByStatus('status_1')" class="status_1">minor gains</a>
    <a id='table_of_group_failures_status_2' href="javascript:tableOfGroupFailuresToggleByStatus('status_2')" class="status_2">minor losses</a>
    <a id='table_of_group_failures_status_99' href="javascript:tableOfGroupFailuresToggleByStatus('status_99')" class="status_99">skips</a>
    <a id='table_of_group_failures_status_-1' href="javascript:tableOfGroupFailuresToggleByStatus('status_-1')" class="status_-1">losses</a>
    <a id='table_of_group_failures_status_-3' href="javascript:tableOfGroupFailuresToggleByStatus('status_-3')" class="status_-3">gains</a>
    <a id='table_of_group_failures_status_-2' href="javascript:tableOfGroupFailuresToggleByStatus('status_-2')" class="status_-2">errors</a>
    <a id='table_of_group_failures_status_0' href="javascript:tableOfGroupFailuresToggleMultiple(true, ['status_0', 'status_1', 'status_2'])" class="status_-2">+good</a>
    <a id='table_of_group_failures_status_0' href="javascript:tableOfGroupFailuresToggleMultiple(false, ['status_0', 'status_1', 'status_2'])" class="status_-2">-good</a>
    <a id='table_of_group_failures_status_-1' href="javascript:tableOfGroupFailuresToggleMultiple(true, ['status_99', 'status_-1', 'status_-2', 'status_-3'])" class="status_-2">+bad</a>
    <a id='table_of_group_failures_status_-1' href="javascript:tableOfGroupFailuresToggleMultiple(false, ['status_99', 'status_-1', 'status_-2', 'status_-3'])" class="status_-2">-bad</a>
    <br>
    <span>Any build status: </span>
    <a id='table_of_group_failures_any_status_0' href="javascript:tableOfGroupFailuresToggleByStatus('any_status_0')" class="status_0">equals</a>
    <a id='table_of_group_failures_any_status_1' href="javascript:tableOfGroupFailuresToggleByStatus('any_status_1')" class="status_1">minor gains</a>
    <a id='table_of_group_failures_any_status_2' href="javascript:tableOfGroupFailuresToggleByStatus('any_status_2')" class="status_2">minor losses</a>
    <a id='table_of_group_failures_any_status_99' href="javascript:tableOfGroupFailuresToggleByStatus('any_status_99')" class="status_99">skips</a>
    <a id='table_of_group_failures_any_status_-1' href="javascript:tableOfGroupFailuresToggleByStatus('any_status_-1')" class="status_-1">losses</a>
    <a id='table_of_group_failures_any_status_-3' href="javascript:tableOfGroupFailuresToggleByStatus('any_status_-3')" class="status_-3">gains</a>
    <a id='table_of_group_failures_any_status_-2' href="javascript:tableOfGroupFailuresToggleByStatus('any_status_-2')" class="status_-2">errors</a>
    <a id='table_of_group_failures_status_0' href="javascript:tableOfGroupFailuresToggleMultiple(true, ['any_status_0', 'any_status_1', 'any_status_2'])" class="status_-2">+good</a>
    <a id='table_of_group_failures_status_0' href="javascript:tableOfGroupFailuresToggleMultiple(false, ['any_status_0', 'any_status_1', 'any_status_2'])" class="status_-2">-good</a>
    <a id='table_of_group_failures_status_-1' href="javascript:tableOfGroupFailuresToggleMultiple(true, ['any_status_99', 'any_status_-1', 'any_status_-2', 'any_status_-3'])" class="status_-2">+bad</a>
    <a id='table_of_group_failures_status_-1' href="javascript:tableOfGroupFailuresToggleMultiple(false, ['any_status_99', 'any_status_-1', 'any_status_-2', 'any_status_-3'])" class="status_-2">-bad</a>
    <br>
    <span>types: </span>
    <a id='table_of_group_failures_button_mean' href="javascript:tableOfGroupFailuresToggleByNameSegment('mean')" class="status_0">MEAN</a>
    <a id='table_of_group_failures_button_stddev' href="javascript:tableOfGroupFailuresToggleByNameSegment('stddev')" class="status_0">STDDEV</a><br>
    <table id='table_of_group_failures' border=1>
    <tr>
        <th>Test</th>
        <th><a href="Unknown">7
</a></th>
        <th><a href="Unknown">8
</a></th>
        <th><a href="Unknown">9
</a></th>
        <th><a href="Unknown">10
</a></th>
    </tr>
    <tr class=" status_2 any_status_2 any_status_-1 any_status_2 ">
        <td class="status_*/fio/0000:./read-*/throughput/iops_sec.mean"><div class="tooltip">*/fio/0000:./read-*/throughput/iops_sec.mean<span class="tooltiptext">*/fio/0000:./read-*/throughput/iops_sec.mean</span></div></td>
        <td class="status_2"><div class="tooltip">-4.0<span class="tooltiptext">GOOD raw -4.01% (-4.01; -4.005453993002888) +-5.75% tolerance</span></div></td>
        <td class="status_2"><div class="tooltip">-1.1<span class="tooltiptext">GOOD raw -1.07% (-1.07; -1.0650041317484664) +-5.75% tolerance</span></div></td>
        <td class="status_-1"><div class="tooltip">-8.7<span class="tooltiptext">SMALL raw -8.67% (-8.67; -8.667814451256838) +-5.75% tolerance</span></div></td>
        <td class="status_2"><div class="tooltip">-1.3<span class="tooltiptext">GOOD raw 2.43%, avg -5.65%, n_of -2.11% (2.43; 2.432125293674612) +-5.75% tolerance</span></div></td>
    </tr>
    <tr class=" status_2 any_status_2 any_status_-1 any_status_2 ">
        <td class="status_Localhost/*/*:./*-*/*/*.mean"><div class="tooltip">Localhost/*/*:./*-*/*/*.mean<span class="tooltiptext">Localhost/*/*:./*-*/*/*.mean</span></div></td>
        <td class="status_2"><div class="tooltip">-4.0<span class="tooltiptext">GOOD raw -4.01% (-4.01; -4.005453993002888) +-5.75% tolerance</span></div></td>
        <td class="status_2"><div class="tooltip">-1.1<span class="tooltiptext">GOOD raw -1.07% (-1.07; -1.0650041317484664) +-5.75% tolerance</span></div></td>
        <td class="status_-1"><div class="tooltip">-8.7<span class="tooltiptext">SMALL raw -8.67% (-8.67; -8.667814451256838) +-5.75% tolerance</span></div></td>
        <td class="status_2"><div class="tooltip">-1.3<span class="tooltiptext">GOOD raw 2.43%, avg -5.65%, n_of -2.11% (2.43; 2.432125293674612) +-5.75% tolerance</span></div></td>
    </tr>
    <tr class=" status_2 any_status_2 any_status_-1 any_status_2 ">
        <td class="status_Localhost/fio/0000:./read-*/throughput/iops_sec.mean"><div class="tooltip">Localhost/fio/0000:./read-*/throughput/iops_sec.mean<span class="tooltiptext">Localhost/fio/0000:./read-*/throughput/iops_sec.mean</span></div></td>
        <td class="status_2"><div class="tooltip">-4.0<span class="tooltiptext">GOOD raw -4.01% (-4.01; -4.005453993002888) +-5.75% tolerance</span></div></td>
        <td class="status_2"><div class="tooltip">-1.1<span class="tooltiptext">GOOD raw -1.07% (-1.07; -1.0650041317484664) +-5.75% tolerance</span></div></td>
        <td class="status_-1"><div class="tooltip">-8.7<span class="tooltiptext">SMALL raw -8.67% (-8.67; -8.667814451256838) +-5.75% tolerance</span></div></td>
        <td class="status_2"><div class="tooltip">-1.3<span class="tooltiptext">GOOD raw 2.43%, avg -5.65%, n_of -2.11% (2.43; 2.432125293674612) +-5.75% tolerance</span></div></td>
    </tr>
    </table>
</div>

<h1>Failures</h1>
<a id="div_table_of_failures-hide" href="javascript:toggle_short('table_of_failures');">[-]</a><br>

<div id='div_table_of_failures' style="display: block">
    <span>This build status: </span>
    <a id='table_of_failures_status_0' href="javascript:tableOfFailuresToggleByStatus('status_0')" class="status_0">equals</a>
    <a id='table_of_failures_status_1' href="javascript:tableOfFailuresToggleByStatus('status_1')" class="status_1">minor gains</a>
    <a id='table_of_failures_status_2' href="javascript:tableOfFailuresToggleByStatus('status_2')" class="status_2">minor losses</a>
    <a id='table_of_failures_status_99' href="javascript:tableOfFailuresToggleByStatus('status_99')" class="status_99">skips</a>
    <a id='table_of_failures_status_-1' href="javascript:tableOfFailuresToggleByStatus('status_-1')" class="status_-1">losses</a>
    <a id='table_of_failures_status_-3' href="javascript:tableOfFailuresToggleByStatus('status_-3')" class="status_-3">gains</a>
    <a id='table_of_failures_status_-2' href="javascript:tableOfFailuresToggleByStatus('status_-2')" class="status_-2">errors</a>
    <a id='table_of_failures_status_0' href="javascript:tableOfFailuresToggleMultiple(true, ['status_0', 'status_1', 'status_2'])" class="status_-2">+good</a>
    <a id='table_of_failures_status_0' href="javascript:tableOfFailuresToggleMultiple(false, ['status_0', 'status_1', 'status_2'])" class="status_-2">-good</a>
    <a id='table_of_failures_status_-1' href="javascript:tableOfFailuresToggleMultiple(true, ['status_99', 'status_-1', 'status_-2', 'status_-3'])" class="status_-2">+bad</a>
    <a id='table_of_failures_status_-1' href="javascript:tableOfFailuresToggleMultiple(false, ['status_99', 'status_-1', 'status_-2', 'status_-3'])" class="status_-2">-bad</a>
    <br>
    <span>Any build status: </span>
    <a id='table_of_failures_any_status_0' href="javascript:tableOfFailuresToggleByStatus('any_status_0')" class="status_0">equals</a>
    <a id='table_of_failures_any_status_1' href="javascript:tableOfFailuresToggleByStatus('any_status_1')" class="status_1">minor gains</a>
    <a id='table_of_failures_any_status_2' href="javascript:tableOfFailuresToggleByStatus('any_status_2')" class="status_2">minor losses</a>
    <a id='table_of_failures_any_status_99' href="javascript:tableOfFailuresToggleByStatus('any_status_99')" class="status_99">skips</a>
    <a id='table_of_failures_any_status_-1' href="javascript:tableOfFailuresToggleByStatus('any_status_-1')" class="status_-1">losses</a>
    <a id='table_of_failures_any_status_-3' href="javascript:tableOfFailuresToggleByStatus('any_status_-3')" class="status_-3">gains</a>
    <a id='table_of_failures_any_status_-2' href="javascript:tableOfFailuresToggleByStatus('any_status_-2')" class="status_-2">errors</a>
    <a id='table_of_failures_status_0' href="javascript:tableOfFailuresToggleMultiple(true, ['any_status_0', 'any_status_1', 'any_status_2'])" class="status_-2">+good</a>
    <a id='table_of_failures_status_0' href="javascript:tableOfFailuresToggleMultiple(false, ['any_status_0', 'any_status_1', 'any_status_2'])" class="status_-2">-good</a>
    <a id='table_of_failures_status_-1' href="javascript:tableOfFailuresToggleMultiple(true, ['any_status_99', 'any_status_-1', 'any_status_-2', 'any_status_-3'])" class="status_-2">+bad</a>
    <a id='table_of_failures_status_-1' href="javascript:tableOfFailuresToggleMultiple(false, ['any_status_99', 'any_status_-1', 'any_status_-2', 'any_status_-3'])" class="status_-2">-bad</a>
    <br>
    <span>profiles: </span>
    <a id='table_of_failures_button_*' href="javascript:tableOfFailuresToggleByNameSegment('*')" class="status_0">*</a>
    <a id='table_of_failures_button_Localhost' href="javascript:tableOfFailuresToggleByNameSegment('Localhost')" class="status_0">LOCALHOST</a>
    <a id='table_of_failures_button_Localhost2' href="javascript:tableOfFailuresToggleByNameSegment('Localhost2')" class="status_0">LOCALHOST2</a>
    <a id='table_of_failures_button_Localhost3' href="javascript:tableOfFailuresToggleByNameSegment('Localhost3')" class="status_0">LOCALHOST3</a><br>
    <span>tests: </span>
    <a id='table_of_failures_button_fio' href="javascript:tableOfFailuresToggleByNameSegment('fio')" class="status_0">FIO</a><br>
    <span>types: </span>
    <a id='table_of_failures_button_mean' href="javascript:tableOfFailuresToggleByNameSegment('mean')" class="status_0">MEAN</a>
    <a id='table_of_failures_button_stddev' href="javascript:tableOfFailuresToggleByNameSegment('stddev')" class="status_0">STDDEV</a><br>
    <table id='table_of_failures' border=1>
    <tr>
        <th>Test</th>
        <th><a href="Unknown">7
</a></th>
        <th><a href="Unknown">8
</a></th>
        <th><a href="Unknown">9
</a></th>
        <th><a href="Unknown">10
</a></th>
    </tr>
    <tr class=" status_-1 any_status_-1 any_status_-1 any_status_-1 ">
        <td class="status_Localhost/fio/0000:./read-4KiB/throughput/iops_sec.mean">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-1-1-raw')">
                Localhost/fio/0000:./read-4KiB/throughput/iops_sec.mean<textarea style="position: absolute; left: -9999px;"  id="env-test-1-1-raw">{0: &#39;benchmark_name:fio\nbs:4k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:60\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;}</textarea>
                &#x1f527;
                   <span class="supsub">
                    <span>3.6</span>
                    <span>-3.7</span>
                </span>
                <span class="tooltiptext">
                    Localhost/fio/0000:./read-4KiB/throughput/iops_sec.mean<br><a href='#'>Click to copy raw src test params</a></span>
            </div>
        </td>
        <td class="status_2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-1-2-raw')">
                -1.3<span class="tooltiptext">
                    GOOD model0 -1.26%, mraw0 -1.21%, raw -3.57% (179348.46/183743.17; 177181.152542373) +-5.0% tolerance</span>
            </div>
        </td>
        <td class="status_-1">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-1-3-raw')">
                -6.1<span class="tooltiptext">
                    SMALL model0 -6.07%, mraw0 -5.63%, raw -7.89% (179348.46/183743.17; 169245.372881356) +-5.0% tolerance</span>
            </div>
        </td>
        <td class="status_-1">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-1-4-raw')">
                -20.2<span class="tooltiptext">
                    SMALL model0 -20.25%, mraw0 -18.69%, raw -20.64% (179348.46/183743.17; 145825.271186441) +-5.0% tolerance</span>
            </div>
        </td>
        <td class="status_-1">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-1-5-raw')">
                -8.4<textarea style="position: absolute; left: -9999px;"  id="env-test-1-5-raw">{0: &#39;benchmark_name:fio\nbs:4k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:61\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    SMALL raw -6.83%, avg -16.23%, n_of -5.50% GOOD model0 -4.88%, mraw0 -4.54% (179348.46/183743.17; 171197.389830508) +-5.0% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-runtime:60
+runtime:61</pre></span>
            </div>
        </td>
    </tr>
    <tr class=" status_2 any_status_2 any_status_2 any_status_2 ">
        <td class="status_Localhost/fio/0000:./read-4KiB/throughput/iops_sec.stddev">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-2-1-raw')">
                Localhost/fio/0000:./read-4KiB/throughput/iops_sec.stddev<textarea style="position: absolute; left: -9999px;"  id="env-test-2-1-raw">({0: &#39;benchmark_name:fio\nbs:4k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:60\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;},)</textarea>
                &#x1f527;<span class="tooltiptext">
                    Localhost/fio/0000:./read-4KiB/throughput/iops_sec.stddev<br><a href='#'>Click to copy raw src test params</a></span>
            </div>
        </td>
        <td class="status_2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-2-2-raw')">
                0.0<span class="tooltiptext">
                    GOOD raw 0.00% (0; 0) +-10.0% tolerance</span>
            </div>
        </td>
        <td class="status_2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-2-3-raw')">
                0.0<span class="tooltiptext">
                    GOOD raw 0.00% (0; 0) +-10.0% tolerance</span>
            </div>
        </td>
        <td class="status_2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-2-4-raw')">
                0.0<span class="tooltiptext">
                    GOOD raw 0.00% (0; 0) +-10.0% tolerance</span>
            </div>
        </td>
        <td class="status_2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-2-5-raw')">
                0.0<textarea style="position: absolute; left: -9999px;"  id="env-test-2-5-raw">{0: &#39;benchmark_name:fio\nbs:4k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:61\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    GOOD raw 0.00%, avg 0.00%, n_of -0.00% (0; 0) +-10.0% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-runtime:60
+runtime:61</pre></span>
            </div>
        </td>
    </tr>
    <tr class=" status_-3 any_status_1 any_status_1 any_status_-3 ">
        <td class="status_Localhost/fio/0000:./read-64KiB/throughput/iops_sec.mean">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-3-1-raw')">
                Localhost/fio/0000:./read-64KiB/throughput/iops_sec.mean<textarea style="position: absolute; left: -9999px;"  id="env-test-3-1-raw">{0: &#39;benchmark_name:fio\nbs:64k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:60\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;}</textarea>
                &#x1f527;
                   <span class="supsub">
                    <span>3.6</span>
                    <span>-3.6</span>
                </span>
                <span class="tooltiptext">
                    Localhost/fio/0000:./read-64KiB/throughput/iops_sec.mean<br><a href='#'>Click to copy raw src test params</a></span>
            </div>
        </td>
        <td class="status_-1">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-3-2-raw')">
                -6.8<span class="tooltiptext">
                    SMALL model0 -6.75%, mraw0 -6.14%, raw -8.70% (100482.88/103308.03; 94316.7627118644) +-5.0% tolerance</span>
            </div>
        </td>
        <td class="status_1">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-3-3-raw')">
                3.9<span class="tooltiptext">
                    GOOD model0 3.94%, mraw0 3.58%, raw 0.75% (100482.88/103308.03; 104077.847457627) +-5.0% tolerance</span>
            </div>
        </td>
        <td class="status_1">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-3-4-raw')">
                2.9<span class="tooltiptext">
                    GOOD model0 2.91%, mraw0 2.64%, raw -0.16% (100482.88/103308.03; 103140.627118644) +-5.0% tolerance</span>
            </div>
        </td>
        <td class="status_-3">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-3-5-raw')">
                13.3<textarea style="position: absolute; left: -9999px;"  id="env-test-3-5-raw">{0: &#39;benchmark_name:fio\nbs:64k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:61\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    BIG model0 21.78%, mraw0 19.80%, raw 16.53%, avg 10.94% GOOD n_of 3.67% (100482.88/103308.03; 120381.830508475) +-5.0% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-runtime:60
+runtime:61</pre></span>
            </div>
        </td>
    </tr>
    <tr class=" status_2 any_status_2 any_status_2 any_status_2 ">
        <td class="status_Localhost/fio/0000:./read-64KiB/throughput/iops_sec.stddev">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-4-1-raw')">
                Localhost/fio/0000:./read-64KiB/throughput/iops_sec.stddev<textarea style="position: absolute; left: -9999px;"  id="env-test-4-1-raw">({0: &#39;benchmark_name:fio\nbs:64k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:60\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;},)</textarea>
                &#x1f527;<span class="tooltiptext">
                    Localhost/fio/0000:./read-64KiB/throughput/iops_sec.stddev<br><a href='#'>Click to copy raw src test params</a></span>
            </div>
        </td>
        <td class="status_2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-4-2-raw')">
                0.0<span class="tooltiptext">
                    GOOD raw 0.00% (0; 0) +-10.0% tolerance</span>
            </div>
        </td>
        <td class="status_2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-4-3-raw')">
                0.0<span class="tooltiptext">
                    GOOD raw 0.00% (0; 0) +-10.0% tolerance</span>
            </div>
        </td>
        <td class="status_2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-4-4-raw')">
                0.0<span class="tooltiptext">
                    GOOD raw 0.00% (0; 0) +-10.0% tolerance</span>
            </div>
        </td>
        <td class="status_2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-4-5-raw')">
                0.0<textarea style="position: absolute; left: -9999px;"  id="env-test-4-5-raw">{0: &#39;benchmark_name:fio\nbs:64k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:61\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    GOOD raw 0.00%, avg 0.00%, n_of -0.00% (0; 0) +-10.0% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-runtime:60
+runtime:61</pre></span>
            </div>
        </td>
    </tr>
    <tr class=" status_-2 any_status_-2 any_status_-2 any_status_-2 ">
        <td class="status_Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.mean">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-5-1-raw')">
                Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.mean<textarea style="position: absolute; left: -9999px;"  id="env-test-5-1-raw">{0: &#39;benchmark_name:fio\nbs:4k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:60\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;}</textarea>
                &#x1f527;
                   <span class="supsub">
                    <span>3.6</span>
                    <span>-3.6</span>
                </span>
                <span class="tooltiptext">
                    Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.mean<br><a href='#'>Click to copy raw src test params</a></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-5-2-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-5-2-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-5-3-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-5-3-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-5-4-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-5-4-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-5-5-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-5-5-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
    </tr>
    <tr class=" status_-2 any_status_-2 any_status_-2 any_status_-2 ">
        <td class="status_Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.stddev">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-6-1-raw')">
                Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.stddev<textarea style="position: absolute; left: -9999px;"  id="env-test-6-1-raw">({0: &#39;benchmark_name:fio\nbs:4k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:60\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;},)</textarea>
                &#x1f527;<span class="tooltiptext">
                    Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.stddev<br><a href='#'>Click to copy raw src test params</a></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-6-2-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-6-2-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-6-3-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-6-3-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-6-4-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-6-4-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-6-5-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-6-5-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
    </tr>
    <tr class=" status_-2 any_status_-2 any_status_-2 any_status_-2 ">
        <td class="status_Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.mean">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-7-1-raw')">
                Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.mean<textarea style="position: absolute; left: -9999px;"  id="env-test-7-1-raw">{0: &#39;benchmark_name:fio\nbs:64k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:60\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;}</textarea>
                &#x1f527;
                   <span class="supsub">
                    <span>3.6</span>
                    <span>-3.6</span>
                </span>
                <span class="tooltiptext">
                    Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.mean<br><a href='#'>Click to copy raw src test params</a></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-7-2-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-7-2-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-7-3-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-7-3-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-7-4-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-7-4-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-7-5-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-7-5-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
    </tr>
    <tr class=" status_-2 any_status_-2 any_status_-2 any_status_-2 ">
        <td class="status_Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.stddev">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-8-1-raw')">
                Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.stddev<textarea style="position: absolute; left: -9999px;"  id="env-test-8-1-raw">({0: &#39;benchmark_name:fio\nbs:64k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:60\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;},)</textarea>
                &#x1f527;<span class="tooltiptext">
                    Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.stddev<br><a href='#'>Click to copy raw src test params</a></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-8-2-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-8-2-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-8-3-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-8-3-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-8-4-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-8-4-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-8-5-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-8-5-raw">{0: &#39;&#39;, &#39;user0&#39;: &#39;&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in target results (-100) (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
-MISSING IN THIS PARAMS
user0
=====
-MISSING IN THIS PARAMS</pre></span>
            </div>
        </td>
    </tr>
    <tr class=" status_-2 any_status_-2 any_status_-2 any_status_-2 ">
        <td class="status_Localhost3/fio/0000:./read-4KiB/throughput/iops_sec.mean">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-9-1-raw')">
                Localhost3/fio/0000:./read-4KiB/throughput/iops_sec.mean<textarea style="position: absolute; left: -9999px;"  id="env-test-9-1-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Localhost3/fio/0000:./read-4KiB/throughput/iops_sec.mean<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-9-2-raw')">
                NA<textarea style="position: absolute; left: -9999px;"  id="env-test-9-2-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Unknown<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-9-3-raw')">
                NA<textarea style="position: absolute; left: -9999px;"  id="env-test-9-3-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Unknown<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-9-4-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-9-4-raw">{0: &#39;benchmark_name:fio\nbs:4k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:60\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in source results (145825.271186441). (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
+MISSING IN SRC
user0
=====
+MISSING IN SRC</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-9-5-raw')">
                NA<textarea style="position: absolute; left: -9999px;"  id="env-test-9-5-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Unknown<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
    </tr>
    <tr class=" status_-2 any_status_-2 any_status_-2 any_status_-2 ">
        <td class="status_Localhost3/fio/0000:./read-4KiB/throughput/iops_sec.stddev">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-10-1-raw')">
                Localhost3/fio/0000:./read-4KiB/throughput/iops_sec.stddev<textarea style="position: absolute; left: -9999px;"  id="env-test-10-1-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Localhost3/fio/0000:./read-4KiB/throughput/iops_sec.stddev<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-10-2-raw')">
                NA<textarea style="position: absolute; left: -9999px;"  id="env-test-10-2-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Unknown<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-10-3-raw')">
                NA<textarea style="position: absolute; left: -9999px;"  id="env-test-10-3-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Unknown<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-10-4-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-10-4-raw">{0: &#39;benchmark_name:fio\nbs:4k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:60\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in source results (0). (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
+MISSING IN SRC
user0
=====
+MISSING IN SRC</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-10-5-raw')">
                NA<textarea style="position: absolute; left: -9999px;"  id="env-test-10-5-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Unknown<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
    </tr>
    <tr class=" status_-2 any_status_-2 any_status_-2 any_status_-2 ">
        <td class="status_Localhost3/fio/0000:./read-64KiB/throughput/iops_sec.mean">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-11-1-raw')">
                Localhost3/fio/0000:./read-64KiB/throughput/iops_sec.mean<textarea style="position: absolute; left: -9999px;"  id="env-test-11-1-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Localhost3/fio/0000:./read-64KiB/throughput/iops_sec.mean<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-11-2-raw')">
                NA<textarea style="position: absolute; left: -9999px;"  id="env-test-11-2-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Unknown<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-11-3-raw')">
                NA<textarea style="position: absolute; left: -9999px;"  id="env-test-11-3-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Unknown<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-11-4-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-11-4-raw">{0: &#39;benchmark_name:fio\nbs:64k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:60\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in source results (103140.627118644). (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
+MISSING IN SRC
user0
=====
+MISSING IN SRC</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-11-5-raw')">
                NA<textarea style="position: absolute; left: -9999px;"  id="env-test-11-5-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Unknown<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
    </tr>
    <tr class=" status_-2 any_status_-2 any_status_-2 any_status_-2 ">
        <td class="status_Localhost3/fio/0000:./read-64KiB/throughput/iops_sec.stddev">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-12-1-raw')">
                Localhost3/fio/0000:./read-64KiB/throughput/iops_sec.stddev<textarea style="position: absolute; left: -9999px;"  id="env-test-12-1-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Localhost3/fio/0000:./read-64KiB/throughput/iops_sec.stddev<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-12-2-raw')">
                NA<textarea style="position: absolute; left: -9999px;"  id="env-test-12-2-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Unknown<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-12-3-raw')">
                NA<textarea style="position: absolute; left: -9999px;"  id="env-test-12-3-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Unknown<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-12-4-raw')">
                -100.0<textarea style="position: absolute; left: -9999px;"  id="env-test-12-4-raw">{0: &#39;benchmark_name:fio\nbs:64k\nclocksource:gettimeofday\ndirect:1\nfilename:/fio\niodepth:32\nioengine:libaio\nlog_avg_msec:1000\nlog_hist_msec:10000\nmax_stddevpct:5\nnumjobs:1\nprimary_metric:iops_sec\nramp_time:5\nruntime:60\nrw:read\nsize:1300000\nsync:0\ntime_based:1\nuid:benchmark_name:%benchmark_name%-controller_host:%controller_host%&#39;, &#39;user0&#39;: &#39;profile: Localhost&#39;}</textarea>
                &#x1f527;<span class="tooltiptext">
                    ERROR  Not present in source results (0). (0; -100) +-1% tolerance<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>0
=
+MISSING IN SRC
user0
=====
+MISSING IN SRC</pre></span>
            </div>
        </td>
        <td class="status_-2">
            <div class="tooltip" onclick="elementValueToClipboard('env-test-12-5-raw')">
                NA<textarea style="position: absolute; left: -9999px;"  id="env-test-12-5-raw">NA</textarea>
                &#x1f527;<span class="tooltiptext">
                    Unknown<br><a href='#'>Test params differ (click to copy raw value):</a>
                        <pre>NA</pre></span>
            </div>
        </td>
    </tr>
    </table>
</div>

<h1>Details</h1>
<a id="failure_details-hide" href="javascript:toggle_short('failure_details');">[+]</a><br>

<div id='failure_details' style="display: none">
    <div>List of build <a href="Unknown">10
</a> failures:</div>
    <ul>
        <li>Localhost/fio/0000:./read-4KiB/throughput/iops_sec.mean -&gt; SMALL raw -6.83%, avg -16.23%, n_of -5.50% GOOD model0 -4.88%, mraw0 -4.54% (179348.46/183743.17; 171197.389830508) +-5.0% tolerance
            <ul>
                <li>Failed in 3 out of 4 reference builds</li>
                <li>Not present in 1 out of 4 reference builds</li>
            </ul>
        </li>
        <li>Localhost/fio/0000:./read-64KiB/throughput/iops_sec.mean -&gt; BIG model0 21.78%, mraw0 19.80%, raw 16.53%, avg 10.94% GOOD n_of 3.67% (100482.88/103308.03; 120381.830508475) +-5.0% tolerance
            <ul>
                <li>Failed in 2 out of 4 reference builds</li>
                <li>Not present in 2 out of 4 reference builds</li>
            </ul>
        </li>
        <li>Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.mean -&gt; ERROR  Not present in target results (-100) (0; -100) +-1% tolerance
            <ul>
                <li>Failed in 4 out of 4 reference builds</li>
            </ul>
        </li>
        <li>Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.mean -&gt; ERROR  Not present in target results (-100) (0; -100) +-1% tolerance
            <ul>
                <li>Failed in 4 out of 4 reference builds</li>
            </ul>
        </li>
        <li>Localhost2/fio/0000:./read-4KiB/throughput/iops_sec.stddev -&gt; ERROR  Not present in target results (-100) (0; -100) +-1% tolerance
            <ul>
                <li>Failed in 4 out of 4 reference builds</li>
            </ul>
        </li>
        <li>Localhost2/fio/0000:./read-64KiB/throughput/iops_sec.stddev -&gt; ERROR  Not present in target results (-100) (0; -100) +-1% tolerance
            <ul>
                <li>Failed in 4 out of 4 reference builds</li>
            </ul>
        </li>
    </ul>
    <div>List of build <a href="Unknown">10
</a> group failures:</div>
    <ul>
    </ul>
</div>
<h1>Charts</h1>

<a id="charts-hide" href="javascript:toggle_short('charts');">[-]</a><br>

<div id='charts' style="display: block">
    <div id='charts_links'>
        <span>Sections:</span>
        <a href="#chart_Overall mean">Overall mean</a>
        <a href="#chart_Overall stddev">Overall stddev</a>
        <a href="#chart_Same profile means">Same profile means</a>
        <a href="#chart_Same test suite means">Same test suite means</a>
        <a href="#chart_Same test (different params)">Same test (different params)</a>
        <br><br>
        <span>Individual charts:</span>
        <a href="#chart_counts_mean">counts_mean</a>
        <a href="#chart_overall_mean_cont">overall_mean_cont</a>
        <a href="#chart_counts_stddev">counts_stddev</a>
        <a href="#chart_overall_stddev_cont">overall_stddev_cont</a>
        <a href="#chart_Localhost_mean_counts">Localhost_mean_counts</a>
        <a href="#chart_Localhost_mean_overall_cont">Localhost_mean_overall_cont</a>
        <a href="#chart_Localhost_mean_counts">Localhost_mean_counts</a>
        <a href="#chart_Localhost_mean_overall_cont">Localhost_mean_overall_cont</a>
        <a href="#chart_Localhost_mean_counts">Localhost_mean_counts</a>
        <a href="#chart_Localhost_mean_overall_cont">Localhost_mean_overall_cont</a>
        <a href="#chart_Localhost_fio_iops_sec_mean_counts">Localhost_fio_iops_sec_mean_counts</a>
        <a href="#chart_Localhost_fio_iops_sec_mean_overall_cont">Localhost_fio_iops_sec_mean_overall_cont</a>
        <a href="#chart_Localhost_fio_iops_sec_mean_counts">Localhost_fio_iops_sec_mean_counts</a>
        <a href="#chart_Localhost_fio_iops_sec_mean_overall_cont">Localhost_fio_iops_sec_mean_overall_cont</a>
        <a href="#chart_Localhost_fio_iops_sec_mean_counts">Localhost_fio_iops_sec_mean_counts</a>
        <a href="#chart_Localhost_fio_iops_sec_mean_overall_cont">Localhost_fio_iops_sec_mean_overall_cont</a>
        <a href="#chart_Localhost_fio_read_throughput_iops_sec_mean_counts">Localhost_fio_read_throughput_iops_sec_mean_counts</a>
        <a href="#chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont">Localhost_fio_read_throughput_iops_sec_mean_overall_cont</a>
        <a href="#chart_Localhost_fio_read_throughput_iops_sec_mean_counts">Localhost_fio_read_throughput_iops_sec_mean_counts</a>
        <a href="#chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont">Localhost_fio_read_throughput_iops_sec_mean_overall_cont</a>
        <a href="#chart_Localhost_fio_read_throughput_iops_sec_mean_counts">Localhost_fio_read_throughput_iops_sec_mean_counts</a>
        <a href="#chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont">Localhost_fio_read_throughput_iops_sec_mean_overall_cont</a>
    </div>

    
    <h2>Overall mean</h2>
    <a id="chart_Overall mean-hide" href="javascript:toggle_short('chart_Overall mean');">[-]</a><br>
    <div id="chart_Overall mean" style="display: block">
        <br>
        
            <div id="chart_counts_mean" align="center" style="display: inline-block"></div>
            <div id="chart_overall_mean_cont" align="center" style="display: inline-block"></div>
    </div>
    <h2>Overall stddev</h2>
    <a id="chart_Overall stddev-hide" href="javascript:toggle_short('chart_Overall stddev');">[-]</a><br>
    <div id="chart_Overall stddev" style="display: block">
        <br>
        
            <div id="chart_counts_stddev" align="center" style="display: inline-block"></div>
            <div id="chart_overall_stddev_cont" align="center" style="display: inline-block"></div>
    </div>
    <h2>Same profile means</h2>
    <a id="chart_Same profile means-hide" href="javascript:toggle_short('chart_Same profile means');">[-]</a><br>
    <div id="chart_Same profile means" style="display: block">
        <br>
        
            <div id="chart_Localhost_mean_counts" align="center" style="display: inline-block"></div>
            <div id="chart_Localhost_mean_overall_cont" align="center" style="display: inline-block"></div>
        <br>
        
            <div id="chart_Localhost_mean_counts" align="center" style="display: inline-block"></div>
            <div id="chart_Localhost_mean_overall_cont" align="center" style="display: inline-block"></div>
        <br>
        
            <div id="chart_Localhost_mean_counts" align="center" style="display: inline-block"></div>
            <div id="chart_Localhost_mean_overall_cont" align="center" style="display: inline-block"></div>
    </div>
    <h2>Same test suite means</h2>
    <a id="chart_Same test suite means-hide" href="javascript:toggle_short('chart_Same test suite means');">[-]</a><br>
    <div id="chart_Same test suite means" style="display: block">
        <br>
        
            <div id="chart_Localhost_fio_iops_sec_mean_counts" align="center" style="display: inline-block"></div>
            <div id="chart_Localhost_fio_iops_sec_mean_overall_cont" align="center" style="display: inline-block"></div>
        <br>
        
            <div id="chart_Localhost_fio_iops_sec_mean_counts" align="center" style="display: inline-block"></div>
            <div id="chart_Localhost_fio_iops_sec_mean_overall_cont" align="center" style="display: inline-block"></div>
        <br>
        
            <div id="chart_Localhost_fio_iops_sec_mean_counts" align="center" style="display: inline-block"></div>
            <div id="chart_Localhost_fio_iops_sec_mean_overall_cont" align="center" style="display: inline-block"></div>
    </div>
    <h2>Same test (different params)</h2>
    <a id="chart_Same test (different params)-hide" href="javascript:toggle_short('chart_Same test (different params)');">[-]</a><br>
    <div id="chart_Same test (different params)" style="display: block">
        <br>
        
            <div id="chart_Localhost_fio_read_throughput_iops_sec_mean_counts" align="center" style="display: inline-block"></div>
            <div id="chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont" align="center" style="display: inline-block"></div>
        <br>
        
            <div id="chart_Localhost_fio_read_throughput_iops_sec_mean_counts" align="center" style="display: inline-block"></div>
            <div id="chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont" align="center" style="display: inline-block"></div>
        <br>
        
            <div id="chart_Localhost_fio_read_throughput_iops_sec_mean_counts" align="center" style="display: inline-block"></div>
            <div id="chart_Localhost_fio_read_throughput_iops_sec_mean_overall_cont" align="center" style="display: inline-block"></div>
    </div>
</div>
</body>