corrade-http-templates – Blame information for rev

Subversion Repositories:
Rev:
"; daysInMonth = this._getDaysInMonth( drawYear, drawMonth ); if ( drawYear === inst.selectedYear && drawMonth === inst.selectedMonth ) { inst.selectedDay = Math.min( inst.selectedDay, daysInMonth ); } leadDays = ( this._getFirstDayOfMonth( drawYear, drawMonth ) - firstDay + 7 ) % 7; curRows = Math.ceil( ( leadDays + daysInMonth ) / 7 ); // calculate the number of rows to generate numRows = ( isMultiMonth ? this.maxRows > curRows ? this.maxRows : curRows : curRows ); //If multiple months, use the higher number of rows (see #7043)this.maxRows = numRows; printDate = this._daylightSavingAdjust( newDate( drawYear, drawMonth, 1 - leadDays ) );for ( dRow = 0; dRow < numRows; dRow++ ) { // create date picker rows calender += "<tr>"; tbody = ( !showWeek ? "" : "<td class='ui-datepicker-week-col'>" +this._get( inst, "calculateWeek" )( printDate ) + "</td>" );for ( dow = 0; dow < 7; dow++ ) { // create date picker days daySettings = ( beforeShowDay ? beforeShowDay.apply( ( inst.input ? inst.input[ 0 ] : null ), [ printDate ] ) : [ true, "" ] ); otherMonth = ( printDate.getMonth() !== drawMonth ); unselectable = ( otherMonth && !selectOtherMonths ) || !daySettings[ 0 ] || ( minDate && printDate < minDate ) || ( maxDate && printDate > maxDate ); tbody += "<td class='" + ( ( dow + firstDay + 6 ) % 7 >= 5 ? " ui-datepicker-week-end" : "" ) + // highlight weekends ( otherMonth ? " ui-datepicker-other-month" : "" ) + // highlight days from other months ( ( printDate.getTime() === selectedDate.getTime() && drawMonth === inst.selectedMonth && inst._keyEvent ) || // user pressed key ( defaultDate.getTime() === printDate.getTime() && defaultDate.getTime() === selectedDate.getTime() ) ?// or defaultDate is current printedDate and defaultDate is selectedDate" " + this._dayOverClass : "" ) + // highlight selected day ( unselectable ? " " + this._unselectableClass + " ui-state-disabled" : "" ) + // highlight unselectable days ( otherMonth && !showOtherMonths ? "" : " " + daySettings[ 1 ] + // highlight custom dates ( printDate.getTime() === currentDate.getTime() ? " " + this._currentClass : "" ) + // highlight selected day ( printDate.getTime() === today.getTime() ? " ui-datepicker-today" : "" ) ) + "'" + // highlight today (if different) ( ( !otherMonth || showOtherMonths ) && daySettings[ 2 ] ? " title='" + daySettings[ 2 ].replace( /'/g, "&#39;" ) + "'" : "" ) + // cell title ( unselectable ? "" : " data-handler='selectDay' data-event='click' data-month='" + printDate.getMonth() + "' data-year='" + printDate.getFullYear() + "'" ) + ">" + // actions ( otherMonth && !showOtherMonths ? "&#xa0;" : // display for other months ( unselectable ? "<span class='ui-state-default'>" + printDate.getDate() + "</span>" : "<a class='ui-state-default" + ( printDate.getTime() === today.getTime() ? " ui-state-highlight" : "" ) + ( printDate.getTime() === currentDate.getTime() ? " ui-state-active" : "" ) + // highlight selected day ( otherMonth ? " ui-priority-secondary" : "" ) + // distinguish dates from other months"' href='#'>" + printDate.getDate() + "</a>" ) ) + "</td>"; // display selectable date printDate.setDate( printDate.getDate() + 1 ); printDate = this._daylightSavingAdjust( printDate ); } calender += tbody + "</tr>"; } drawMonth++;if ( drawMonth > 11 ) { drawMonth = 0; drawYear++; } calender += "</tbody></table>" + ( isMultiMonth ? "</div>" + ( ( numMonths[ 0 ] > 0 && col === numMonths[ 1 ] - 1 ) ? "<div class='ui-datepicker-row-break'></div>" : "" ) : "" ); group += calender; } html += group; } html += buttonPanel; inst._keyEvent = false;return html; },/* Generate the month and year header. */ _generateMonthYearHeader: function( inst, drawMonth, drawYear, minDate, maxDate, secondary, monthNames, monthNamesShort ) {var inMinYear, inMaxYear, month, years, thisYear, determineYear, year, endYear, changeMonth = this._get( inst, "changeMonth" ), changeYear = this._get( inst, "changeYear" ), showMonthAfterYear = this._get( inst, "showMonthAfterYear" ), html = "<div class='ui-datepicker-title'>", monthHtml = "";// Month selectionif ( secondary || !changeMonth ) { monthHtml += "<span class='ui-datepicker-month'>" + monthNames[ drawMonth ] + "</span>"; } else { inMinYear = ( minDate && minDate.getFullYear() === drawYear ); inMaxYear = ( maxDate && maxDate.getFullYear() === drawYear ); monthHtml += "<select class='ui-datepicker-month' data-handler='selectMonth' data-event='change'>";for ( month = 0; month < 12; month++ ) {if ( ( !inMinYear || month >= minDate.getMonth() ) && ( !inMaxYear || month <= maxDate.getMonth() ) ) { monthHtml += "<option value='" + month + "'" + ( month === drawMonth ? " selected='selected'" : "" ) +">" + monthNamesShort[ month ] + "</option>"; } } monthHtml += "</select>"; }if ( !showMonthAfterYear ) { html += monthHtml + ( secondary || !( changeMonth && changeYear ) ? "&#xa0;" : "" ); }// Year selectionif ( !inst.yearshtml ) { inst.yearshtml = "";if ( secondary || !changeYear ) { html += "<span class='ui-datepicker-year'>" + drawYear + "</span>"; } else {// determine range of years to display years = this._get( inst, "yearRange" ).split( ":" ); thisYear = newDate().getFullYear(); determineYear = function( value ) {var year = ( value.match( /c[+\-].*/ ) ? drawYear + parseInt( value.substring( 1 ), 10 ) : ( value.match( /[+\-].*/ ) ? thisYear + parseInt( value, 10 ) :parseInt( value, 10 ) ) );return ( isNaN( year ) ? thisYear : year ); }; year = determineYear( years[ 0 ] ); endYear = Math.max( year, determineYear( years[ 1 ] || "" ) ); year = ( minDate ? Math.max( year, minDate.getFullYear() ) : year ); endYear = ( maxDate ? Math.min( endYear, maxDate.getFullYear() ) : endYear ); inst.yearshtml += "<select class='ui-datepicker-year' data-handler='selectYear' data-event='change'>";for ( ; year <= endYear; year++ ) { inst.yearshtml += "<option value='" + year + "'" + ( year === drawYear ? " selected='selected'" : "" ) +">" + year + "</option>"; } inst.yearshtml += "</select>"; html += inst.yearshtml; inst.yearshtml = null; } } html += this._get( inst, "yearSuffix" );if ( showMonthAfterYear ) { html += ( secondary || !( changeMonth && changeYear ) ? "&#xa0;" : "" ) + monthHtml; } html += "</div>"; // Close datepicker_headerreturn html; },/* Adjust one of the date sub-fields. */ _adjustInstDate: function( inst, offset, period ) {var year = inst.selectedYear + ( period === "Y" ? offset : 0 ), month = inst.selectedMonth + ( period === "M" ? offset : 0 ), day = Math.min( inst.selectedDay, this._getDaysInMonth( year, month ) ) + ( period === "D" ? offset : 0 ), date = this._restrictMinMax( inst, this._daylightSavingAdjust( newDate( year, month, day ) ) ); inst.selectedDay = date.getDate(); inst.drawMonth = inst.selectedMonth = date.getMonth(); inst.drawYear = inst.selectedYear = date.getFullYear();if ( period === "M" || period === "Y" ) {this._notifyChange( inst ); } },/* Ensure a date is within any min/max bounds. */ _restrictMinMax: function( inst, date ) {var minDate = this._getMinMaxDate( inst, "min" ), maxDate = this._getMinMaxDate( inst, "max" ), newDate = ( minDate && date < minDate ? minDate : date );return ( maxDate && newDate > maxDate ? maxDate : newDate ); },/* Notify change of month/year. */ _notifyChange: function( inst ) {var onChange = this._get( inst, "onChangeMonthYear" );if ( onChange ) { onChange.apply( ( inst.input ? inst.input[ 0 ] : null ), [ inst.selectedYear, inst.selectedMonth + 1, inst ] ); } },/* Determine the number of months to show. */ _getNumberOfMonths: function( inst ) {var numMonths = this._get( inst, "numberOfMonths" );return ( numMonths == null ? [ 1, 1 ] : ( typeof numMonths === "number" ? [ 1, numMonths ] : numMonths ) ); },/* Determine the current maximum date - ensure no time components are set. */ _getMinMaxDate: function( inst, minMax ) {returnthis._determineDate( inst, this._get( inst, minMax + "Date" ), null ); },/* Find the number of days in a given month. */ _getDaysInMonth: function( year, month ) {return 32 - this._daylightSavingAdjust( newDate( year, month, 32 ) ).getDate(); },/* Find the day of the week of the first of a month. */ _getFirstDayOfMonth: function( year, month ) {returnnewDate( year, month, 1 ).getDay(); },/* Determines if we should allow a "next/prev" month display change. */ _canAdjustMonth: function( inst, offset, curYear, curMonth ) {var numMonths = this._getNumberOfMonths( inst ), date = this._daylightSavingAdjust( newDate( curYear, curMonth + ( offset < 0 ? offset : numMonths[ 0 ] * numMonths[ 1 ] ), 1 ) );if ( offset < 0 ) { date.setDate( this._getDaysInMonth( date.getFullYear(), date.getMonth() ) ); }returnthis._isInRange( inst, date ); },/* Is the given date in the accepted range? */ _isInRange: function( inst, date ) {var yearSplit, currentYear, minDate = this._getMinMaxDate( inst, "min" ), maxDate = this._getMinMaxDate( inst, "max" ), minYear = null, maxYear = null, years = this._get( inst, "yearRange" );if ( years ) { yearSplit = years.split( ":" ); currentYear = newDate().getFullYear(); minYear = parseInt( yearSplit[ 0 ], 10 ); maxYear = parseInt( yearSplit[ 1 ], 10 );if ( yearSplit[ 0 ].match( /[+\-].*/ ) ) { minYear += currentYear; }if ( yearSplit[ 1 ].match( /[+\-].*/ ) ) { maxYear += currentYear; } }return ( ( !minDate || date.getTime() >= minDate.getTime() ) && ( !maxDate || date.getTime() <= maxDate.getTime() ) && ( !minYear || date.getFullYear() >= minYear ) && ( !maxYear || date.getFullYear() <= maxYear ) ); },/* Provide the configuration settings for formatting/parsing. */ _getFormatConfig: function( inst ) {var shortYearCutoff = this._get( inst, "shortYearCutoff" ); shortYearCutoff = ( typeof shortYearCutoff !== "string" ? shortYearCutoff :newDate().getFullYear() % 100 + parseInt( shortYearCutoff, 10 ) );return { shortYearCutoff: shortYearCutoff, dayNamesShort: this._get( inst, "dayNamesShort" ), dayNames: this._get( inst, "dayNames" ), monthNamesShort: this._get( inst, "monthNamesShort" ), monthNames: this._get( inst, "monthNames" ) }; },/* Format the given date for display. */ _formatDate: function( inst, day, month, year ) {if ( !day ) { inst.currentDay = inst.selectedDay; inst.currentMonth = inst.selectedMonth; inst.currentYear = inst.selectedYear; }var date = ( day ? ( typeof day === "object" ? day :this._daylightSavingAdjust( newDate( year, month, day ) ) ) :this._daylightSavingAdjust( newDate( inst.currentYear, inst.currentMonth, inst.currentDay ) ) );returnthis.formatDate( this._get( inst, "dateFormat" ), date, this._getFormatConfig( inst ) ); }} );/* * Bind hover events for datepicker elements. * Done via delegate so the binding only occurs once in the lifetime of the parent div. * Global datepicker_instActive, set by _updateDatepicker allows the handlers to find their way back to the active picker. */functiondatepicker_bindHover( dpDiv ) {var selector = "button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return dpDiv.on( "mouseout", selector, function() { $( this ).removeClass( "ui-state-hover" );if ( this.className.indexOf( "ui-datepicker-prev" ) !== -1 ) { $( this ).removeClass( "ui-datepicker-prev-hover" ); }if ( this.className.indexOf( "ui-datepicker-next" ) !== -1 ) { $( this ).removeClass( "ui-datepicker-next-hover" ); } } ) .on( "mouseover", selector, datepicker_handleMouseover );}functiondatepicker_handleMouseover() {if ( !$.datepicker._isDisabledDatepicker( datepicker_instActive.inline ? datepicker_instActive.dpDiv.parent()[ 0 ] : datepicker_instActive.input[ 0 ] ) ) { $( this ).parents( ".ui-datepicker-calendar" ).find( "a" ).removeClass( "ui-state-hover" ); $( this ).addClass( "ui-state-hover" );if ( this.className.indexOf( "ui-datepicker-prev" ) !== -1 ) { $( this ).addClass( "ui-datepicker-prev-hover" ); }if ( this.className.indexOf( "ui-datepicker-next" ) !== -1 ) { $( this ).addClass( "ui-datepicker-next-hover" ); } }}/* jQuery extend now ignores nulls! */functiondatepicker_extendRemove( target, props ) { $.extend( target, props );for ( var name in props ) {if ( props[ name ] == null ) { target[ name ] = props[ name ]; } }return target;}/* Invoke the datepicker functionality. @param options string - a command, optionally followed by additional parameters or Object - settings for attaching new datepicker functionality @return jQuery object */$.fn.datepicker = function( options ) {/* Verify an empty collection wasn't passed - Fixes #6976 */if ( !this.length ) {returnthis; }/* Initialise the date picker. */if ( !$.datepicker.initialized ) { $( document ).on( "mousedown", $.datepicker._checkExternalClick ); $.datepicker.initialized = true; }/* Append datepicker main container to body if not exist. */if ( $( "#" + $.datepicker._mainDivId ).length === 0 ) { $( "body" ).append( $.datepicker.dpDiv ); }var otherArgs = Array.prototype.slice.call( arguments, 1 );if ( typeof options === "string" && ( options === "isDisabled" || options === "getDate" || options === "widget" ) ) {return $.datepicker[ "_" + options + "Datepicker" ]. apply( $.datepicker, [ this[ 0 ] ].concat( otherArgs ) ); }if ( options === "option" && arguments.length === 2 && typeof arguments[ 1 ] === "string" ) {return $.datepicker[ "_" + options + "Datepicker" ]. apply( $.datepicker, [ this[ 0 ] ].concat( otherArgs ) ); }returnthis.each( function() { typeof options === "string" ? $.datepicker[ "_" + options + "Datepicker" ]. apply( $.datepicker, [ this ].concat( otherArgs ) ) : $.datepicker._attachDatepicker( this, options ); } );};$.datepicker = new Datepicker(); // singleton instance$.datepicker.initialized = false;$.datepicker.uuid = newDate().getTime();$.datepicker.version = "1.12.1";var widgetsDatepicker = $.datepicker;// This file is deprecatedvar ie = $.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() );/*! * jQuery UI Mouse 1.12.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license *///>>label: Mouse//>>group: Widgets//>>description: Abstracts mouse-based interactions to assist in creating certain widgets.//>>docs: http://api.jqueryui.com/mouse/var mouseHandled = false;$( document ).on( "mouseup", function() { mouseHandled = false;} );var widgetsMouse = $.widget( "ui.mouse", { version: "1.12.1", options: { cancel: "input, textarea, button, select, option", distance: 1, delay: 0 }, _mouseInit: function() {var that = this;this.element .on( "mousedown." + this.widgetName, function( event ) {return that._mouseDown( event ); } ) .on( "click." + this.widgetName, function( event ) {if ( true === $.data( event.target, that.widgetName + ".preventClickEvent" ) ) { $.removeData( event.target, that.widgetName + ".preventClickEvent" ); event.stopImmediatePropagation();returnfalse; } } );this.started = false; },// TODO: make sure destroying one instance of mouse doesn't mess with// other instances of mouse _mouseDestroy: function() {this.element.off( "." + this.widgetName );if ( this._mouseMoveDelegate ) {this.document .off( "mousemove." + this.widgetName, this._mouseMoveDelegate ) .off( "mouseup." + this.widgetName, this._mouseUpDelegate ); } }, _mouseDown: function( event ) {// don't let more than one widget handle mouseStartif ( mouseHandled ) {return; }this._mouseMoved = false;// We may have missed mouseup (out of window) ( this._mouseStarted && this._mouseUp( event ) );this._mouseDownEvent = event;var that = this, btnIsLeft = ( event.which === 1 ),// event.target.nodeName works around a bug in IE 8 with// disabled inputs (#7620) elIsCancel = ( typeof this.options.cancel === "string" && event.target.nodeName ? $( event.target ).closest( this.options.cancel ).length : false );if ( !btnIsLeft || elIsCancel || !this._mouseCapture( event ) ) {returntrue; }this.mouseDelayMet = !this.options.delay;if ( !this.mouseDelayMet ) {this._mouseDelayTimer = setTimeout( function() { that.mouseDelayMet = true; }, this.options.delay ); }if ( this._mouseDistanceMet( event ) && this._mouseDelayMet( event ) ) {this._mouseStarted = ( this._mouseStart( event ) !== false );if ( !this._mouseStarted ) { event.preventDefault();returntrue; } }// Click event may never have fired (Gecko & Opera)if ( true === $.data( event.target, this.widgetName + ".preventClickEvent" ) ) { $.removeData( event.target, this.widgetName + ".preventClickEvent" ); }// These delegates are required to keep contextthis._mouseMoveDelegate = function( event ) {return that._mouseMove( event ); };this._mouseUpDelegate = function( event ) {return that._mouseUp( event ); };this.document .on( "mousemove." + this.widgetName, this._mouseMoveDelegate ) .on( "mouseup." + this.widgetName, this._mouseUpDelegate ); event.preventDefault(); mouseHandled = true;returntrue; }, _mouseMove: function( event ) {// Only check for mouseups outside the document if you've moved inside the document// at least once. This prevents the firing of mouseup in the case of IE<9, which will// fire a mousemove event if content is placed under the cursor. See #7778// Support: IE <9if ( this._mouseMoved ) {// IE mouseup check - mouseup happened when mouse was out of windowif ( $.ui.ie && ( !document.documentMode || document.documentMode < 9 ) && !event.button ) {returnthis._mouseUp( event );// Iframe mouseup check - mouseup occurred in another document } elseif ( !event.which ) {// Support: Safari <=8 - 9// Safari sets which to 0 if you press any of the following keys// during a drag (#14461)if ( event.originalEvent.altKey || event.originalEvent.ctrlKey || event.originalEvent.metaKey || event.originalEvent.shiftKey ) {this.ignoreMissingWhich = true; } elseif ( !this.ignoreMissingWhich ) {returnthis._mouseUp( event ); } } }if ( event.which || event.button ) {this._mouseMoved = true; }if ( this._mouseStarted ) {this._mouseDrag( event );return event.preventDefault(); }if ( this._mouseDistanceMet( event ) && this._mouseDelayMet( event ) ) {this._mouseStarted = ( this._mouseStart( this._mouseDownEvent, event ) !== false ); ( this._mouseStarted ? this._mouseDrag( event ) : this._mouseUp( event ) ); }return !this._mouseStarted; }, _mouseUp: function( event ) {this.document .off( "mousemove." + this.widgetName, this._mouseMoveDelegate ) .off( "mouseup." + this.widgetName, this._mouseUpDelegate );if ( this._mouseStarted ) {this._mouseStarted = false;if ( event.target === this._mouseDownEvent.target ) { $.data( event.target, this.widgetName + ".preventClickEvent", true ); }this._mouseStop( event ); }if ( this._mouseDelayTimer ) { clearTimeout( this._mouseDelayTimer ); delete this._mouseDelayTimer; }this.ignoreMissingWhich = false; mouseHandled = false; event.preventDefault(); }, _mouseDistanceMet: function( event ) {return ( Math.max(Math.abs( this._mouseDownEvent.pageX - event.pageX ),Math.abs( this._mouseDownEvent.pageY - event.pageY ) ) >= this.options.distance ); }, _mouseDelayMet: function( /* event */ ) {returnthis.mouseDelayMet; },// These are placeholder methods, to be overriden by extending plugin _mouseStart: function( /* event */ ) {}, _mouseDrag: function( /* event */ ) {}, _mouseStop: function( /* event */ ) {}, _mouseCapture: function( /* event */ ) { returntrue; }} );// $.ui.plugin is deprecated. Use $.widget() extensions instead.var plugin = $.ui.plugin = { add: function( module, option, set ) {var i, proto = $.ui[ module ].prototype;for ( i in set ) { proto.plugins[ i ] = proto.plugins[ i ] || []; proto.plugins[ i ].push( [ option, set[ i ] ] ); } }, call: function( instance, name, args, allowDisconnected ) {var i, set = instance.plugins[ name ];if ( !set ) {return; }if ( !allowDisconnected && ( !instance.element[ 0 ].parentNode || instance.element[ 0 ].parentNode.nodeType === 11 ) ) {return; }for ( i = 0; i < set.length; i++ ) {if ( instance.options[ set[ i ][ 0 ] ] ) { set[ i ][ 1 ].apply( instance.element, args ); } } }};var safeBlur = $.ui.safeBlur = function( element ) {// Support: IE9 - 10 only// If the <body> is blurred, IE will switch windows, see #9420if ( element && element.nodeName.toLowerCase() !== "body" ) { $( element ).trigger( "blur" ); }};/*! * jQuery UI Draggable 1.12.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license *///>>label: Draggable//>>group: Interactions//>>description: Enables dragging functionality for any element.//>>docs: http://api.jqueryui.com/draggable///>>demos: http://jqueryui.com/draggable///>>css.structure: ../../themes/base/draggable.css$.widget( "ui.draggable", $.ui.mouse, { version: "1.12.1", widgetEventPrefix: "drag", options: { addClasses: true, appendTo: "parent", axis: false, connectToSortable: false, containment: false, cursor: "auto", cursorAt: false, grid: false, handle: false, helper: "original", iframeFix: false, opacity: false, refreshPositions: false, revert: false, revertDuration: 500, scope: "default", scroll: true, scrollSensitivity: 20, scrollSpeed: 20, snap: false, snapMode: "both", snapTolerance: 20, stack: false, zIndex: false,// Callbacks drag: null, start: null, stop: null }, _create: function() {if ( this.options.helper === "original" ) {this._setPositionRelative(); }if ( this.options.addClasses ) {this._addClass( "ui-draggable" ); }this._setHandleClassName();this._mouseInit(); }, _setOption: function( key, value ) {this._super( key, value );if ( key === "handle" ) {this._removeHandleClassName();this._setHandleClassName(); } }, _destroy: function() {if ( ( this.helper || this.element ).is( ".ui-draggable-dragging" ) ) {this.destroyOnClear = true;return; }this._removeHandleClassName();this._mouseDestroy(); }, _mouseCapture: function( event ) {var o = this.options;// Among others, prevent a drag on a resizable-handleif ( this.helper || o.disabled || $( event.target ).closest( ".ui-resizable-handle" ).length > 0 ) {returnfalse; }//Quit if we're not on a valid handlethis.handle = this._getHandle( event );if ( !this.handle ) {returnfalse; }this._blurActiveElement( event );this._blockFrames( o.iframeFix === true ? "iframe" : o.iframeFix );returntrue; }, _blockFrames: function( selector ) {this.iframeBlocks = this.document.find( selector ).map( function() {var iframe = $( this );return $( "<div>" ) .css( "position", "absolute" ) .appendTo( iframe.parent() ) .outerWidth( iframe.outerWidth() ) .outerHeight( iframe.outerHeight() ) .offset( iframe.offset() )[ 0 ]; } ); }, _unblockFrames: function() {if ( this.iframeBlocks ) {this.iframeBlocks.remove(); delete this.iframeBlocks; } }, _blurActiveElement: function( event ) {var activeElement = $.ui.safeActiveElement( this.document[ 0 ] ), target = $( event.target );// Don't blur if the event occurred on an element that is within// the currently focused element// See #10527, #12472if ( target.closest( activeElement ).length ) {return; }// Blur any element that currently has focus, see #4261 $.ui.safeBlur( activeElement ); }, _mouseStart: function( event ) {var o = this.options;//Create and append the visible helperthis.helper = this._createHelper( event );this._addClass( this.helper, "ui-draggable-dragging" );//Cache the helper sizethis._cacheHelperProportions();//If ddmanager is used for droppables, set the global draggableif ( $.ui.ddmanager ) { $.ui.ddmanager.current = this; }/* * - Position generation - * This block generates everything position related - it's the core of draggables. *///Cache the margins of the original elementthis._cacheMargins();//Store the helper's css positionthis.cssPosition = this.helper.css( "position" );this.scrollParent = this.helper.scrollParent( true );this.offsetParent = this.helper.offsetParent();this.hasFixedAncestor = this.helper.parents().filter( function() {return $( this ).css( "position" ) === "fixed"; } ).length > 0;//The element's absolute position on the page minus marginsthis.positionAbs = this.element.offset();this._refreshOffsets( event );//Generate the original positionthis.originalPosition = this.position = this._generatePosition( event, false );this.originalPageX = event.pageX;this.originalPageY = event.pageY;//Adjust the mouse offset relative to the helper if "cursorAt" is supplied ( o.cursorAt && this._adjustOffsetFromHelper( o.cursorAt ) );//Set a containment if given in the optionsthis._setContainment();//Trigger event + callbacksif ( this._trigger( "start", event ) === false ) {this._clear();returnfalse; }//Recache the helper sizethis._cacheHelperProportions();//Prepare the droppable offsetsif ( $.ui.ddmanager && !o.dropBehaviour ) { $.ui.ddmanager.prepareOffsets( this, event ); }// Execute the drag once - this causes the helper not to be visible before getting its// correct positionthis._mouseDrag( event, true );// If the ddmanager is used for droppables, inform the manager that dragging has started// (see #5003)if ( $.ui.ddmanager ) { $.ui.ddmanager.dragStart( this, event ); }returntrue; }, _refreshOffsets: function( event ) {this.offset = { top: this.positionAbs.top - this.margins.top, left: this.positionAbs.left - this.margins.left, scroll: false, parent: this._getParentOffset(), relative: this._getRelativeOffset() };this.offset.click = { left: event.pageX - this.offset.left, top: event.pageY - this.offset.top }; }, _mouseDrag: function( event, noPropagation ) {// reset any necessary cached properties (see #5009)if ( this.hasFixedAncestor ) {this.offset.parent = this._getParentOffset(); }//Compute the helpers positionthis.position = this._generatePosition( event, true );this.positionAbs = this._convertPositionTo( "absolute" );//Call plugins and callbacks and use the resulting position if something is returnedif ( !noPropagation ) {var ui = this._uiHash();if ( this._trigger( "drag", event, ui ) === false ) {this._mouseUp( new $.Event( "mouseup", event ) );returnfalse; }this.position = ui.position; }this.helper[ 0 ].style.left = this.position.left + "px";this.helper[ 0 ].style.top = this.position.top + "px";if ( $.ui.ddmanager ) { $.ui.ddmanager.drag( this, event ); }returnfalse; }, _mouseStop: function( event ) {//If we are using droppables, inform the manager about the dropvar that = this, dropped = false;if ( $.ui.ddmanager && !this.options.dropBehaviour ) { dropped = $.ui.ddmanager.drop( this, event ); }//if a drop comes from outside (a sortable)if ( this.dropped ) { dropped = this.dropped;this.dropped = false; }if ( ( this.options.revert === "invalid" && !dropped ) || ( this.options.revert === "valid" && dropped ) ||this.options.revert === true || ( $.isFunction( this.options.revert ) &&this.options.revert.call( this.element, dropped ) ) ) { $( this.helper ).animate(this.originalPosition,parseInt( this.options.revertDuration, 10 ),function() {if ( that._trigger( "stop", event ) !== false ) { that._clear(); } } ); } else {if ( this._trigger( "stop", event ) !== false ) {this._clear(); } }returnfalse; }, _mouseUp: function( event ) {this._unblockFrames();// If the ddmanager is used for droppables, inform the manager that dragging has stopped// (see #5003)if ( $.ui.ddmanager ) { $.ui.ddmanager.dragStop( this, event ); }// Only need to focus if the event occurred on the draggable itself, see #10527if ( this.handleElement.is( event.target ) ) {// The interaction is over; whether or not the click resulted in a drag,// focus the elementthis.element.trigger( "focus" ); }return $.ui.mouse.prototype._mouseUp.call( this, event ); }, cancel: function() {if ( this.helper.is( ".ui-draggable-dragging" ) ) {this._mouseUp( new $.Event( "mouseup", { target: this.element[ 0 ] } ) ); } else {this._clear(); }returnthis; }, _getHandle: function( event ) {returnthis.options.handle ? !!$( event.target ).closest( this.element.find( this.options.handle ) ).length :true; }, _setHandleClassName: function() {this.handleElement = this.options.handle ?this.element.find( this.options.handle ) : this.element;this._addClass( this.handleElement, "ui-draggable-handle" ); }, _removeHandleClassName: function() {this._removeClass( this.handleElement, "ui-draggable-handle" ); }, _createHelper: function( event ) {var o = this.options, helperIsFunction = $.isFunction( o.helper ), helper = helperIsFunction ? $( o.helper.apply( this.element[ 0 ], [ event ] ) ) : ( o.helper === "clone" ?this.element.clone().removeAttr( "id" ) :this.element );if ( !helper.parents( "body" ).length ) { helper.appendTo( ( o.appendTo === "parent" ?this.element[ 0 ].parentNode : o.appendTo ) ); }// Http://bugs.jqueryui.com/ticket/9446// a helper function can return the original element// which wouldn't have been set to relative in _createif ( helperIsFunction && helper[ 0 ] === this.element[ 0 ] ) {this._setPositionRelative(); }if ( helper[ 0 ] !== this.element[ 0 ] && !( /(fixed|absolute)/ ).test( helper.css( "position" ) ) ) { helper.css( "position", "absolute" ); }return helper; }, _setPositionRelative: function() {if ( !( /^(?:r|a|f)/ ).test( this.element.css( "position" ) ) ) {this.element[ 0 ].style.position = "relative"; } }, _adjustOffsetFromHelper: function( obj ) {if ( typeof obj === "string" ) { obj = obj.split( " " ); }if ( $.isArray( obj ) ) { obj = { left: +obj[ 0 ], top: +obj[ 1 ] || 0 }; }if ( "left"in obj ) {this.offset.click.left = obj.left + this.margins.left; }if ( "right"in obj ) {this.offset.click.left = this.helperProportions.width - obj.right + this.margins.left; }if ( "top"in obj ) {this.offset.click.top = obj.top + this.margins.top; }if ( "bottom"in obj ) {this.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top; } }, _isRootNode: function( element ) {return ( /(html|body)/i ).test( element.tagName ) || element === this.document[ 0 ]; }, _getParentOffset: function() {//Get the offsetParent and cache its positionvar po = this.offsetParent.offset(), document = this.document[ 0 ];// This is a special case where we need to modify a offset calculated on start, since the// following happened:// 1. The position of the helper is absolute, so it's position is calculated based on the// next positioned parent// 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't// the document, which means that the scroll is included in the initial calculation of the// offset of the parent, and never recalculated upon dragif ( this.cssPosition === "absolute" && this.scrollParent[ 0 ] !== document && $.contains( this.scrollParent[ 0 ], this.offsetParent[ 0 ] ) ) { po.left += this.scrollParent.scrollLeft(); po.top += this.scrollParent.scrollTop(); }if ( this._isRootNode( this.offsetParent[ 0 ] ) ) { po = { top: 0, left: 0 }; }return { top: po.top + ( parseInt( this.offsetParent.css( "borderTopWidth" ), 10 ) || 0 ), left: po.left + ( parseInt( this.offsetParent.css( "borderLeftWidth" ), 10 ) || 0 ) }; }, _getRelativeOffset: function() {if ( this.cssPosition !== "relative" ) {return { top: 0, left: 0 }; }var p = this.element.position(), scrollIsRootNode = this._isRootNode( this.scrollParent[ 0 ] );return { top: p.top - ( parseInt( this.helper.css( "top" ), 10 ) || 0 ) + ( !scrollIsRootNode ? this.scrollParent.scrollTop() : 0 ), left: p.left - ( parseInt( this.helper.css( "left" ), 10 ) || 0 ) + ( !scrollIsRootNode ? this.scrollParent.scrollLeft() : 0 ) }; }, _cacheMargins: function() {this.margins = { left: ( parseInt( this.element.css( "marginLeft" ), 10 ) || 0 ), top: ( parseInt( this.element.css( "marginTop" ), 10 ) || 0 ), right: ( parseInt( this.element.css( "marginRight" ), 10 ) || 0 ), bottom: ( parseInt( this.element.css( "marginBottom" ), 10 ) || 0 ) }; }, _cacheHelperProportions: function() {this.helperProportions = { width: this.helper.outerWidth(), height: this.helper.outerHeight() }; }, _setContainment: function() {var isUserScrollable, c, ce, o = this.options, document = this.document[ 0 ];this.relativeContainer = null;if ( !o.containment ) {this.containment = null;return; }if ( o.containment === "window" ) {this.containment = [ $( window ).scrollLeft() - this.offset.relative.left - this.offset.parent.left, $( window ).scrollTop() - this.offset.relative.top - this.offset.parent.top, $( window ).scrollLeft() + $( window ).width() -this.helperProportions.width - this.margins.left, $( window ).scrollTop() + ( $( window ).height() || document.body.parentNode.scrollHeight ) -this.helperProportions.height - this.margins.top ];return; }if ( o.containment === "document" ) {this.containment = [ 0, 0, $( document ).width() - this.helperProportions.width - this.margins.left, ( $( document ).height() || document.body.parentNode.scrollHeight ) -this.helperProportions.height - this.margins.top ];return; }if ( o.containment.constructor === Array ) {this.containment = o.containment;return; }if ( o.containment === "parent" ) { o.containment = this.helper[ 0 ].parentNode; } c = $( o.containment ); ce = c[ 0 ];if ( !ce ) {return; } isUserScrollable = /(scroll|auto)/.test( c.css( "overflow" ) );this.containment = [ ( parseInt( c.css( "borderLeftWidth" ), 10 ) || 0 ) + ( parseInt( c.css( "paddingLeft" ), 10 ) || 0 ), ( parseInt( c.css( "borderTopWidth" ), 10 ) || 0 ) + ( parseInt( c.css( "paddingTop" ), 10 ) || 0 ), ( isUserScrollable ? Math.max( ce.scrollWidth, ce.offsetWidth ) : ce.offsetWidth ) - ( parseInt( c.css( "borderRightWidth" ), 10 ) || 0 ) - ( parseInt( c.css( "paddingRight" ), 10 ) || 0 ) -this.helperProportions.width -this.margins.left -this.margins.right, ( isUserScrollable ? Math.max( ce.scrollHeight, ce.offsetHeight ) : ce.offsetHeight ) - ( parseInt( c.css( "borderBottomWidth" ), 10 ) || 0 ) - ( parseInt( c.css( "paddingBottom" ), 10 ) || 0 ) -this.helperProportions.height -this.margins.top -this.margins.bottom ];this.relativeContainer = c; }, _convertPositionTo: function( d, pos ) {if ( !pos ) { pos = this.position; }var mod = d === "absolute" ? 1 : -1, scrollIsRootNode = this._isRootNode( this.scrollParent[ 0 ] );return { top: (// The absolute mouse position pos.top +// Only for relative positioned nodes: Relative offset from element to offset parentthis.offset.relative.top * mod +// The offsetParent's offset without borders (offset + border)this.offset.parent.top * mod - ( ( this.cssPosition === "fixed" ? -this.offset.scroll.top : ( scrollIsRootNode ? 0 : this.offset.scroll.top ) ) * mod ) ), left: (// The absolute mouse position pos.left +// Only for relative positioned nodes: Relative offset from element to offset parentthis.offset.relative.left * mod +// The offsetParent's offset without borders (offset + border)this.offset.parent.left * mod - ( ( this.cssPosition === "fixed" ? -this.offset.scroll.left : ( scrollIsRootNode ? 0 : this.offset.scroll.left ) ) * mod ) ) }; }, _generatePosition: function( event, constrainPosition ) {var containment, co, top, left, o = this.options, scrollIsRootNode = this._isRootNode( this.scrollParent[ 0 ] ), pageX = event.pageX, pageY = event.pageY;// Cache the scrollif ( !scrollIsRootNode || !this.offset.scroll ) {this.offset.scroll = { top: this.scrollParent.scrollTop(), left: this.scrollParent.scrollLeft() }; }/* * - Position constraining - * Constrain the position to a mix of grid, containment. */// If we are not dragging yet, we won't check for optionsif ( constrainPosition ) {if ( this.containment ) {if ( this.relativeContainer ) { co = this.relativeContainer.offset(); containment = [this.containment[ 0 ] + co.left,this.containment[ 1 ] + co.top,this.containment[ 2 ] + co.left,this.containment[ 3 ] + co.top ]; } else { containment = this.containment; }if ( event.pageX - this.offset.click.left < containment[ 0 ] ) { pageX = containment[ 0 ] + this.offset.click.left; }if ( event.pageY - this.offset.click.top < containment[ 1 ] ) { pageY = containment[ 1 ] + this.offset.click.top; }if ( event.pageX - this.offset.click.left > containment[ 2 ] ) { pageX = containment[ 2 ] + this.offset.click.left; }if ( event.pageY - this.offset.click.top > containment[ 3 ] ) { pageY = containment[ 3 ] + this.offset.click.top; } }if ( o.grid ) {//Check for grid elements set to 0 to prevent divide by 0 error causing invalid// argument errors in IE (see ticket #6950) top = o.grid[ 1 ] ? this.originalPageY + Math.round( ( pageY -this.originalPageY ) / o.grid[ 1 ] ) * o.grid[ 1 ] : this.originalPageY; pageY = containment ? ( ( top - this.offset.click.top >= containment[ 1 ] || top - this.offset.click.top > containment[ 3 ] ) ? top : ( ( top - this.offset.click.top >= containment[ 1 ] ) ? top - o.grid[ 1 ] : top + o.grid[ 1 ] ) ) : top; left = o.grid[ 0 ] ? this.originalPageX + Math.round( ( pageX - this.originalPageX ) / o.grid[ 0 ] ) * o.grid[ 0 ] :this.originalPageX; pageX = containment ? ( ( left - this.offset.click.left >= containment[ 0 ] || left - this.offset.click.left > containment[ 2 ] ) ? left : ( ( left - this.offset.click.left >= containment[ 0 ] ) ? left - o.grid[ 0 ] : left + o.grid[ 0 ] ) ) : left; }if ( o.axis === "y" ) { pageX = this.originalPageX; }if ( o.axis === "x" ) { pageY = this.originalPageY; } }return { top: (// The absolute mouse position pageY -// Click offset (relative to the element)this.offset.click.top -// Only for relative positioned nodes: Relative offset from element to offset parentthis.offset.relative.top -// The offsetParent's offset without borders (offset + border)this.offset.parent.top + ( this.cssPosition === "fixed" ? -this.offset.scroll.top : ( scrollIsRootNode ? 0 : this.offset.scroll.top ) ) ), left: (// The absolute mouse position pageX -// Click offset (relative to the element)this.offset.click.left -// Only for relative positioned nodes: Relative offset from element to offset parentthis.offset.relative.left -// The offsetParent's offset without borders (offset + border)this.offset.parent.left + ( this.cssPosition === "fixed" ? -this.offset.scroll.left : ( scrollIsRootNode ? 0 : this.offset.scroll.left ) ) ) }; }, _clear: function() {this._removeClass( this.helper, "ui-draggable-dragging" );if ( this.helper[ 0 ] !== this.element[ 0 ] && !this.cancelHelperRemoval ) {this.helper.remove(); }this.helper = null;this.cancelHelperRemoval = false;if ( this.destroyOnClear ) {this.destroy(); } },// From now on bulk stuff - mainly helpers _trigger: function( type, event, ui ) { ui = ui || this._uiHash(); $.ui.plugin.call( this, type, [ event, ui, this ], true );// Absolute position and offset (see #6884 ) have to be recalculated after pluginsif ( /^(drag|start|stop)/.test( type ) ) {this.positionAbs = this._convertPositionTo( "absolute" ); ui.offset = this.positionAbs; }return $.Widget.prototype._trigger.call( this, type, event, ui ); }, plugins: {}, _uiHash: function() {return { helper: this.helper, position: this.position, originalPosition: this.originalPosition, offset: this.positionAbs }; }} );$.ui.plugin.add( "draggable", "connectToSortable", { start: function( event, ui, draggable ) {var uiSortable = $.extend( {}, ui, { item: draggable.element } ); draggable.sortables = []; $( draggable.options.connectToSortable ).each( function() {var sortable = $( this ).sortable( "instance" );if ( sortable && !sortable.options.disabled ) { draggable.sortables.push( sortable );// RefreshPositions is called at drag start to refresh the containerCache// which is used in drag. This ensures it's initialized and synchronized// with any changes that might have happened on the page since initialization. sortable.refreshPositions(); sortable._trigger( "activate", event, uiSortable ); } } ); }, stop: function( event, ui, draggable ) {var uiSortable = $.extend( {}, ui, { item: draggable.element } ); draggable.cancelHelperRemoval = false; $.each( draggable.sortables, function() {var sortable = this;if ( sortable.isOver ) { sortable.isOver = 0;// Allow this sortable to handle removing the helper draggable.cancelHelperRemoval = true; sortable.cancelHelperRemoval = false;// Use _storedCSS To restore properties in the sortable,// as this also handles revert (#9675) since the draggable// may have modified them in unexpected ways (#8809) sortable._storedCSS = { position: sortable.placeholder.css( "position" ), top: sortable.placeholder.css( "top" ), left: sortable.placeholder.css( "left" ) }; sortable._mouseStop( event );// Once drag has ended, the sortable should return to using// its original helper, not the shared helper from draggable sortable.options.helper = sortable.options._helper; } else {// Prevent this Sortable from removing the helper.// However, don't set the draggable to remove the helper// either as another connected Sortable may yet handle the removal. sortable.cancelHelperRemoval = true; sortable._trigger( "deactivate", event, uiSortable ); } } ); }, drag: function( event, ui, draggable ) { $.each( draggable.sortables, function() {var innermostIntersecting = false, sortable = this;// Copy over variables that sortable's _intersectsWith uses sortable.positionAbs = draggable.positionAbs; sortable.helperProportions = draggable.helperProportions; sortable.offset.click = draggable.offset.click;if ( sortable._intersectsWith( sortable.containerCache ) ) { innermostIntersecting = true; $.each( draggable.sortables, function() {// Copy over variables that sortable's _intersectsWith usesthis.positionAbs = draggable.positionAbs;this.helperProportions = draggable.helperProportions;this.offset.click = draggable.offset.click;if ( this !== sortable &&this._intersectsWith( this.containerCache ) && $.contains( sortable.element[ 0 ], this.element[ 0 ] ) ) { innermostIntersecting = false; }return innermostIntersecting; } ); }if ( innermostIntersecting ) {// If it intersects, we use a little isOver variable and set it once,// so that the move-in stuff gets fired only once.if ( !sortable.isOver ) { sortable.isOver = 1;// Store draggable's parent in case we need to reappend to it later. draggable._parent = ui.helper.parent(); sortable.currentItem = ui.helper .appendTo( sortable.element ) .data( "ui-sortable-item", true );// Store helper option to later restore it sortable.options._helper = sortable.options.helper; sortable.options.helper = function() {return ui.helper[ 0 ]; };// Fire the start events of the sortable with our passed browser event,// and our own helper (so it doesn't create a new one) event.target = sortable.currentItem[ 0 ]; sortable._mouseCapture( event, true ); sortable._mouseStart( event, true, true );// Because the browser event is way off the new appended portlet,// modify necessary variables to reflect the changes sortable.offset.click.top = draggable.offset.click.top; sortable.offset.click.left = draggable.offset.click.left; sortable.offset.parent.left -= draggable.offset.parent.left - sortable.offset.parent.left; sortable.offset.parent.top -= draggable.offset.parent.top - sortable.offset.parent.top; draggable._trigger( "toSortable", event );// Inform draggable that the helper is in a valid drop zone,// used solely in the revert option to handle "valid/invalid". draggable.dropped = sortable.element;// Need to refreshPositions of all sortables in the case that// adding to one sortable changes the location of the other sortables (#9675) $.each( draggable.sortables, function() {this.refreshPositions(); } );// Hack so receive/update callbacks work (mostly) draggable.currentItem = draggable.element; sortable.fromOutside = draggable; }if ( sortable.currentItem ) { sortable._mouseDrag( event );// Copy the sortable's position because the draggable's can potentially reflect// a relative position, while sortable is always absolute, which the dragged// element has now become. (#8809) ui.position = sortable.position; } } else {// If it doesn't intersect with the sortable, and it intersected before,// we fake the drag stop of the sortable, but make sure it doesn't remove// the helper by using cancelHelperRemoval.if ( sortable.isOver ) { sortable.isOver = 0; sortable.cancelHelperRemoval = true;// Calling sortable's mouseStop would trigger a revert,// so revert must be temporarily false until after mouseStop is called. sortable.options._revert = sortable.options.revert; sortable.options.revert = false; sortable._trigger( "out", event, sortable._uiHash( sortable ) ); sortable._mouseStop( event, true );// Restore sortable behaviors that were modfied// when the draggable entered the sortable area (#9481) sortable.options.revert = sortable.options._revert; sortable.options.helper = sortable.options._helper;if ( sortable.placeholder ) { sortable.placeholder.remove(); }// Restore and recalculate the draggable's offset considering the sortable// may have modified them in unexpected ways. (#8809, #10669) ui.helper.appendTo( draggable._parent ); draggable._refreshOffsets( event ); ui.position = draggable._generatePosition( event, true ); draggable._trigger( "fromSortable", event );// Inform draggable that the helper is no longer in a valid drop zone draggable.dropped = false;// Need to refreshPositions of all sortables just in case removing// from one sortable changes the location of other sortables (#9675) $.each( draggable.sortables, function() {this.refreshPositions(); } ); } } } ); }} );$.ui.plugin.add( "draggable", "cursor", { start: function( event, ui, instance ) {var t = $( "body" ), o = instance.options;if ( t.css( "cursor" ) ) { o._cursor = t.css( "cursor" ); } t.css( "cursor", o.cursor ); }, stop: function( event, ui, instance ) {var o = instance.options;if ( o._cursor ) { $( "body" ).css( "cursor", o._cursor ); } }} );$.ui.plugin.add( "draggable", "opacity", { start: function( event, ui, instance ) {var t = $( ui.helper ), o = instance.options;if ( t.css( "opacity" ) ) { o._opacity = t.css( "opacity" ); } t.css( "opacity", o.opacity ); }, stop: function( event, ui, instance ) {var o = instance.options;if ( o._opacity ) { $( ui.helper ).css( "opacity", o._opacity ); } }} );$.ui.plugin.add( "draggable", "scroll", { start: function( event, ui, i ) {if ( !i.scrollParentNotHidden ) { i.scrollParentNotHidden = i.helper.scrollParent( false ); }if ( i.scrollParentNotHidden[ 0 ] !== i.document[ 0 ] && i.scrollParentNotHidden[ 0 ].tagName !== "HTML" ) { i.overflowOffset = i.scrollParentNotHidden.offset(); } }, drag: function( event, ui, i ) {var o = i.options, scrolled = false, scrollParent = i.scrollParentNotHidden[ 0 ], document = i.document[ 0 ];if ( scrollParent !== document && scrollParent.tagName !== "HTML" ) {if ( !o.axis || o.axis !== "x" ) {if ( ( i.overflowOffset.top + scrollParent.offsetHeight ) - event.pageY < o.scrollSensitivity ) { scrollParent.scrollTop = scrolled = scrollParent.scrollTop + o.scrollSpeed; } elseif ( event.pageY - i.overflowOffset.top < o.scrollSensitivity ) { scrollParent.scrollTop = scrolled = scrollParent.scrollTop - o.scrollSpeed; } }if ( !o.axis || o.axis !== "y" ) {if ( ( i.overflowOffset.left + scrollParent.offsetWidth ) - event.pageX < o.scrollSensitivity ) { scrollParent.scrollLeft = scrolled = scrollParent.scrollLeft + o.scrollSpeed; } elseif ( event.pageX - i.overflowOffset.left < o.scrollSensitivity ) { scrollParent.scrollLeft = scrolled = scrollParent.scrollLeft - o.scrollSpeed; } } } else {if ( !o.axis || o.axis !== "x" ) {if ( event.pageY - $( document ).scrollTop() < o.scrollSensitivity ) { scrolled = $( document ).scrollTop( $( document ).scrollTop() - o.scrollSpeed ); } elseif ( $( window ).height() - ( event.pageY - $( document ).scrollTop() ) < o.scrollSensitivity ) { scrolled = $( document ).scrollTop( $( document ).scrollTop() + o.scrollSpeed ); } }if ( !o.axis || o.axis !== "y" ) {if ( event.pageX - $( document ).scrollLeft() < o.scrollSensitivity ) { scrolled = $( document ).scrollLeft( $( document ).scrollLeft() - o.scrollSpeed ); } elseif ( $( window ).width() - ( event.pageX - $( document ).scrollLeft() ) < o.scrollSensitivity ) { scrolled = $( document ).scrollLeft( $( document ).scrollLeft() + o.scrollSpeed ); } } }if ( scrolled !== false && $.ui.ddmanager && !o.dropBehaviour ) { $.ui.ddmanager.prepareOffsets( i, event ); } }} );$.ui.plugin.add( "draggable", "snap", { start: function( event, ui, i ) {var o = i.options; i.snapElements = []; $( o.snap.constructor !== String ? ( o.snap.items || ":data(ui-draggable)" ) : o.snap ) .each( function() {var $t = $( this ), $o = $t.offset();if ( this !== i.element[ 0 ] ) { i.snapElements.push( { item: this, width: $t.outerWidth(), height: $t.outerHeight(), top: $o.top, left: $o.left } ); } } ); }, drag: function( event, ui, inst ) {var ts, bs, ls, rs, l, r, t, b, i, first, o = inst.options, d = o.snapTolerance, x1 = ui.offset.left, x2 = x1 + inst.helperProportions.width, y1 = ui.offset.top, y2 = y1 + inst.helperProportions.height;for ( i = inst.snapElements.length - 1; i >= 0; i-- ) { l = inst.snapElements[ i ].left - inst.margins.left; r = l + inst.snapElements[ i ].width; t = inst.snapElements[ i ].top - inst.margins.top; b = t + inst.snapElements[ i ].height;if ( x2 < l - d || x1 > r + d || y2 < t - d || y1 > b + d || !$.contains( inst.snapElements[ i ].item.ownerDocument, inst.snapElements[ i ].item ) ) {if ( inst.snapElements[ i ].snapping ) { ( inst.options.snap.release && inst.options.snap.release.call( inst.element, event, $.extend( inst._uiHash(), { snapItem: inst.snapElements[ i ].item } ) ) ); } inst.snapElements[ i ].snapping = false;continue; }if ( o.snapMode !== "inner" ) { ts = Math.abs( t - y2 ) <= d; bs = Math.abs( b - y1 ) <= d; ls = Math.abs( l - x2 ) <= d; rs = Math.abs( r - x1 ) <= d;if ( ts ) { ui.position.top = inst._convertPositionTo( "relative", { top: t - inst.helperProportions.height, left: 0 } ).top; }if ( bs ) { ui.position.top = inst._convertPositionTo( "relative", { top: b, left: 0 } ).top; }if ( ls ) { ui.position.left = inst._convertPositionTo( "relative", { top: 0, left: l - inst.helperProportions.width } ).left; }if ( rs ) { ui.position.left = inst._convertPositionTo( "relative", { top: 0, left: r } ).left; } } first = ( ts || bs || ls || rs );if ( o.snapMode !== "outer" ) { ts = Math.abs( t - y1 ) <= d; bs = Math.abs( b - y2 ) <= d; ls = Math.abs( l - x1 ) <= d; rs = Math.abs( r - x2 ) <= d;if ( ts ) { ui.position.top = inst._convertPositionTo( "relative", { top: t, left: 0 } ).top; }if ( bs ) { ui.position.top = inst._convertPositionTo( "relative", { top: b - inst.helperProportions.height, left: 0 } ).top; }if ( ls ) { ui.position.left = inst._convertPositionTo( "relative", { top: 0, left: l } ).left; }if ( rs ) { ui.position.left = inst._convertPositionTo( "relative", { top: 0, left: r - inst.helperProportions.width } ).left; } }if ( !inst.snapElements[ i ].snapping && ( ts || bs || ls || rs || first ) ) { ( inst.options.snap.snap && inst.options.snap.snap.call( inst.element, event, $.extend( inst._uiHash(), { snapItem: inst.snapElements[ i ].item } ) ) ); } inst.snapElements[ i ].snapping = ( ts || bs || ls || rs || first ); } }} );$.ui.plugin.add( "draggable", "stack", { start: function( event, ui, instance ) {var min, o = instance.options, group = $.makeArray( $( o.stack ) ).sort( function( a, b ) {return ( parseInt( $( a ).css( "zIndex" ), 10 ) || 0 ) - ( parseInt( $( b ).css( "zIndex" ), 10 ) || 0 ); } );if ( !group.length ) { return; } min = parseInt( $( group[ 0 ] ).css( "zIndex" ), 10 ) || 0; $( group ).each( function( i ) { $( this ).css( "zIndex", min + i ); } );this.css( "zIndex", ( min + group.length ) ); }} );$.ui.plugin.add( "draggable", "zIndex", { start: function( event, ui, instance ) {var t = $( ui.helper ), o = instance.options;if ( t.css( "zIndex" ) ) { o._zIndex = t.css( "zIndex" ); } t.css( "zIndex", o.zIndex ); }, stop: function( event, ui, instance ) {var o = instance.options;if ( o._zIndex ) { $( ui.helper ).css( "zIndex", o._zIndex ); } }} );var widgetsDraggable = $.ui.draggable;/*! * jQuery UI Resizable 1.12.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license *///>>label: Resizable//>>group: Interactions//>>description: Enables resize functionality for any element.//>>docs: http://api.jqueryui.com/resizable///>>demos: http://jqueryui.com/resizable///>>css.structure: ../../themes/base/core.css//>>css.structure: ../../themes/base/resizable.css//>>css.theme: ../../themes/base/theme.css$.widget( "ui.resizable", $.ui.mouse, { version: "1.12.1", widgetEventPrefix: "resize", options: { alsoResize: false, animate: false, animateDuration: "slow", animateEasing: "swing", aspectRatio: false, autoHide: false, classes: {"ui-resizable-se": "ui-icon ui-icon-gripsmall-diagonal-se" }, containment: false, ghost: false, grid: false, handles: "e,s,se", helper: false, maxHeight: null, maxWidth: null, minHeight: 10, minWidth: 10,// See #7960 zIndex: 90,// Callbacks resize: null, start: null, stop: null }, _num: function( value ) {returnparseFloat( value ) || 0; }, _isNumber: function( value ) {return !isNaN( parseFloat( value ) ); }, _hasScroll: function( el, a ) {if ( $( el ).css( "overflow" ) === "hidden" ) {returnfalse; }var scroll = ( a && a === "left" ) ? "scrollLeft" : "scrollTop", has = false;if ( el[ scroll ] > 0 ) {returntrue; }// TODO: determine which cases actually cause this to happen// if the element doesn't have the scroll set, see if it's possible to// set the scroll el[ scroll ] = 1; has = ( el[ scroll ] > 0 ); el[ scroll ] = 0;return has; }, _create: function() {var margins, o = this.options, that = this;this._addClass( "ui-resizable" ); $.extend( this, { _aspectRatio: !!( o.aspectRatio ), aspectRatio: o.aspectRatio, originalElement: this.element, _proportionallyResizeElements: [], _helper: o.helper || o.ghost || o.animate ? o.helper || "ui-resizable-helper" : null } );// Wrap the element if it cannot hold child nodesif ( this.element[ 0 ].nodeName.match( /^(canvas|textarea|input|select|button|img)$/i ) ) {this.element.wrap( $( "<div class='ui-wrapper' style='overflow: hidden;'></div>" ).css( { position: this.element.css( "position" ), width: this.element.outerWidth(), height: this.element.outerHeight(), top: this.element.css( "top" ), left: this.element.css( "left" ) } ) );this.element = this.element.parent().data("ui-resizable", this.element.resizable( "instance" ) );this.elementIsWrapper = true; margins = { marginTop: this.originalElement.css( "marginTop" ), marginRight: this.originalElement.css( "marginRight" ), marginBottom: this.originalElement.css( "marginBottom" ), marginLeft: this.originalElement.css( "marginLeft" ) };this.element.css( margins );this.originalElement.css( "margin", 0 );// support: Safari// Prevent Safari textarea resizethis.originalResizeStyle = this.originalElement.css( "resize" );this.originalElement.css( "resize", "none" );this._proportionallyResizeElements.push( this.originalElement.css( { position: "static", zoom: 1, display: "block" } ) );// Support: IE9// avoid IE jump (hard set the margin)this.originalElement.css( margins );this._proportionallyResize(); }this._setupHandles();if ( o.autoHide ) { $( this.element ) .on( "mouseenter", function() {if ( o.disabled ) {return; } that._removeClass( "ui-resizable-autohide" ); that._handles.show(); } ) .on( "mouseleave", function() {if ( o.disabled ) {return; }if ( !that.resizing ) { that._addClass( "ui-resizable-autohide" ); that._handles.hide(); } } ); }this._mouseInit(); }, _destroy: function() {this._mouseDestroy();var wrapper, _destroy = function( exp ) { $( exp ) .removeData( "resizable" ) .removeData( "ui-resizable" ) .off( ".resizable" ) .find( ".ui-resizable-handle" ) .remove(); };// TODO: Unwrap at same DOM positionif ( this.elementIsWrapper ) { _destroy( this.element ); wrapper = this.element;this.originalElement.css( { position: wrapper.css( "position" ), width: wrapper.outerWidth(), height: wrapper.outerHeight(), top: wrapper.css( "top" ), left: wrapper.css( "left" ) } ).insertAfter( wrapper ); wrapper.remove(); }this.originalElement.css( "resize", this.originalResizeStyle ); _destroy( this.originalElement );returnthis; }, _setOption: function( key, value ) {this._super( key, value );switch ( key ) {case"handles":this._removeHandles();this._setupHandles();break;default:break; } }, _setupHandles: function() {var o = this.options, handle, i, n, hname, axis, that = this;this.handles = o.handles || ( !$( ".ui-resizable-handle", this.element ).length ?"e,s,se" : { n: ".ui-resizable-n", e: ".ui-resizable-e", s: ".ui-resizable-s", w: ".ui-resizable-w", se: ".ui-resizable-se", sw: ".ui-resizable-sw", ne: ".ui-resizable-ne", nw: ".ui-resizable-nw" } );this._handles = $();if ( this.handles.constructor === String ) {if ( this.handles === "all" ) {this.handles = "n,e,s,w,se,sw,ne,nw"; } n = this.handles.split( "," );this.handles = {};for ( i = 0; i < n.length; i++ ) { handle = $.trim( n[ i ] ); hname = "ui-resizable-" + handle; axis = $( "<div>" );this._addClass( axis, "ui-resizable-handle " + hname ); axis.css( { zIndex: o.zIndex } );this.handles[ handle ] = ".ui-resizable-" + handle;this.element.append( axis ); } }this._renderAxis = function( target ) {var i, axis, padPos, padWrapper; target = target || this.element;for ( i inthis.handles ) {if ( this.handles[ i ].constructor === String ) {this.handles[ i ] = this.element.children( this.handles[ i ] ).first().show(); } elseif ( this.handles[ i ].jquery || this.handles[ i ].nodeType ) {this.handles[ i ] = $( this.handles[ i ] );this._on( this.handles[ i ], { "mousedown": that._mouseDown } ); }if ( this.elementIsWrapper &&this.originalElement[ 0 ] .nodeName .match( /^(textarea|input|select|button)$/i ) ) { axis = $( this.handles[ i ], this.element ); padWrapper = /sw|ne|nw|se|n|s/.test( i ) ? axis.outerHeight() : axis.outerWidth(); padPos = [ "padding",/ne|nw|n/.test( i ) ? "Top" :/se|sw|s/.test( i ) ? "Bottom" :/^e$/.test( i ) ? "Right" : "Left" ].join( "" ); target.css( padPos, padWrapper );this._proportionallyResize(); }this._handles = this._handles.add( this.handles[ i ] ); } };// TODO: make renderAxis a prototype functionthis._renderAxis( this.element );this._handles = this._handles.add( this.element.find( ".ui-resizable-handle" ) );this._handles.disableSelection();this._handles.on( "mouseover", function() {if ( !that.resizing ) {if ( this.className ) { axis = this.className.match( /ui-resizable-(se|sw|ne|nw|n|e|s|w)/i ); } that.axis = axis && axis[ 1 ] ? axis[ 1 ] : "se"; } } );if ( o.autoHide ) {this._handles.hide();this._addClass( "ui-resizable-autohide" ); } }, _removeHandles: function() {this._handles.remove(); }, _mouseCapture: function( event ) {var i, handle, capture = false;for ( i inthis.handles ) { handle = $( this.handles[ i ] )[ 0 ];if ( handle === event.target || $.contains( handle, event.target ) ) { capture = true; } }return !this.options.disabled && capture; }, _mouseStart: function( event ) {var curleft, curtop, cursor, o = this.options, el = this.element;this.resizing = true;this._renderProxy(); curleft = this._num( this.helper.css( "left" ) ); curtop = this._num( this.helper.css( "top" ) );if ( o.containment ) { curleft += $( o.containment ).scrollLeft() || 0; curtop += $( o.containment ).scrollTop() || 0; }this.offset = this.helper.offset();this.position = { left: curleft, top: curtop };this.size = this._helper ? { width: this.helper.width(), height: this.helper.height() } : { width: el.width(), height: el.height() };this.originalSize = this._helper ? { width: el.outerWidth(), height: el.outerHeight() } : { width: el.width(), height: el.height() };this.sizeDiff = { width: el.outerWidth() - el.width(), height: el.outerHeight() - el.height() };this.originalPosition = { left: curleft, top: curtop };this.originalMousePosition = { left: event.pageX, top: event.pageY };this.aspectRatio = ( typeof o.aspectRatio === "number" ) ? o.aspectRatio : ( ( this.originalSize.width / this.originalSize.height ) || 1 ); cursor = $( ".ui-resizable-" + this.axis ).css( "cursor" ); $( "body" ).css( "cursor", cursor === "auto" ? this.axis + "-resize" : cursor ); this._addClass( "ui-resizable-resizing" ); this._propagate( "start", event ); return true; }, _mouseDrag: function( event ) { var data, props, smp = this.originalMousePosition, a = this.axis, dx = ( event.pageX - smp.left ) || 0, dy = ( event.pageY - smp.top ) || 0, trigger = this._change[ a ]; this._updatePrevProperties(); if ( !trigger ) { return false; } data = trigger.apply( this, [ event, dx, dy ] ); this._updateVirtualBoundaries( event.shiftKey ); if ( this._aspectRatio || event.shiftKey ) { data = this._updateRatio( data, event ); } data = this._respectSize( data, event ); this._updateCache( data ); this._propagate( "resize", event ); props = this._applyChanges(); if ( !this._helper && this._proportionallyResizeElements.length ) { this._proportionallyResize(); } if ( !$.isEmptyObject( props ) ) { this._updatePrevProperties(); this._trigger( "resize", event, this.ui() ); this._applyChanges(); } return false; }, _mouseStop: function( event ) { this.resizing = false; var pr, ista, soffseth, soffsetw, s, left, top, o = this.options, that = this; if ( this._helper ) { pr = this._proportionallyResizeElements; ista = pr.length && ( /textarea/i ).test( pr[ 0 ].nodeName ); soffseth = ista && this._hasScroll( pr[ 0 ], "left" ) ? 0 : that.sizeDiff.height; soffsetw = ista ? 0 : that.sizeDiff.width; s = { width: ( that.helper.width() - soffsetw ), height: ( that.helper.height() - soffseth ) }; left = ( parseFloat( that.element.css( "left" ) ) + ( that.position.left - that.originalPosition.left ) ) || null; top = ( parseFloat( that.element.css( "top" ) ) + ( that.position.top - that.originalPosition.top ) ) || null; if ( !o.animate ) { this.element.css( $.extend( s, { top: top, left: left } ) ); } that.helper.height( that.size.height ); that.helper.width( that.size.width ); if ( this._helper && !o.animate ) { this._proportionallyResize(); } } $( "body" ).css( "cursor", "auto" ); this._removeClass( "ui-resizable-resizing" ); this._propagate( "stop", event ); if ( this._helper ) { this.helper.remove(); } return false; }, _updatePrevProperties: function() { this.prevPosition = { top: this.position.top, left: this.position.left }; this.prevSize = { width: this.size.width, height: this.size.height }; }, _applyChanges: function() { var props = {}; if ( this.position.top !== this.prevPosition.top ) { props.top = this.position.top + "px"; } if ( this.position.left !== this.prevPosition.left ) { props.left = this.position.left + "px"; } if ( this.size.width !== this.prevSize.width ) { props.width = this.size.width + "px"; } if ( this.size.height !== this.prevSize.height ) { props.height = this.size.height + "px"; } this.helper.css( props ); return props; }, _updateVirtualBoundaries: function( forceAspectRatio ) { var pMinWidth, pMaxWidth, pMinHeight, pMaxHeight, b, o = this.options; b = { minWidth: this._isNumber( o.minWidth ) ? o.minWidth : 0, maxWidth: this._isNumber( o.maxWidth ) ? o.maxWidth : Infinity, minHeight: this._isNumber( o.minHeight ) ? o.minHeight : 0, maxHeight: this._isNumber( o.maxHeight ) ? o.maxHeight : Infinity }; if ( this._aspectRatio || forceAspectRatio ) { pMinWidth = b.minHeight * this.aspectRatio; pMinHeight = b.minWidth /this.aspectRatio; pMaxWidth = b.maxHeight * this.aspectRatio; pMaxHeight = b.maxWidth / this.aspectRatio; if ( pMinWidth > b.minWidth ) { b.minWidth = pMinWidth; } if ( pMinHeight > b.minHeight ) { b.minHeight = pMinHeight; } if ( pMaxWidth < b.maxWidth ) {< b.maxWidth ) { b.maxWidth = pMaxWidth;< b.maxWidth ) { }< b.maxWidth ) { if ( pMaxHeight < b.maxHeight ) {< b.maxWidth ) {< b.maxHeight ) { b.maxHeight = pMaxHeight;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { this._vBoundaries = b;< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { _updateCache: function( data ) {< b.maxWidth ) {< b.maxHeight ) { this.offset = this.helper.offset();< b.maxWidth ) {< b.maxHeight ) { if ( this._isNumber( data.left ) ) {< b.maxWidth ) {< b.maxHeight ) { this.position.left = data.left;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( this._isNumber( data.top ) ) {< b.maxWidth ) {< b.maxHeight ) { this.position.top = data.top;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( this._isNumber( data.height ) ) {< b.maxWidth ) {< b.maxHeight ) { this.size.height = data.height;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( this._isNumber( data.width ) ) {< b.maxWidth ) {< b.maxHeight ) { this.size.width = data.width;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { _updateRatio: function( data ) {< b.maxWidth ) {< b.maxHeight ) { var cpos = this.position,< b.maxWidth ) {< b.maxHeight ) { csize = this.size,< b.maxWidth ) {< b.maxHeight ) { a = this.axis;< b.maxWidth ) {< b.maxHeight ) { if ( this._isNumber( data.height ) ) {< b.maxWidth ) {< b.maxHeight ) { data.width = ( data.height * this.aspectRatio );< b.maxWidth ) {< b.maxHeight ) { } else if ( this._isNumber( data.width ) ) {< b.maxWidth ) {< b.maxHeight ) { data.height = ( data.width /this.aspectRatio );< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( a === "sw" ) {< b.maxWidth ) {< b.maxHeight ) { data.left = cpos.left + ( csize.width - data.width );< b.maxWidth ) {< b.maxHeight ) { data.top = null;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( a === "nw" ) {< b.maxWidth ) {< b.maxHeight ) { data.top = cpos.top + ( csize.height - data.height );< b.maxWidth ) {< b.maxHeight ) { data.left = cpos.left + ( csize.width - data.width );< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { return data;< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { _respectSize: function( data ) {< b.maxWidth ) {< b.maxHeight ) { var o = this._vBoundaries,< b.maxWidth ) {< b.maxHeight ) { a = this.axis,< b.maxWidth ) {< b.maxHeight ) { ismaxw = this._isNumber( data.width ) && o.maxWidth && ( o.maxWidth < data.width ),< b.maxWidth ) {< b.maxHeight ) { ismaxh = this._isNumber( data.height ) && o.maxHeight && ( o.maxHeight < data.height ),< b.maxWidth ) {< b.maxHeight ) { isminw = this._isNumber( data.width ) && o.minWidth && ( o.minWidth > data.width ),< b.maxWidth ) {< b.maxHeight ) { isminh = this._isNumber( data.height ) && o.minHeight && ( o.minHeight > data.height ),< b.maxWidth ) {< b.maxHeight ) { dw = this.originalPosition.left + this.originalSize.width,< b.maxWidth ) {< b.maxHeight ) { dh = this.originalPosition.top + this.originalSize.height,< b.maxWidth ) {< b.maxHeight ) { cw = /sw|nw|w/.test( a ), ch = /nw|ne|n/.test( a );< b.maxWidth ) {< b.maxHeight ) { if ( isminw ) {< b.maxWidth ) {< b.maxHeight ) { data.width = o.minWidth;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( isminh ) {< b.maxWidth ) {< b.maxHeight ) { data.height = o.minHeight;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( ismaxw ) {< b.maxWidth ) {< b.maxHeight ) { data.width = o.maxWidth;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( ismaxh ) {< b.maxWidth ) {< b.maxHeight ) { data.height = o.maxHeight;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( isminw && cw ) {< b.maxWidth ) {< b.maxHeight ) { data.left = dw - o.minWidth;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( ismaxw && cw ) {< b.maxWidth ) {< b.maxHeight ) { data.left = dw - o.maxWidth;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( isminh && ch ) {< b.maxWidth ) {< b.maxHeight ) { data.top = dh - o.minHeight;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( ismaxh && ch ) {< b.maxWidth ) {< b.maxHeight ) { data.top = dh - o.maxHeight;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { // Fixing jump error on top/left - bug #2330< b.maxWidth ) {< b.maxHeight ) {if ( !data.width && !data.height && !data.left && data.top ) {< b.maxWidth ) {< b.maxHeight ) { data.top = null;< b.maxWidth ) {< b.maxHeight ) { } elseif ( !data.width && !data.height && !data.top && data.left ) {< b.maxWidth ) {< b.maxHeight ) { data.left = null;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { return data;< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { _getPaddingPlusBorderDimensions: function( element ) {< b.maxWidth ) {< b.maxHeight ) { var i = 0,< b.maxWidth ) {< b.maxHeight ) { widths = [],< b.maxWidth ) {< b.maxHeight ) { borders = [< b.maxWidth ) {< b.maxHeight ) { element.css( "borderTopWidth" ),< b.maxWidth ) {< b.maxHeight ) { element.css( "borderRightWidth" ),< b.maxWidth ) {< b.maxHeight ) { element.css( "borderBottomWidth" ),< b.maxWidth ) {< b.maxHeight ) { element.css( "borderLeftWidth" )< b.maxWidth ) {< b.maxHeight ) { ],< b.maxWidth ) {< b.maxHeight ) { paddings = [< b.maxWidth ) {< b.maxHeight ) { element.css( "paddingTop" ),< b.maxWidth ) {< b.maxHeight ) { element.css( "paddingRight" ),< b.maxWidth ) {< b.maxHeight ) { element.css( "paddingBottom" ),< b.maxWidth ) {< b.maxHeight ) { element.css( "paddingLeft" )< b.maxWidth ) {< b.maxHeight ) { ];< b.maxWidth ) {< b.maxHeight ) { for ( ; i < 4; i++ ) {< b.maxWidth ) {< b.maxHeight ) { widths[ i ] = ( parseFloat( borders[ i ] ) || 0 );< b.maxWidth ) {< b.maxHeight ) { widths[ i ] += ( parseFloat( paddings[ i ] ) || 0 );< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { return {< b.maxWidth ) {< b.maxHeight ) { height: widths[ 0 ] + widths[ 2 ],< b.maxWidth ) {< b.maxHeight ) { width: widths[ 1 ] + widths[ 3 ]< b.maxWidth ) {< b.maxHeight ) { };< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { _proportionallyResize: function() {< b.maxWidth ) {< b.maxHeight ) { if ( !this._proportionallyResizeElements.length ) {< b.maxWidth ) {< b.maxHeight ) { return;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { var prel,< b.maxWidth ) {< b.maxHeight ) { i = 0,< b.maxWidth ) {< b.maxHeight ) { element = this.helper || this.element;< b.maxWidth ) {< b.maxHeight ) { for ( ; i < this._proportionallyResizeElements.length; i++ ) {< b.maxWidth ) {< b.maxHeight ) { prel = this._proportionallyResizeElements[ i ];< b.maxWidth ) {< b.maxHeight ) { // TODO: Seems like a bug to cache this.outerDimensions< b.maxWidth ) {< b.maxHeight ) {// considering that we are in a loop.< b.maxWidth ) {< b.maxHeight ) {if ( !this.outerDimensions ) {< b.maxWidth ) {< b.maxHeight ) { this.outerDimensions = this._getPaddingPlusBorderDimensions( prel );< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { prel.css( {< b.maxWidth ) {< b.maxHeight ) { height: ( element.height() - this.outerDimensions.height ) || 0,< b.maxWidth ) {< b.maxHeight ) { width: ( element.width() - this.outerDimensions.width ) || 0< b.maxWidth ) {< b.maxHeight ) { } );< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { _renderProxy: function() {< b.maxWidth ) {< b.maxHeight ) { var el = this.element, o = this.options;< b.maxWidth ) {< b.maxHeight ) { this.elementOffset = el.offset();< b.maxWidth ) {< b.maxHeight ) { if ( this._helper ) {< b.maxWidth ) {< b.maxHeight ) { this.helper = this.helper || $( "<div style='overflow:hidden;'></div>" );< b.maxWidth ) {< b.maxHeight ) { this._addClass( this.helper, this._helper );< b.maxWidth ) {< b.maxHeight ) { this.helper.css( {< b.maxWidth ) {< b.maxHeight ) { width: this.element.outerWidth(),< b.maxWidth ) {< b.maxHeight ) { height: this.element.outerHeight(),< b.maxWidth ) {< b.maxHeight ) { position: "absolute",< b.maxWidth ) {< b.maxHeight ) { left: this.elementOffset.left + "px",< b.maxWidth ) {< b.maxHeight ) { top: this.elementOffset.top + "px",< b.maxWidth ) {< b.maxHeight ) { zIndex: ++o.zIndex //TODO: Don't modify option< b.maxWidth ) {< b.maxHeight ) { } );< b.maxWidth ) {< b.maxHeight ) { this.helper< b.maxWidth ) {< b.maxHeight ) { .appendTo( "body" )< b.maxWidth ) {< b.maxHeight ) { .disableSelection();< b.maxWidth ) {< b.maxHeight ) { } else {< b.maxWidth ) {< b.maxHeight ) { this.helper = this.element;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { _change: {< b.maxWidth ) {< b.maxHeight ) { e: function( event, dx ) {< b.maxWidth ) {< b.maxHeight ) { return { width: this.originalSize.width + dx };< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { w: function( event, dx ) {< b.maxWidth ) {< b.maxHeight ) { var cs = this.originalSize, sp = this.originalPosition;< b.maxWidth ) {< b.maxHeight ) { return { left: sp.left + dx, width: cs.width - dx };< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { n: function( event, dx, dy ) {< b.maxWidth ) {< b.maxHeight ) { var cs = this.originalSize, sp = this.originalPosition;< b.maxWidth ) {< b.maxHeight ) { return { top: sp.top + dy, height: cs.height - dy };< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { s: function( event, dx, dy ) {< b.maxWidth ) {< b.maxHeight ) { return { height: this.originalSize.height + dy };< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { se: function( event, dx, dy ) {< b.maxWidth ) {< b.maxHeight ) { return $.extend( this._change.s.apply( this, arguments ),< b.maxWidth ) {< b.maxHeight ) { this._change.e.apply( this, [ event, dx, dy ] ) );< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { sw: function( event, dx, dy ) {< b.maxWidth ) {< b.maxHeight ) { return $.extend( this._change.s.apply( this, arguments ),< b.maxWidth ) {< b.maxHeight ) { this._change.w.apply( this, [ event, dx, dy ] ) );< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { ne: function( event, dx, dy ) {< b.maxWidth ) {< b.maxHeight ) { return $.extend( this._change.n.apply( this, arguments ),< b.maxWidth ) {< b.maxHeight ) { this._change.e.apply( this, [ event, dx, dy ] ) );< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { nw: function( event, dx, dy ) {< b.maxWidth ) {< b.maxHeight ) { return $.extend( this._change.n.apply( this, arguments ),< b.maxWidth ) {< b.maxHeight ) { this._change.w.apply( this, [ event, dx, dy ] ) );< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { _propagate: function( n, event ) {< b.maxWidth ) {< b.maxHeight ) { $.ui.plugin.call( this, n, [ event, this.ui() ] );< b.maxWidth ) {< b.maxHeight ) { ( n !== "resize" && this._trigger( n, event, this.ui() ) );< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { plugins: {},< b.maxWidth ) {< b.maxHeight ) { ui: function() {< b.maxWidth ) {< b.maxHeight ) { return {< b.maxWidth ) {< b.maxHeight ) { originalElement: this.originalElement,< b.maxWidth ) {< b.maxHeight ) { element: this.element,< b.maxWidth ) {< b.maxHeight ) { helper: this.helper,< b.maxWidth ) {< b.maxHeight ) { position: this.position,< b.maxWidth ) {< b.maxHeight ) { size: this.size,< b.maxWidth ) {< b.maxHeight ) { originalSize: this.originalSize,< b.maxWidth ) {< b.maxHeight ) { originalPosition: this.originalPosition< b.maxWidth ) {< b.maxHeight ) { };< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) {} );< b.maxWidth ) {< b.maxHeight ) {/*< b.maxWidth ) {< b.maxHeight ) { * Resizable Extensions< b.maxWidth ) {< b.maxHeight ) { */< b.maxWidth ) {< b.maxHeight ) {$.ui.plugin.add( "resizable", "animate", {< b.maxWidth ) {< b.maxHeight ) { stop: function( event ) {< b.maxWidth ) {< b.maxHeight ) { var that = $( this ).resizable( "instance" ),< b.maxWidth ) {< b.maxHeight ) { o = that.options,< b.maxWidth ) {< b.maxHeight ) { pr = that._proportionallyResizeElements,< b.maxWidth ) {< b.maxHeight ) { ista = pr.length && ( /textarea/i ).test( pr[ 0 ].nodeName ),< b.maxWidth ) {< b.maxHeight ) { soffseth = ista && that._hasScroll( pr[ 0 ], "left" ) ? 0 : that.sizeDiff.height,< b.maxWidth ) {< b.maxHeight ) { soffsetw = ista ? 0 : that.sizeDiff.width,< b.maxWidth ) {< b.maxHeight ) { style = {< b.maxWidth ) {< b.maxHeight ) { width: ( that.size.width - soffsetw ),< b.maxWidth ) {< b.maxHeight ) { height: ( that.size.height - soffseth )< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { left = ( parseFloat( that.element.css( "left" ) ) +< b.maxWidth ) {< b.maxHeight ) { ( that.position.left - that.originalPosition.left ) ) || null,< b.maxWidth ) {< b.maxHeight ) { top = ( parseFloat( that.element.css( "top" ) ) +< b.maxWidth ) {< b.maxHeight ) { ( that.position.top - that.originalPosition.top ) ) || null;< b.maxWidth ) {< b.maxHeight ) { that.element.animate(< b.maxWidth ) {< b.maxHeight ) { $.extend( style, top && left ? { top: top, left: left } : {} ), {< b.maxWidth ) {< b.maxHeight ) { duration: o.animateDuration,< b.maxWidth ) {< b.maxHeight ) { easing: o.animateEasing,< b.maxWidth ) {< b.maxHeight ) { step: function() {< b.maxWidth ) {< b.maxHeight ) { var data = {< b.maxWidth ) {< b.maxHeight ) { width: parseFloat( that.element.css( "width" ) ),< b.maxWidth ) {< b.maxHeight ) { height: parseFloat( that.element.css( "height" ) ),< b.maxWidth ) {< b.maxHeight ) { top: parseFloat( that.element.css( "top" ) ),< b.maxWidth ) {< b.maxHeight ) { left: parseFloat( that.element.css( "left" ) )< b.maxWidth ) {< b.maxHeight ) { };< b.maxWidth ) {< b.maxHeight ) { if ( pr && pr.length ) {< b.maxWidth ) {< b.maxHeight ) { $( pr[ 0 ] ).css( { width: data.width, height: data.height } );< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { // Propagating resize, and updating values for each animation step< b.maxWidth ) {< b.maxHeight ) { that._updateCache( data );< b.maxWidth ) {< b.maxHeight ) { that._propagate( "resize", event );< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { );< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) {} );< b.maxWidth ) {< b.maxHeight ) {$.ui.plugin.add( "resizable", "containment", {< b.maxWidth ) {< b.maxHeight ) { start: function() {< b.maxWidth ) {< b.maxHeight ) { var element, p, co, ch, cw, width, height,< b.maxWidth ) {< b.maxHeight ) { that = $( this ).resizable( "instance" ),< b.maxWidth ) {< b.maxHeight ) { o = that.options,< b.maxWidth ) {< b.maxHeight ) { el = that.element,< b.maxWidth ) {< b.maxHeight ) { oc = o.containment,< b.maxWidth ) {< b.maxHeight ) { ce = ( oc instanceof $ ) ?< b.maxWidth ) {< b.maxHeight ) { oc.get( 0 ) :< b.maxWidth ) {< b.maxHeight ) { ( /parent/.test( oc ) ) ? el.parent().get( 0 ) : oc;< b.maxWidth ) {< b.maxHeight ) { if ( !ce ) {< b.maxWidth ) {< b.maxHeight ) { return;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { that.containerElement = $( ce );< b.maxWidth ) {< b.maxHeight ) { if ( /document/.test( oc ) || oc === document ) {< b.maxWidth ) {< b.maxHeight ) { that.containerOffset = {< b.maxWidth ) {< b.maxHeight ) { left: 0,< b.maxWidth ) {< b.maxHeight ) { top: 0< b.maxWidth ) {< b.maxHeight ) { };< b.maxWidth ) {< b.maxHeight ) { that.containerPosition = {< b.maxWidth ) {< b.maxHeight ) { left: 0,< b.maxWidth ) {< b.maxHeight ) { top: 0< b.maxWidth ) {< b.maxHeight ) { };< b.maxWidth ) {< b.maxHeight ) { that.parentData = {< b.maxWidth ) {< b.maxHeight ) { element: $( document ),< b.maxWidth ) {< b.maxHeight ) { left: 0,< b.maxWidth ) {< b.maxHeight ) { top: 0,< b.maxWidth ) {< b.maxHeight ) { width: $( document ).width(),< b.maxWidth ) {< b.maxHeight ) { height: $( document ).height() || document.body.parentNode.scrollHeight< b.maxWidth ) {< b.maxHeight ) { };< b.maxWidth ) {< b.maxHeight ) { } else {< b.maxWidth ) {< b.maxHeight ) { element = $( ce );< b.maxWidth ) {< b.maxHeight ) { p = [];< b.maxWidth ) {< b.maxHeight ) { $( [ "Top", "Right", "Left", "Bottom" ] ).each( function( i, name ) {< b.maxWidth ) {< b.maxHeight ) { p[ i ] = that._num( element.css( "padding" + name ) );< b.maxWidth ) {< b.maxHeight ) { } );< b.maxWidth ) {< b.maxHeight ) { that.containerOffset = element.offset();< b.maxWidth ) {< b.maxHeight ) { that.containerPosition = element.position();< b.maxWidth ) {< b.maxHeight ) { that.containerSize = {< b.maxWidth ) {< b.maxHeight ) { height: ( element.innerHeight() - p[ 3 ] ),< b.maxWidth ) {< b.maxHeight ) { width: ( element.innerWidth() - p[ 1 ] )< b.maxWidth ) {< b.maxHeight ) { };< b.maxWidth ) {< b.maxHeight ) { co = that.containerOffset;< b.maxWidth ) {< b.maxHeight ) { ch = that.containerSize.height;< b.maxWidth ) {< b.maxHeight ) { cw = that.containerSize.width;< b.maxWidth ) {< b.maxHeight ) { width = ( that._hasScroll ( ce, "left" ) ? ce.scrollWidth : cw );< b.maxWidth ) {< b.maxHeight ) { height = ( that._hasScroll ( ce ) ? ce.scrollHeight : ch ) ;< b.maxWidth ) {< b.maxHeight ) { that.parentData = {< b.maxWidth ) {< b.maxHeight ) { element: ce,< b.maxWidth ) {< b.maxHeight ) { left: co.left,< b.maxWidth ) {< b.maxHeight ) { top: co.top,< b.maxWidth ) {< b.maxHeight ) { width: width,< b.maxWidth ) {< b.maxHeight ) { height: height< b.maxWidth ) {< b.maxHeight ) { };< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { resize: function( event ) {< b.maxWidth ) {< b.maxHeight ) { var woset, hoset, isParent, isOffsetRelative,< b.maxWidth ) {< b.maxHeight ) { that = $( this ).resizable( "instance" ),< b.maxWidth ) {< b.maxHeight ) { o = that.options,< b.maxWidth ) {< b.maxHeight ) { co = that.containerOffset,< b.maxWidth ) {< b.maxHeight ) { cp = that.position,< b.maxWidth ) {< b.maxHeight ) { pRatio = that._aspectRatio || event.shiftKey,< b.maxWidth ) {< b.maxHeight ) { cop = {< b.maxWidth ) {< b.maxHeight ) { top: 0,< b.maxWidth ) {< b.maxHeight ) { left: 0< b.maxWidth ) {< b.maxHeight ) { },< b.maxWidth ) {< b.maxHeight ) { ce = that.containerElement,< b.maxWidth ) {< b.maxHeight ) { continueResize = true;< b.maxWidth ) {< b.maxHeight ) { if ( ce[ 0 ] !== document && ( /static/ ).test( ce.css( "position" ) ) ) {< b.maxWidth ) {< b.maxHeight ) { cop = co;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( cp.left < ( that._helper ? co.left : 0 ) ) {< b.maxWidth ) {< b.maxHeight ) { that.size.width = that.size.width +< b.maxWidth ) {< b.maxHeight ) { ( that._helper ?< b.maxWidth ) {< b.maxHeight ) { ( that.position.left - co.left ) :< b.maxWidth ) {< b.maxHeight ) { ( that.position.left - cop.left ) );< b.maxWidth ) {< b.maxHeight ) { if ( pRatio ) {< b.maxWidth ) {< b.maxHeight ) { that.size.height = that.size.width / that.aspectRatio;< b.maxWidth ) {< b.maxHeight ) { continueResize = false;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { that.position.left = o.helper ? co.left : 0;< b.maxWidth ) {< b.maxHeight ) { }< b.maxWidth ) {< b.maxHeight ) { if ( cp.top < ( that._helper ? co.top : 0 ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.height = that.size.height +< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( that._helper ?< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( that.position.top - co.top ) :< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.position.top );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( pRatio ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.width = that.size.height * that.aspectRatio;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { continueResize = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.position.top = that._helper ? co.top : 0;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { isParent = that.containerElement.get( 0 ) === that.element.parent().get( 0 );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { isOffsetRelative = /relative|absolute/.test( that.containerElement.css( "position" ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( isParent && isOffsetRelative ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.offset.left = that.parentData.left + that.position.left;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.offset.top = that.parentData.top + that.position.top;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } else {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.offset.left = that.element.offset().left;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.offset.top = that.element.offset().top;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { woset = Math.abs( that.sizeDiff.width +< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( that._helper ?< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.offset.left - cop.left :< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( that.offset.left - co.left ) ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { hoset = Math.abs( that.sizeDiff.height +< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( that._helper ?< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.offset.top - cop.top :< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( that.offset.top - co.top ) ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( woset + that.size.width >= that.parentData.width ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.width = that.parentData.width - woset;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( pRatio ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.height = that.size.width / that.aspectRatio;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { continueResize = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( hoset + that.size.height >= that.parentData.height ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.height = that.parentData.height - hoset;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( pRatio ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.width = that.size.height * that.aspectRatio;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { continueResize = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !continueResize ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.position.left = that.prevPosition.left;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.position.top = that.prevPosition.top;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.width = that.prevSize.width;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.height = that.prevSize.height;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { stop: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var that = $( this ).resizable( "instance" ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { o = that.options,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { co = that.containerOffset,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { cop = that.containerPosition,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ce = that.containerElement,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { helper = $( that.helper ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ho = helper.offset(),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { w = helper.outerWidth() - that.sizeDiff.width,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { h = helper.outerHeight() - that.sizeDiff.height;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( that._helper && !o.animate && ( /relative/ ).test( ce.css( "position" ) ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $( this ).css( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { left: ho.left - cop.left - co.left,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: w,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: h< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( that._helper && !o.animate && ( /static/ ).test( ce.css( "position" ) ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $( this ).css( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { left: ho.left - cop.left - co.left,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: w,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: h< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {} );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {$.ui.plugin.add( "resizable", "alsoResize", {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { start: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var that = $( this ).resizable( "instance" ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { o = that.options;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $( o.alsoResize ).each( function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var el = $( this );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { el.data( "ui-resizable-alsoresize", {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: parseFloat( el.width() ), height: parseFloat( el.height() ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { left: parseFloat( el.css( "left" ) ), top: parseFloat( el.css( "top" ) )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resize: function( event, ui ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var that = $( this ).resizable( "instance" ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { o = that.options,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { os = that.originalSize,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { op = that.originalPosition,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { delta = {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: ( that.size.height - os.height ) || 0,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: ( that.size.width - os.width ) || 0,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { top: ( that.position.top - op.top ) || 0,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { left: ( that.position.left - op.left ) || 0< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $( o.alsoResize ).each( function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var el = $( this ), start = $( this ).data( "ui-resizable-alsoresize" ), style = {},< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { css = el.parents( ui.originalElement[ 0 ] ).length ?< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { [ "width", "height" ] :< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { [ "width", "height", "top", "left" ];< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.each( css, function( i, prop ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var sum = ( start[ prop ] || 0 ) + ( delta[ prop ] || 0 );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( sum && sum >= 0 ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { style[ prop ] = sum || null;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { el.css( style );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { stop: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $( this ).removeData( "ui-resizable-alsoresize" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {} );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {$.ui.plugin.add( "resizable", "ghost", {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { start: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var that = $( this ).resizable( "instance" ), cs = that.size;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.ghost = that.originalElement.clone();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.ghost.css( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { opacity: 0.25,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { display: "block",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { position: "relative",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: cs.height,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: cs.width,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { margin: 0,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { left: 0,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { top: 0< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._addClass( that.ghost, "ui-resizable-ghost" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // DEPRECATED< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// TODO: remove after 1.12< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( $.uiBackCompat !== false && typeof that.options.ghost === "string" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Ghost option< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.ghost.addClass( this.options.ghost );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.ghost.appendTo( that.helper );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resize: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var that = $( this ).resizable( "instance" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( that.ghost ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.ghost.css( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { position: "relative",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: that.size.height,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: that.size.width< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { stop: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var that = $( this ).resizable( "instance" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( that.ghost && that.helper ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.helper.get( 0 ).removeChild( that.ghost.get( 0 ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {} );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {$.ui.plugin.add( "resizable", "grid", {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resize: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var outerDimensions,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that = $( this ).resizable( "instance" ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { o = that.options,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { cs = that.size,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { os = that.originalSize,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { op = that.originalPosition,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { a = that.axis,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { grid = typeof o.grid === "number" ? [ o.grid, o.grid ] : o.grid,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { gridX = ( grid[ 0 ] || 1 ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { gridY = ( grid[ 1 ] || 1 ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ox = Math.round( ( cs.width - os.width ) / gridX ) * gridX,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { oy = Math.round( ( cs.height - os.height ) / gridY ) * gridY,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { newWidth = os.width + ox,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { newHeight = os.height + oy,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { isMaxWidth = o.maxWidth && ( o.maxWidth < newWidth ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { isMaxHeight = o.maxHeight && ( o.maxHeight < newHeight ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { isMinWidth = o.minWidth && ( o.minWidth > newWidth ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { isMinHeight = o.minHeight && ( o.minHeight > newHeight );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { o.grid = grid;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( isMinWidth ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { newWidth += gridX;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( isMinHeight ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { newHeight += gridY;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( isMaxWidth ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { newWidth -= gridX;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( isMaxHeight ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { newHeight -= gridY;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( /^(se|s|e)$/.test( a ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.width = newWidth;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.height = newHeight;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } elseif ( /^(ne)$/.test( a ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.width = newWidth;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.height = newHeight;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.position.top = op.top - oy;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } elseif ( /^(sw)$/.test( a ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.width = newWidth;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.height = newHeight;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.position.left = op.left - ox;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } else {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( newHeight - gridY <= 0 || newWidth - gridX <= 0 ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { outerDimensions = that._getPaddingPlusBorderDimensions( this );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( newHeight - gridY > 0 ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.height = newHeight;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.position.top = op.top - oy;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } else {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { newHeight = gridY - outerDimensions.height;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.height = newHeight;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.position.top = op.top + os.height - newHeight;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( newWidth - gridX > 0 ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.width = newWidth;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.position.left = op.left - ox;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } else {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { newWidth = gridX - outerDimensions.width;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.size.width = newWidth;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that.position.left = op.left + os.width - newWidth;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {} );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {var widgetsResizable = $.ui.resizable;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {/*!< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * jQuery UI Dialog 1.12.1< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * http://jqueryui.com< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { *< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * Copyright jQuery Foundation and other contributors< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * Released under the MIT license.< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * http://jquery.org/license< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { */< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>label: Dialog< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>group: Widgets< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>description: Displays customizable dialog windows.< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>docs: http://api.jqueryui.com/dialog/< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>demos: http://jqueryui.com/dialog/< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>css.structure: ../../themes/base/core.css< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>css.structure: ../../themes/base/dialog.css< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>css.theme: ../../themes/base/theme.css< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {$.widget( "ui.dialog", {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { version: "1.12.1",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options: {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { appendTo: "body",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { autoOpen: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { buttons: [],< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { classes: {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "ui-dialog": "ui-corner-all",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "ui-dialog-titlebar": "ui-corner-all"< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { closeOnEscape: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { closeText: "Close",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { draggable: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { hide: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: "auto",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { maxHeight: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { maxWidth: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { minHeight: 150,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { minWidth: 150,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { modal: false,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { position: {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { my: "center",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { at: "center",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { of: window,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { collision: "fit",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Ensure the titlebar is always visible< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { using: function( pos ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var topOffset = $( this ).css( pos ).offset().top;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( topOffset < 0 ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $( this ).css( "top", pos.top - topOffset );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resizable: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { show: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { title: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: 300,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Callbacks< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { beforeClose: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { close: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { drag: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { dragStart: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { dragStop: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { focus: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { open: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resize: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resizeStart: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resizeStop: null< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { sizeRelatedOptions: {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { buttons: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { maxHeight: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { maxWidth: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { minHeight: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { minWidth: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: true< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resizableRelatedOptions: {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { maxHeight: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { maxWidth: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { minHeight: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { minWidth: true< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _create: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.originalCss = {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { display: this.element[ 0 ].style.display,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: this.element[ 0 ].style.width,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { minHeight: this.element[ 0 ].style.minHeight,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { maxHeight: this.element[ 0 ].style.maxHeight,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: this.element[ 0 ].style.height< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.originalPosition = {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { parent: this.element.parent(),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { index: this.element.parent().children().index( this.element )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.originalTitle = this.element.attr( "title" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.options.title == null && this.originalTitle != null ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.options.title = this.originalTitle;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Dialogs can't be disabled< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( this.options.disabled ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.options.disabled = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._createWrapper();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .show()< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .removeAttr( "title" )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .appendTo( this.uiDialog );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addClass( "ui-dialog-content", "ui-widget-content" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._createTitlebar();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._createButtonPane();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.options.draggable && $.fn.draggable ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._makeDraggable();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.options.resizable && $.fn.resizable ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._makeResizable();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._isOpen = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._trackFocus();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _init: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.options.autoOpen ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.open();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _appendTo: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var element = this.options.appendTo;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( element && ( element.jquery || element.nodeType ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return $( element );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnthis.document.find( element || "body" ).eq( 0 );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _destroy: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var next,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { originalPosition = this.originalPosition;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._untrackInstance();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._destroyOverlay();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .removeUniqueId()< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .css( this.originalCss )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Without detaching first, the following becomes really slow< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .detach();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog.remove();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.originalTitle ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element.attr( "title", this.originalTitle );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { next = originalPosition.parent.children().eq( originalPosition.index );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Don't try to place the dialog next to itself (#8613)< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( next.length && next[ 0 ] !== this.element[ 0 ] ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { next.before( this.element );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } else {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { originalPosition.parent.append( this.element );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { widget: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnthis.uiDialog;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { disable: $.noop,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { enable: $.noop,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { close: function( event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var that = this;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !this._isOpen || this._trigger( "beforeClose", event ) === false ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._isOpen = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._focusedElement = null;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._destroyOverlay();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._untrackInstance();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !this.opener.filter( ":focusable" ).trigger( "focus" ).length ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Hiding a focused element doesn't trigger blur in WebKit< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// so in case we have nothing to focus on, explicitly blur the active element< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// https://bugs.webkit.org/show_bug.cgi?id=47182< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.ui.safeBlur( $.ui.safeActiveElement( this.document[ 0 ] ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._hide( this.uiDialog, this.options.hide, function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._trigger( "close", event );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { isOpen: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnthis._isOpen;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { moveToTop: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._moveToTop();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _moveToTop: function( event, silent ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var moved = false,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { zIndices = this.uiDialog.siblings( ".ui-front:visible" ).map( function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return +$( this ).css( "z-index" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } ).get(),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { zIndexMax = Math.max.apply( null, zIndices );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( zIndexMax >= +this.uiDialog.css( "z-index" ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog.css( "z-index", zIndexMax + 1 );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { moved = true;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( moved && !silent ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._trigger( "focus", event );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return moved;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { open: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var that = this;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this._isOpen ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this._moveToTop() ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._focusTabbable();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._isOpen = true;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.opener = $( $.ui.safeActiveElement( this.document[ 0 ] ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._size();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._position();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._createOverlay();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._moveToTop( null, true );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Ensure the overlay is moved to the top with the dialog, but only when< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// opening. The overlay shouldn't move after the dialog is open so that< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// modeless dialogs opened after the modal dialog stack properly.< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( this.overlay ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.overlay.css( "z-index", this.uiDialog.css( "z-index" ) - 1 );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._show( this.uiDialog, this.options.show, function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._focusTabbable();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._trigger( "focus" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Track the dialog immediately upon openening in case a focus event< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// somehow occurs outside of the dialog before an element inside the< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// dialog is focused (#10152)< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {this._makeFocusTarget();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._trigger( "open" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _focusTabbable: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Set focus to the first match:< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// 1. An element that was focused previously< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// 2. First element inside the dialog matching [autofocus]< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// 3. Tabbable element inside the content element< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// 4. Tabbable element inside the buttonpane< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// 5. The close button< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// 6. The dialog itself< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {var hasFocus = this._focusedElement;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !hasFocus ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { hasFocus = this.element.find( "[autofocus]" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !hasFocus.length ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { hasFocus = this.element.find( ":tabbable" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !hasFocus.length ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { hasFocus = this.uiDialogButtonPane.find( ":tabbable" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !hasFocus.length ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { hasFocus = this.uiDialogTitlebarClose.filter( ":tabbable" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !hasFocus.length ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { hasFocus = this.uiDialog;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { hasFocus.eq( 0 ).trigger( "focus" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _keepFocus: function( event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { functioncheckFocus() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var activeElement = $.ui.safeActiveElement( this.document[ 0 ] ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { isActive = this.uiDialog[ 0 ] === activeElement ||< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.contains( this.uiDialog[ 0 ], activeElement );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !isActive ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._focusTabbable();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { event.preventDefault();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { checkFocus.call( this );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // support: IE< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// IE <= 8 doesn't prevent moving focus even with event.preventDefault()< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// so we check again later< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {this._delay( checkFocus );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _createWrapper: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog = $( "<div>" )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .hide()< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .attr( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Setting tabIndex makes the div focusable< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { tabIndex: -1,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { role: "dialog"< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .appendTo( this._appendTo() );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addClass( this.uiDialog, "ui-dialog", "ui-widget ui-widget-content ui-front" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._on( this.uiDialog, {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { keydown: function( event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.options.closeOnEscape && !event.isDefaultPrevented() && event.keyCode &&< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { event.keyCode === $.ui.keyCode.ESCAPE ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { event.preventDefault();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.close( event );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Prevent tabbing out of dialogs< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( event.keyCode !== $.ui.keyCode.TAB || event.isDefaultPrevented() ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var tabbables = this.uiDialog.find( ":tabbable" ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { first = tabbables.filter( ":first" ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { last = tabbables.filter( ":last" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( ( event.target === last[ 0 ] || event.target === this.uiDialog[ 0 ] ) &&< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { !event.shiftKey ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._delay( function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { first.trigger( "focus" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { event.preventDefault();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } elseif ( ( event.target === first[ 0 ] ||< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { event.target === this.uiDialog[ 0 ] ) && event.shiftKey ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._delay( function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { last.trigger( "focus" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { event.preventDefault();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { mousedown: function( event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this._moveToTop( event ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._focusTabbable();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // We assume that any existing aria-describedby attribute means< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// that the dialog content is marked up properly< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// otherwise we brute force the content as the description< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( !this.element.find( "[aria-describedby]" ).length ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog.attr( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "aria-describedby": this.element.uniqueId().attr( "id" )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _createTitlebar: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var uiDialogTitle;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialogTitlebar = $( "<div>" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addClass( this.uiDialogTitlebar,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "ui-dialog-titlebar", "ui-widget-header ui-helper-clearfix" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._on( this.uiDialogTitlebar, {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { mousedown: function( event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Don't prevent click on close button (#8838)< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// Focusing a dialog that is partially scrolled out of view< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// causes the browser to scroll it into view, preventing the click event< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( !$( event.target ).closest( ".ui-dialog-titlebar-close" ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Dialog isn't getting focus when dragging (#8063)< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {this.uiDialog.trigger( "focus" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Support: IE< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// Use type="button" to prevent enter keypresses in textboxes from closing the< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// dialog in IE (#9312)< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {this.uiDialogTitlebarClose = $( "<button type='button'></button>" )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .button( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { label: $( "<a>" ).text( this.options.closeText ).html(),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { icon: "ui-icon-closethick",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { showLabel: false< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .appendTo( this.uiDialogTitlebar );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addClass( this.uiDialogTitlebarClose, "ui-dialog-titlebar-close" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._on( this.uiDialogTitlebarClose, {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { click: function( event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { event.preventDefault();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.close( event );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { uiDialogTitle = $( "<span>" ).uniqueId().prependTo( this.uiDialogTitlebar );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addClass( uiDialogTitle, "ui-dialog-title" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._title( uiDialogTitle );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialogTitlebar.prependTo( this.uiDialog );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog.attr( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "aria-labelledby": uiDialogTitle.attr( "id" )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _title: function( title ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.options.title ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { title.text( this.options.title );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } else {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { title.html( "&#160;" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _createButtonPane: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialogButtonPane = $( "<div>" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addClass( this.uiDialogButtonPane, "ui-dialog-buttonpane",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "ui-widget-content ui-helper-clearfix" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiButtonSet = $( "<div>" )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .appendTo( this.uiDialogButtonPane );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addClass( this.uiButtonSet, "ui-dialog-buttonset" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._createButtons();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _createButtons: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var that = this,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { buttons = this.options.buttons;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // If we already have a button pane, remove it< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {this.uiDialogButtonPane.remove();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiButtonSet.empty();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( $.isEmptyObject( buttons ) || ( $.isArray( buttons ) && !buttons.length ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._removeClass( this.uiDialog, "ui-dialog-buttons" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.each( buttons, function( name, props ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var click, buttonOptions;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { props = $.isFunction( props ) ?< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { { click: props, text: name } :< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { props;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Default to a non-submitting button< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { props = $.extend( { type: "button" }, props );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Change the context for the click callback to be the main element< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { click = props.click;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { buttonOptions = {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { icon: props.icon,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { iconPosition: props.iconPosition,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { showLabel: props.showLabel,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Deprecated options< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { icons: props.icons,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { text: props.text< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { delete props.click;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { delete props.icon;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { delete props.iconPosition;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { delete props.showLabel;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Deprecated options< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { delete props.icons;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( typeof props.text === "boolean" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { delete props.text;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $( "<button></button>", props )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .button( buttonOptions )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .appendTo( that.uiButtonSet )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .on( "click", function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { click.apply( that.element[ 0 ], arguments );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addClass( this.uiDialog, "ui-dialog-buttons" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialogButtonPane.appendTo( this.uiDialog );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _makeDraggable: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var that = this,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options = this.options;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { functionfilteredUi( ui ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { position: ui.position,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { offset: ui.offset< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog.draggable( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { cancel: ".ui-dialog-content, .ui-dialog-titlebar-close",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { handle: ".ui-dialog-titlebar",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { containment: "document",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { start: function( event, ui ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._addClass( $( this ), "ui-dialog-dragging" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._blockFrames();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._trigger( "dragStart", event, filteredUi( ui ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { drag: function( event, ui ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._trigger( "drag", event, filteredUi( ui ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { stop: function( event, ui ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var left = ui.offset.left - that.document.scrollLeft(),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { top = ui.offset.top - that.document.scrollTop();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options.position = {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { my: "left top",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { at: "left" + ( left >= 0 ? "+" : "" ) + left + " " +< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "top" + ( top >= 0 ? "+" : "" ) + top,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { of: that.window< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._removeClass( $( this ), "ui-dialog-dragging" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._unblockFrames();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._trigger( "dragStop", event, filteredUi( ui ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _makeResizable: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var that = this,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options = this.options,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { handles = options.resizable,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // .ui-resizable has position: relative defined in the stylesheet< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// but dialogs have to use absolute or fixed positioning< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { position = this.uiDialog.css( "position" ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resizeHandles = typeof handles === "string" ?< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { handles :< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "n,e,s,w,se,sw,ne,nw";< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { functionfilteredUi( ui ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { originalPosition: ui.originalPosition,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { originalSize: ui.originalSize,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { position: ui.position,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { size: ui.size< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog.resizable( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { cancel: ".ui-dialog-content",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { containment: "document",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { alsoResize: this.element,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { maxWidth: options.maxWidth,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { maxHeight: options.maxHeight,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { minWidth: options.minWidth,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { minHeight: this._minHeight(),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { handles: resizeHandles,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { start: function( event, ui ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._addClass( $( this ), "ui-dialog-resizing" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._blockFrames();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._trigger( "resizeStart", event, filteredUi( ui ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resize: function( event, ui ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._trigger( "resize", event, filteredUi( ui ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { stop: function( event, ui ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var offset = that.uiDialog.offset(),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { left = offset.left - that.document.scrollLeft(),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { top = offset.top - that.document.scrollTop();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options.height = that.uiDialog.height();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options.width = that.uiDialog.width();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options.position = {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { my: "left top",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { at: "left" + ( left >= 0 ? "+" : "" ) + left + " " +< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "top" + ( top >= 0 ? "+" : "" ) + top,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { of: that.window< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._removeClass( $( this ), "ui-dialog-resizing" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._unblockFrames();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._trigger( "resizeStop", event, filteredUi( ui ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .css( "position", position );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _trackFocus: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._on( this.widget(), {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { focusin: function( event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._makeFocusTarget();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._focusedElement = $( event.target );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _makeFocusTarget: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._untrackInstance();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._trackingInstances().unshift( this );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _untrackInstance: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var instances = this._trackingInstances(),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { exists = $.inArray( this, instances );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( exists !== -1 ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { instances.splice( exists, 1 );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _trackingInstances: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var instances = this.document.data( "ui-dialog-instances" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !instances ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { instances = [];< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.document.data( "ui-dialog-instances", instances );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return instances;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _minHeight: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var options = this.options;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return options.height === "auto" ?< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options.minHeight :< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { Math.min( options.minHeight, options.height );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _position: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Need to show the dialog to get the actual offset in the position plugin< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {var isVisible = this.uiDialog.is( ":visible" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !isVisible ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog.show();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog.position( this.options.position );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !isVisible ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog.hide();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _setOptions: function( options ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var that = this,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resize = false,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resizableOptions = {};< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.each( options, function( key, value ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { that._setOption( key, value );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( key in that.sizeRelatedOptions ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resize = true;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( key in that.resizableRelatedOptions ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { resizableOptions[ key ] = value;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( resize ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._size();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._position();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.uiDialog.is( ":data(ui-resizable)" ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog.resizable( "option", resizableOptions );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _setOption: function( key, value ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var isDraggable, isResizable,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { uiDialog = this.uiDialog;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( key === "disabled" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._super( key, value );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( key === "appendTo" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog.appendTo( this._appendTo() );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( key === "buttons" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._createButtons();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( key === "closeText" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialogTitlebarClose.button( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Ensure that we always pass a string< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { label: $( "<a>" ).text( "" + this.options.closeText ).html()< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( key === "draggable" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { isDraggable = uiDialog.is( ":data(ui-draggable)" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( isDraggable && !value ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { uiDialog.draggable( "destroy" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !isDraggable && value ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._makeDraggable();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( key === "position" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._position();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( key === "resizable" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // currently resizable, becoming non-resizable< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { isResizable = uiDialog.is( ":data(ui-resizable)" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( isResizable && !value ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { uiDialog.resizable( "destroy" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Currently resizable, changing handles< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( isResizable && typeof value === "string" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { uiDialog.resizable( "option", "handles", value );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Currently non-resizable, becoming resizable< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( !isResizable && value !== false ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._makeResizable();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( key === "title" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._title( this.uiDialogTitlebar.find( ".ui-dialog-title" ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _size: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // If the user has resized the dialog, the .ui-dialog and .ui-dialog-content< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// divs will both have width and height set, so we need to reset them< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {var nonContentHeight, minContentHeight, maxContentHeight,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options = this.options;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Reset content sizing< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {this.element.show().css( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: "auto",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { minHeight: 0,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { maxHeight: "none",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: 0< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( options.minWidth > options.width ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options.width = options.minWidth;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Reset wrapper sizing< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// determine the height of all the non-content elements< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { nonContentHeight = this.uiDialog.css( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: "auto",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: options.width< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .outerHeight();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { minContentHeight = Math.max( 0, options.minHeight - nonContentHeight );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { maxContentHeight = typeof options.maxHeight === "number" ?< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { Math.max( 0, options.maxHeight - nonContentHeight ) :< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "none";< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( options.height === "auto" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element.css( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { minHeight: minContentHeight,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { maxHeight: maxContentHeight,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: "auto"< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } else {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element.height( Math.max( 0, options.height - nonContentHeight ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.uiDialog.is( ":data(ui-resizable)" ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog.resizable( "option", "minHeight", this._minHeight() );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _blockFrames: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.iframeBlocks = this.document.find( "iframe" ).map( function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var iframe = $( this );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return $( "<div>" )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .css( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { position: "absolute",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: iframe.outerWidth(),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: iframe.outerHeight()< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .appendTo( iframe.parent() )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .offset( iframe.offset() )[ 0 ];< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _unblockFrames: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.iframeBlocks ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.iframeBlocks.remove();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { delete this.iframeBlocks;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _allowInteraction: function( event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( $( event.target ).closest( ".ui-dialog" ).length ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returntrue;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // TODO: Remove hack when datepicker implements< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// the .ui-front logic (#8989)< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {return !!$( event.target ).closest( ".ui-datepicker" ).length;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _createOverlay: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !this.options.modal ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // We use a delay in case the overlay is created from an< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// event that we're going to be cancelling (#2804)< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {var isOpening = true;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._delay( function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { isOpening = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !this.document.data( "ui-dialog-overlays" ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Prevent use of anchors and inputs< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// Using _on() for an event handler shared across many instances is< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// safe because the dialogs stack and must be closed in reverse order< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {this._on( this.document, {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { focusin: function( event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( isOpening ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !this._allowInteraction( event ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { event.preventDefault();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._trackingInstances()[ 0 ]._focusTabbable();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.overlay = $( "<div>" )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .appendTo( this._appendTo() );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addClass( this.overlay, null, "ui-widget-overlay ui-front" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._on( this.overlay, {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { mousedown: "_keepFocus"< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.document.data( "ui-dialog-overlays",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( this.document.data( "ui-dialog-overlays" ) || 0 ) + 1 );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _destroyOverlay: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !this.options.modal ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.overlay ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var overlays = this.document.data( "ui-dialog-overlays" ) - 1;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !overlays ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._off( this.document, "focusin" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.document.removeData( "ui-dialog-overlays" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } else {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.document.data( "ui-dialog-overlays", overlays );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.overlay.remove();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.overlay = null;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {} );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// DEPRECATED< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// TODO: switch return back to widget declaration at top of file when this is removed< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( $.uiBackCompat !== false ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Backcompat for dialogClass option< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.widget( "ui.dialog", $.ui.dialog, {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options: {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { dialogClass: ""< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _createWrapper: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._super();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog.addClass( this.options.dialogClass );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _setOption: function( key, value ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( key === "dialogClass" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.uiDialog< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .removeClass( this.options.dialogClass )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .addClass( value );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._superApply( arguments );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {}< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {var widgetsDialog = $.ui.dialog;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {/*!< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * jQuery UI Droppable 1.12.1< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * http://jqueryui.com< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { *< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * Copyright jQuery Foundation and other contributors< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * Released under the MIT license.< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * http://jquery.org/license< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { */< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>label: Droppable< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>group: Interactions< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>description: Enables drop targets for draggable elements.< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>docs: http://api.jqueryui.com/droppable/< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>demos: http://jqueryui.com/droppable/< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {$.widget( "ui.droppable", {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { version: "1.12.1",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { widgetEventPrefix: "drop",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options: {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { accept: "*",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { addClasses: true,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { greedy: false,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { scope: "default",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { tolerance: "intersect",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Callbacks< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { activate: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { deactivate: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { drop: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { out: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { over: null< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _create: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var proportions,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { o = this.options,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { accept = o.accept;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.isover = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.isout = true;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.accept = $.isFunction( accept ) ? accept : function( d ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return d.is( accept );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.proportions = function( /* valueToWrite */ ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( arguments.length ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Store the droppable's proportions< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { proportions = arguments[ 0 ];< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } else {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Retrieve or derive the droppable's proportions< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {return proportions ?< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { proportions :< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { proportions = {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: this.element[ 0 ].offsetWidth,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: this.element[ 0 ].offsetHeight< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addToManager( o.scope );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { o.addClasses && this._addClass( "ui-droppable" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _addToManager: function( scope ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Add the reference and positions to the manager< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.ui.ddmanager.droppables[ scope ] = $.ui.ddmanager.droppables[ scope ] || [];< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.ui.ddmanager.droppables[ scope ].push( this );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _splice: function( drop ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var i = 0;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { for ( ; i < drop.length; i++ ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( drop[ i ] === this ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { drop.splice( i, 1 );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _destroy: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var drop = $.ui.ddmanager.droppables[ this.options.scope ];< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._splice( drop );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _setOption: function( key, value ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( key === "accept" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.accept = $.isFunction( value ) ? value : function( d ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return d.is( value );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } elseif ( key === "scope" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var drop = $.ui.ddmanager.droppables[ this.options.scope ];< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._splice( drop );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addToManager( value );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._super( key, value );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _activate: function( event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var draggable = $.ui.ddmanager.current;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addActiveClass();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( draggable ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._trigger( "activate", event, this.ui( draggable ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _deactivate: function( event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var draggable = $.ui.ddmanager.current;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._removeActiveClass();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( draggable ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._trigger( "deactivate", event, this.ui( draggable ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _over: function( event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var draggable = $.ui.ddmanager.current;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Bail if draggable and droppable are same element< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( !draggable || ( draggable.currentItem ||< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { draggable.element )[ 0 ] === this.element[ 0 ] ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.accept.call( this.element[ 0 ], ( draggable.currentItem ||< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { draggable.element ) ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addHoverClass();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._trigger( "over", event, this.ui( draggable ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _out: function( event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var draggable = $.ui.ddmanager.current;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Bail if draggable and droppable are same element< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( !draggable || ( draggable.currentItem ||< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { draggable.element )[ 0 ] === this.element[ 0 ] ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.accept.call( this.element[ 0 ], ( draggable.currentItem ||< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { draggable.element ) ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._removeHoverClass();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._trigger( "out", event, this.ui( draggable ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _drop: function( event, custom ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var draggable = custom || $.ui.ddmanager.current,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { childrenIntersection = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Bail if draggable and droppable are same element< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( !draggable || ( draggable.currentItem ||< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { draggable.element )[ 0 ] === this.element[ 0 ] ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnfalse;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .find( ":data(ui-droppable)" )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .not( ".ui-draggable-dragging" )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .each( function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var inst = $( this ).droppable( "instance" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if (< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { inst.options.greedy &&< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { !inst.options.disabled &&< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { inst.options.scope === draggable.options.scope &&< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { inst.accept.call(< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { inst.element[ 0 ], ( draggable.currentItem || draggable.element )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ) &&< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { intersect(< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { draggable,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.extend( inst, { offset: inst.element.offset() } ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { inst.options.tolerance, event< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { childrenIntersection = true;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnfalse; }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( childrenIntersection ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnfalse;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.accept.call( this.element[ 0 ],< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( draggable.currentItem || draggable.element ) ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._removeActiveClass();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._removeHoverClass();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._trigger( "drop", event, this.ui( draggable ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnthis.element;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnfalse;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ui: function( c ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { draggable: ( c.currentItem || c.element ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { helper: c.helper,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { position: c.position,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { offset: c.positionAbs< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Extension points just to make backcompat sane and avoid duplicating logic< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// TODO: Remove in 1.13 along with call to it below< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _addHoverClass: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addClass( "ui-droppable-hover" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _removeHoverClass: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._removeClass( "ui-droppable-hover" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _addActiveClass: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addClass( "ui-droppable-active" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _removeActiveClass: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._removeClass( "ui-droppable-active" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {} );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {var intersect = $.ui.intersect = ( function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { functionisOverAxis( x, reference, size ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return ( x >= reference ) && ( x < ( reference + size ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnfunction( draggable, droppable, toleranceMode, event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !droppable.offset ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnfalse;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var x1 = ( draggable.positionAbs ||< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { draggable.position.absolute ).left + draggable.margins.left,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { y1 = ( draggable.positionAbs ||< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { draggable.position.absolute ).top + draggable.margins.top,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { x2 = x1 + draggable.helperProportions.width,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { y2 = y1 + draggable.helperProportions.height,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { l = droppable.offset.left,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { t = droppable.offset.top,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { r = l + droppable.proportions().width,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { b = t + droppable.proportions().height;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { switch ( toleranceMode ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { case"fit":< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return ( l <= x1 && x2 <= r && t <= y1 && y2 <= b );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { case"intersect":< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return ( l < x1 + ( draggable.helperProportions.width / 2 ) && // Right Half< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { x2 - ( draggable.helperProportions.width / 2 ) < r && // Left Half< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { t < y1 + ( draggable.helperProportions.height / 2 ) && // Bottom Half< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { y2 - ( draggable.helperProportions.height / 2 ) < b ); // Top Half< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {case"pointer":< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return isOverAxis( event.pageY, t, droppable.proportions().height ) &&< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { isOverAxis( event.pageX, l, droppable.proportions().width );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { case"touch":< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return (< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( y1 >= t && y1 <= b ) || // Top edge touching< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( y2 >= t && y2 <= b ) || // Bottom edge touching< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( y1 < t && y2 > b ) // Surrounded vertically< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ) && (< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( x1 >= l && x1 <= r ) || // Left edge touching< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( x2 >= l && x2 <= r ) || // Right edge touching< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( x1 < l && x2 > r ) // Surrounded horizontally< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { default:< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnfalse;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { };< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {} )();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {/*< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { This manager tracks offsets of draggables and droppables< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {*/< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {$.ui.ddmanager = {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { current: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { droppables: { "default": [] },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { prepareOffsets: function( t, event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var i, j,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { m = $.ui.ddmanager.droppables[ t.options.scope ] || [],< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { type = event ? event.type : null, // workaround for #2317< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { list = ( t.currentItem || t.element ).find( ":data(ui-droppable)" ).addBack();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { droppablesLoop: for ( i = 0; i < m.length; i++ ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // No disabled and non-accepted< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( m[ i ].options.disabled || ( t && !m[ i ].accept.call( m[ i ].element[ 0 ],< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( t.currentItem || t.element ) ) ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { continue;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Filter out elements in the current dragged item< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {for ( j = 0; j < list.length; j++ ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( list[ j ] === m[ i ].element[ 0 ] ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { m[ i ].proportions().height = 0;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { continue droppablesLoop;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { m[ i ].visible = m[ i ].element.css( "display" ) !== "none";< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !m[ i ].visible ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { continue;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Activate the droppable if used directly from draggables< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( type === "mousedown" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { m[ i ]._activate.call( m[ i ], event );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { m[ i ].offset = m[ i ].element.offset();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { m[ i ].proportions( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { width: m[ i ].element[ 0 ].offsetWidth,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { height: m[ i ].element[ 0 ].offsetHeight< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { drop: function( draggable, event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var dropped = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Create a copy of the droppables in case the list changes during the drop (#9116)< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.each( ( $.ui.ddmanager.droppables[ draggable.options.scope ] || [] ).slice(), function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !this.options ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !this.options.disabled && this.visible &&< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { intersect( draggable, this, this.options.tolerance, event ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { dropped = this._drop.call( this, event ) || dropped;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !this.options.disabled && this.visible && this.accept.call( this.element[ 0 ],< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( draggable.currentItem || draggable.element ) ) ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.isout = true;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.isover = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._deactivate.call( this, event );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return dropped;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { dragStart: function( draggable, event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Listen for scrolling so that if the dragging causes scrolling the position of the< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// droppables can be recalculated (see #5003)< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { draggable.element.parentsUntil( "body" ).on( "scroll.droppable", function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !draggable.options.refreshPositions ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.ui.ddmanager.prepareOffsets( draggable, event );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { drag: function( draggable, event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // If you have a highly dynamic page, you might try this option. It renders positions< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// every time you move the mouse.< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( draggable.options.refreshPositions ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.ui.ddmanager.prepareOffsets( draggable, event );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Run through all droppables and check their positions based on specific tolerance options< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.each( $.ui.ddmanager.droppables[ draggable.options.scope ] || [], function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.options.disabled || this.greedyChild || !this.visible ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var parentInstance, scope, parent,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { intersects = intersect( draggable, this, this.options.tolerance, event ),< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { c = !intersects && this.isover ?< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "isout" :< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ( intersects && !this.isover ? "isover" : null );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !c ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.options.greedy ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // find droppable parents with same scope< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { scope = this.options.scope;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { parent = this.element.parents( ":data(ui-droppable)" ).filter( function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { return $( this ).droppable( "instance" ).options.scope === scope;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( parent.length ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { parentInstance = $( parent[ 0 ] ).droppable( "instance" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { parentInstance.greedyChild = ( c === "isover" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // We just moved into a greedy child< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( parentInstance && c === "isover" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { parentInstance.isover = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { parentInstance.isout = true;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { parentInstance._out.call( parentInstance, event );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this[ c ] = true;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this[ c === "isout" ? "isover" : "isout" ] = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this[ c === "isover" ? "_over" : "_out" ].call( this, event );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // We just moved out of a greedy child< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( parentInstance && c === "isout" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { parentInstance.isout = false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { parentInstance.isover = true;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { parentInstance._over.call( parentInstance, event );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { dragStop: function( draggable, event ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { draggable.element.parentsUntil( "body" ).off( "scroll.droppable" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Call prepareOffsets one final time since IE does not fire return scroll events when< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// overflow was caused by drag (see #5003)< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( !draggable.options.refreshPositions ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.ui.ddmanager.prepareOffsets( draggable, event );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {};< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// DEPRECATED< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// TODO: switch return back to widget declaration at top of file when this is removed< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( $.uiBackCompat !== false ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Backcompat for activeClass and hoverClass options< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { $.widget( "ui.droppable", $.ui.droppable, {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options: {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { hoverClass: false,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { activeClass: false< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _addActiveClass: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._super();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.options.activeClass ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element.addClass( this.options.activeClass );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _removeActiveClass: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._super();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.options.activeClass ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element.removeClass( this.options.activeClass );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _addHoverClass: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._super();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.options.hoverClass ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element.addClass( this.options.hoverClass );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _removeHoverClass: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._super();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.options.hoverClass ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element.removeClass( this.options.hoverClass );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {}< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {var widgetsDroppable = $.ui.droppable;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {/*!< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * jQuery UI Progressbar 1.12.1< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * http://jqueryui.com< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { *< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * Copyright jQuery Foundation and other contributors< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * Released under the MIT license.< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { * http://jquery.org/license< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { */< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>label: Progressbar< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>group: Widgets< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// jscs:disable maximumLineLength< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>description: Displays a status indicator for loading state, standard percentage, and other progress indicators.< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// jscs:enable maximumLineLength< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>docs: http://api.jqueryui.com/progressbar/< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>demos: http://jqueryui.com/progressbar/< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>css.structure: ../../themes/base/core.css< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>css.structure: ../../themes/base/progressbar.css< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {//>>css.theme: ../../themes/base/theme.css< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {var widgetsProgressbar = $.widget( "ui.progressbar", {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { version: "1.12.1",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { options: {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { classes: {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "ui-progressbar": "ui-corner-all",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "ui-progressbar-value": "ui-corner-left",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "ui-progressbar-complete": "ui-corner-right"< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { max: 100,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { value: 0,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { change: null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { complete: null< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { min: 0,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _create: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Constrain initial value< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {this.oldValue = this.options.value = this._constrainedValue();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element.attr( {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Only set static values; aria-valuenow and aria-valuemax are< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {// set inside _refreshValue()< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { role: "progressbar",< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { "aria-valuemin": this.min< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { } );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addClass( "ui-progressbar", "ui-widget ui-widget-content" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.valueDiv = $( "<div>" ).appendTo( this.element );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._addClass( this.valueDiv, "ui-progressbar-value", "ui-widget-header" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._refreshValue();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _destroy: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element.removeAttr( "role aria-valuemin aria-valuemax aria-valuenow" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.valueDiv.remove();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { value: function( newValue ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( newValue === undefined ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnthis.options.value;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.options.value = this._constrainedValue( newValue );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._refreshValue();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _constrainedValue: function( newValue ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( newValue === undefined ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { newValue = this.options.value;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.indeterminate = newValue === false;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Sanitize value< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {if ( typeof newValue !== "number" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { newValue = 0;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnthis.indeterminate ? false :< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { Math.min( this.options.max, Math.max( this.min, newValue ) );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _setOptions: function( options ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Ensure "value" option is set after other values (like max)< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {var value = options.value;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { delete options.value;< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._super( options );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.options.value = this._constrainedValue( value );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._refreshValue();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _setOption: function( key, value ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( key === "max" ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { // Don't allow a max less than min< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { value = Math.max( this.min, value );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { }< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._super( key, value );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _setOptionDisabled: function( value ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._super( value );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element.attr( "aria-disabled", value );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this._toggleClass( null, "ui-state-disabled", !!value );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _percentage: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { returnthis.indeterminate ?< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { 100 :< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { 100 * ( this.options.value - this.min ) / ( this.options.max - this.min );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { },< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { _refreshValue: function() {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { var value = this.options.value,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { percentage = this._percentage();< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.valueDiv< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .toggle( this.indeterminate || value > this.min )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { .width( percentage.toFixed( 0 ) + "%" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ._toggleClass( this.valueDiv, "ui-progressbar-complete", null,< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { value === this.options.max )< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { ._toggleClass( "ui-progressbar-indeterminate", null, this.indeterminate );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( this.indeterminate ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.element.removeAttr( "aria-valuenow" );< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { if ( !this.overlayDiv ) {< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) { this.overlayDiv = $( "
" ).appendTo( this.valueDiv );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this._addClass( this.overlayDiv, "ui-progressbar-overlay" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
}
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
} else {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.element.attr( {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
"aria-valuemax": this.options.max,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
"aria-valuenow": value
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
} );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
if ( this.overlayDiv ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.overlayDiv.remove();
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.overlayDiv = null;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
}
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
}
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
if ( this.oldValue !== value ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.oldValue = value;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this._trigger( "change" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
}
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
if ( value === this.options.max ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this._trigger( "complete" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
}
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
}
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
} );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
/*!
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
* jQuery UI Selectable 1.12.1
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
* http://jqueryui.com
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
*
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
* Copyright jQuery Foundation and other contributors
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
* Released under the MIT license.
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
* http://jquery.org/license
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
*/
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
//>>label: Selectable
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
//>>group: Interactions
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
//>>description: Allows groups of elements to be selected with the mouse.
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
//>>docs: http://api.jqueryui.com/selectable/
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
//>>demos: http://jqueryui.com/selectable/
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
//>>css.structure: ../../themes/base/selectable.css
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
var widgetsSelectable = $.widget( "ui.selectable", $.ui.mouse, {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
version: "1.12.1",
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
options: {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
appendTo: "body",
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
autoRefresh: true,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
distance: 0,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
filter: "*",
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
tolerance: "touch",
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
// Callbacks
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
selected: null,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
selecting: null,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
start: null,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
stop: null,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
unselected: null,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
unselecting: null
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
},
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
_create: function() {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
var that = this;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this._addClass( "ui-selectable" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.dragged = false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
// Cache selectee children based on filter
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.refresh = function() {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
that.elementPos = $( that.element[ 0 ] ).offset();
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
that.selectees = $( that.options.filter, that.element[ 0 ] );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
that._addClass( that.selectees, "ui-selectee" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
that.selectees.each( function() {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
var $this = $( this ),
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
selecteeOffset = $this.offset(),
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
pos = {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
left: selecteeOffset.left - that.elementPos.left,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
top: selecteeOffset.top - that.elementPos.top
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
};
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
$.data( this, "selectable-item", {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
element: this,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
$element: $this,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
left: pos.left,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
top: pos.top,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
right: pos.left + $this.outerWidth(),
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
bottom: pos.top + $this.outerHeight(),
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
startselected: false,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
selected: $this.hasClass( "ui-selected" ),
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
selecting: $this.hasClass( "ui-selecting" ),
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
unselecting: $this.hasClass( "ui-unselecting" )
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
} );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
} );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
};
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.refresh();
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this._mouseInit();
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.helper = $( "
" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this._addClass( this.helper, "ui-selectable-helper" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
},
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
_destroy: function() {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.selectees.removeData( "selectable-item" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this._mouseDestroy();
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
},
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
_mouseStart: function( event ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
var that = this,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
options = this.options;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.opos = [ event.pageX, event.pageY ];
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.elementPos = $( this.element[ 0 ] ).offset();
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
if ( this.options.disabled ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
return;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
}
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.selectees = $( options.filter, this.element[ 0 ] );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this._trigger( "start", event );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
$( options.appendTo ).append( this.helper );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
// position helper (lasso)
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.helper.css( {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
"left": event.pageX,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
"top": event.pageY,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
"width": 0,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
"height": 0
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
} );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
if ( options.autoRefresh ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.refresh();
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
}
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.selectees.filter( ".ui-selected" ).each( function() {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
var selectee = $.data( this, "selectable-item" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
selectee.startselected = true;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
if ( !event.metaKey && !event.ctrlKey ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
that._removeClass( selectee.$element, "ui-selected" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
selectee.selected = false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
that._addClass( selectee.$element, "ui-unselecting" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
selectee.unselecting = true;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
// selectable UNSELECTING callback
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
that._trigger( "unselecting", event, {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
unselecting: selectee.element
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
} );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
}
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
} );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
$( event.target ).parents().addBack().each( function() {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
var doSelect,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
selectee = $.data( this, "selectable-item" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
if ( selectee ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
doSelect = ( !event.metaKey && !event.ctrlKey ) ||
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
!selectee.$element.hasClass( "ui-selected" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
that._removeClass( selectee.$element, doSelect ? "ui-unselecting" : "ui-selected" )
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
._addClass( selectee.$element, doSelect ? "ui-selecting" : "ui-unselecting" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
selectee.unselecting = !doSelect;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
selectee.selecting = doSelect;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
selectee.selected = doSelect;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
// selectable (UN)SELECTING callback
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
if ( doSelect ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
that._trigger( "selecting", event, {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
selecting: selectee.element
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
} );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
} else {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
that._trigger( "unselecting", event, {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
unselecting: selectee.element
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
} );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
}
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
return false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
}
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
} );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
},
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
_mouseDrag: function( event ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.dragged = true;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
if ( this.options.disabled ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
return;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
}
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
var tmp,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
that = this,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
options = this.options,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
x1 = this.opos[ 0 ],
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
y1 = this.opos[ 1 ],
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
x2 = event.pageX,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
y2 = event.pageY;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
if ( x1 > x2 ) { tmp = x2; x2 = x1; x1 = tmp; }
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
if ( y1 > y2 ) { tmp = y2; y2 = y1; y1 = tmp; }
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.helper.css( { left: x1, top: y1, width: x2 - x1, height: y2 - y1 } );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
this.selectees.each( function() {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
var selectee = $.data( this, "selectable-item" ),
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
hit = false,
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
offset = {};
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
//prevent helper from being selected if appendTo: selectable
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
if ( !selectee || selectee.element === that.element[ 0 ] ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
return;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
}
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
offset.left = selectee.left + that.elementPos.left;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
offset.right = selectee.right + that.elementPos.left;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
offset.top = selectee.top + that.elementPos.top;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
offset.bottom = selectee.bottom + that.elementPos.top;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
if ( options.tolerance === "touch" ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
hit = ( !( offset.left > x2 || offset.right < x1 || offset.top > y2 ||
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top > offset.bottom < y1 ) );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) ); } else if ( options.tolerance === "fit" ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) ); hit = ( offset.left > x1 && offset.right < x2 && offset.top > y1 &&
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top > offset.bottom < y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); }
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); if ( hit ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); // SELECT
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); if ( selectee.selected ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._removeClass( selectee.$element, "ui-selected" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.selected = false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); }
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); if ( selectee.unselecting ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._removeClass( selectee.$element, "ui-unselecting" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.unselecting = false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); }
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); if ( !selectee.selecting ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._addClass( selectee.$element, "ui-selecting" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.selecting = true;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); // selectable SELECTING callback
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._trigger( "selecting", event, {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selecting: selectee.element
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); } );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); }
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); } else {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); // UNSELECT
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); if ( selectee.selecting ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); if ( ( event.metaKey || event.ctrlKey ) && selectee.startselected ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._removeClass( selectee.$element, "ui-selecting" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.selecting = false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._addClass( selectee.$element, "ui-selected" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.selected = true;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); } else {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._removeClass( selectee.$element, "ui-selecting" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.selecting = false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); if ( selectee.startselected ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._addClass( selectee.$element, "ui-unselecting" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.unselecting = true;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); }
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); // selectable UNSELECTING callback
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._trigger( "unselecting", event, {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); unselecting: selectee.element
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); } );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); }
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); }
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); if ( selectee.selected ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); if ( !event.metaKey && !event.ctrlKey && !selectee.startselected ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._removeClass( selectee.$element, "ui-selected" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.selected = false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._addClass( selectee.$element, "ui-unselecting" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.unselecting = true;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); // selectable UNSELECTING callback
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._trigger( "unselecting", event, {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); unselecting: selectee.element
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); } );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); }
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); }
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); }
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); } );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); return false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); },
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); _mouseStop: function( event ) {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); var that = this;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); this.dragged = false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); $( ".ui-unselecting", this.element[ 0 ] ).each( function() {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); var selectee = $.data( this, "selectable-item" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._removeClass( selectee.$element, "ui-unselecting" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.unselecting = false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.startselected = false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._trigger( "unselected", event, {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); unselected: selectee.element
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); } );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); } );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); $( ".ui-selecting", this.element[ 0 ] ).each( function() {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); var selectee = $.data( this, "selectable-item" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._removeClass( selectee.$element, "ui-selecting" )
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); ._addClass( selectee.$element, "ui-selected" );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.selecting = false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.selected = true;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selectee.startselected = true;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); that._trigger( "selected", event, {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); selected: selectee.element
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); } );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); } );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); this._trigger( "stop", event );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); this.helper.remove();
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); return false;
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); }
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );} );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );/*!
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); * jQuery UI Selectmenu 1.12.1
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); * http://jqueryui.com
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); *
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); * Copyright jQuery Foundation and other contributors
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); * Released under the MIT license.
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); * http://jquery.org/license
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); */
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );//>>label: Selectmenu
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );//>>group: Widgets
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );// jscs:disable maximumLineLength
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );//>>description: Duplicates and extends the functionality of a native HTML select element, allowing it to be customizable in behavior and appearance far beyond the limitations of a native select.
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );// jscs:enable maximumLineLength
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );//>>docs: http://api.jqueryui.com/selectmenu/
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );//>>demos: http://jqueryui.com/selectmenu/
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );//>>css.structure: ../../themes/base/core.css
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );//>>css.structure: ../../themes/base/selectmenu.css, ../../themes/base/button.css
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );//>>css.theme: ../../themes/base/theme.css
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); version: "1.12.1",
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 ); defaultElement: "
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
< b.maxWidth ) {< b.maxHeight ) {< ( that._helper ? co.top : 0 ) ) {
< x1 || offset.top >< y1 ) );< x2 && offset.top >< y2 );
Rev Author Line No. Line
18 eva 1 /*! jQuery UI - v1.12.1 - 2016-09-14
2 * http://jqueryui.com
3 * Includes: widget.js, position.js, data.js, disable-selection.js, effect.js, effects/effect-blind.js, effects/effect-bounce.js, effects/effect-clip.js, effects/effect-drop.js, effects/effect-explode.js, effects/effect-fade.js, effects/effect-fold.js, effects/effect-highlight.js, effects/effect-puff.js, effects/effect-pulsate.js, effects/effect-scale.js, effects/effect-shake.js, effects/effect-size.js, effects/effect-slide.js, effects/effect-transfer.js, focusable.js, form-reset-mixin.js, jquery-1-7.js, keycode.js, labels.js, scroll-parent.js, tabbable.js, unique-id.js, widgets/accordion.js, widgets/autocomplete.js, widgets/button.js, widgets/checkboxradio.js, widgets/controlgroup.js, widgets/datepicker.js, widgets/dialog.js, widgets/draggable.js, widgets/droppable.js, widgets/menu.js, widgets/mouse.js, widgets/progressbar.js, widgets/resizable.js, widgets/selectable.js, widgets/selectmenu.js, widgets/slider.js, widgets/sortable.js, widgets/spinner.js, widgets/tabs.js, widgets/tooltip.js
4 * Copyright jQuery Foundation and other contributors; Licensed MIT */
5  
6 (function( factory ) {
7 if ( typeof define === "function" && define.amd ) {
8  
9 // AMD. Register as an anonymous module.
10 define([ "jquery" ], factory );
11 } else {
12  
13 // Browser globals
14 factory( jQuery );
15 }
16 }(function( $ ) {
17  
18 $.ui = $.ui || {};
19  
20 var version = $.ui.version = "1.12.1";
21  
22  
23 /*!
24 * jQuery UI Widget 1.12.1
25 * http://jqueryui.com
26 *
27 * Copyright jQuery Foundation and other contributors
28 * Released under the MIT license.
29 * http://jquery.org/license
30 */
31  
32 //>>label: Widget
33 //>>group: Core
34 //>>description: Provides a factory for creating stateful widgets with a common API.
35 //>>docs: http://api.jqueryui.com/jQuery.widget/
36 //>>demos: http://jqueryui.com/widget/
37  
38  
39  
40 var widgetUuid = 0;
41 var widgetSlice = Array.prototype.slice;
42  
43 $.cleanData = ( function( orig ) {
44 return function( elems ) {
45 var events, elem, i;
46 for ( i = 0; ( elem = elems[ i ] ) != null; i++ ) {
47 try {
48  
49 // Only trigger remove when necessary to save time
50 events = $._data( elem, "events" );
51 if ( events && events.remove ) {
52 $( elem ).triggerHandler( "remove" );
53 }
54  
55 // Http://bugs.jquery.com/ticket/8235
56 } catch ( e ) {}
57 }
58 orig( elems );
59 };
60 } )( $.cleanData );
61  
62 $.widget = function( name, base, prototype ) {
63 var existingConstructor, constructor, basePrototype;
64  
65 // ProxiedPrototype allows the provided prototype to remain unmodified
66 // so that it can be used as a mixin for multiple widgets (#8876)
67 var proxiedPrototype = {};
68  
69 var namespace = name.split( "." )[ 0 ];
70 name = name.split( "." )[ 1 ];
71 var fullName = namespace + "-" + name;
72  
73 if ( !prototype ) {
74 prototype = base;
75 base = $.Widget;
76 }
77  
78 if ( $.isArray( prototype ) ) {
79 prototype = $.extend.apply( null, [ {} ].concat( prototype ) );
80 }
81  
82 // Create selector for plugin
83 $.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) {
84 return !!$.data( elem, fullName );
85 };
86  
87 $[ namespace ] = $[ namespace ] || {};
88 existingConstructor = $[ namespace ][ name ];
89 constructor = $[ namespace ][ name ] = function( options, element ) {
90  
91 // Allow instantiation without "new" keyword
92 if ( !this._createWidget ) {
93 return new constructor( options, element );
94 }
95  
96 // Allow instantiation without initializing for simple inheritance
97 // must use "new" keyword (the code above always passes args)
98 if ( arguments.length ) {
99 this._createWidget( options, element );
100 }
101 };
102  
103 // Extend with the existing constructor to carry over any static properties
104 $.extend( constructor, existingConstructor, {
105 version: prototype.version,
106  
107 // Copy the object used to create the prototype in case we need to
108 // redefine the widget later
109 _proto: $.extend( {}, prototype ),
110  
111 // Track widgets that inherit from this widget in case this widget is
112 // redefined after a widget inherits from it
113 _childConstructors: []
114 } );
115  
116 basePrototype = new base();
117  
118 // We need to make the options hash a property directly on the new instance
119 // otherwise we'll modify the options hash on the prototype that we're
120 // inheriting from
121 basePrototype.options = $.widget.extend( {}, basePrototype.options );
122 $.each( prototype, function( prop, value ) {
123 if ( !$.isFunction( value ) ) {
124 proxiedPrototype[ prop ] = value;
125 return;
126 }
127 proxiedPrototype[ prop ] = ( function() {
128 function _super() {
129 return base.prototype[ prop ].apply( this, arguments );
130 }
131  
132 function _superApply( args ) {
133 return base.prototype[ prop ].apply( this, args );
134 }
135  
136 return function() {
137 var __super = this._super;
138 var __superApply = this._superApply;
139 var returnValue;
140  
141 this._super = _super;
142 this._superApply = _superApply;
143  
144 returnValue = value.apply( this, arguments );
145  
146 this._super = __super;
147 this._superApply = __superApply;
148  
149 return returnValue;
150 };
151 } )();
152 } );
153 constructor.prototype = $.widget.extend( basePrototype, {
154  
155 // TODO: remove support for widgetEventPrefix
156 // always use the name + a colon as the prefix, e.g., draggable:start
157 // don't prefix for widgets that aren't DOM-based
158 widgetEventPrefix: existingConstructor ? ( basePrototype.widgetEventPrefix || name ) : name
159 }, proxiedPrototype, {
160 constructor: constructor,
161 namespace: namespace,
162 widgetName: name,
163 widgetFullName: fullName
164 } );
165  
166 // If this widget is being redefined then we need to find all widgets that
167 // are inheriting from it and redefine all of them so that they inherit from
168 // the new version of this widget. We're essentially trying to replace one
169 // level in the prototype chain.
170 if ( existingConstructor ) {
171 $.each( existingConstructor._childConstructors, function( i, child ) {
172 var childPrototype = child.prototype;
173  
174 // Redefine the child widget using the same prototype that was
175 // originally used, but inherit from the new version of the base
176 $.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor,
177 child._proto );
178 } );
179  
180 // Remove the list of existing child constructors from the old constructor
181 // so the old child constructors can be garbage collected
182 delete existingConstructor._childConstructors;
183 } else {
184 base._childConstructors.push( constructor );
185 }
186  
187 $.widget.bridge( name, constructor );
188  
189 return constructor;
190 };
191  
192 $.widget.extend = function( target ) {
193 var input = widgetSlice.call( arguments, 1 );
194 var inputIndex = 0;
195 var inputLength = input.length;
196 var key;
197 var value;
198  
199 for ( ; inputIndex < inputLength; inputIndex++ ) {
200 for ( key in input[ inputIndex ] ) {
201 value = input[ inputIndex ][ key ];
202 if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) {
203  
204 // Clone objects
205 if ( $.isPlainObject( value ) ) {
206 target[ key ] = $.isPlainObject( target[ key ] ) ?
207 $.widget.extend( {}, target[ key ], value ) :
208  
209 // Don't extend strings, arrays, etc. with objects
210 $.widget.extend( {}, value );
211  
212 // Copy everything else by reference
213 } else {
214 target[ key ] = value;
215 }
216 }
217 }
218 }
219 return target;
220 };
221  
222 $.widget.bridge = function( name, object ) {
223 var fullName = object.prototype.widgetFullName || name;
224 $.fn[ name ] = function( options ) {
225 var isMethodCall = typeof options === "string";
226 var args = widgetSlice.call( arguments, 1 );
227 var returnValue = this;
228  
229 if ( isMethodCall ) {
230  
231 // If this is an empty collection, we need to have the instance method
232 // return undefined instead of the jQuery instance
233 if ( !this.length && options === "instance" ) {
234 returnValue = undefined;
235 } else {
236 this.each( function() {
237 var methodValue;
238 var instance = $.data( this, fullName );
239  
240 if ( options === "instance" ) {
241 returnValue = instance;
242 return false;
243 }
244  
245 if ( !instance ) {
246 return $.error( "cannot call methods on " + name +
247 " prior to initialization; " +
248 "attempted to call method '" + options + "'" );
249 }
250  
251 if ( !$.isFunction( instance[ options ] ) || options.charAt( 0 ) === "_" ) {
252 return $.error( "no such method '" + options + "' for " + name +
253 " widget instance" );
254 }
255  
256 methodValue = instance[ options ].apply( instance, args );
257  
258 if ( methodValue !== instance && methodValue !== undefined ) {
259 returnValue = methodValue && methodValue.jquery ?
260 returnValue.pushStack( methodValue.get() ) :
261 methodValue;
262 return false;
263 }
264 } );
265 }
266 } else {
267  
268 // Allow multiple hashes to be passed on init
269 if ( args.length ) {
270 options = $.widget.extend.apply( null, [ options ].concat( args ) );
271 }
272  
273 this.each( function() {
274 var instance = $.data( this, fullName );
275 if ( instance ) {
276 instance.option( options || {} );
277 if ( instance._init ) {
278 instance._init();
279 }
280 } else {
281 $.data( this, fullName, new object( options, this ) );
282 }
283 } );
284 }
285  
286 return returnValue;
287 };
288 };
289  
290 $.Widget = function( /* options, element */ ) {};
291 $.Widget._childConstructors = [];
292  
293 $.Widget.prototype = {
294 widgetName: "widget",
295 widgetEventPrefix: "",
296 defaultElement: "<div>",
297  
298 options: {
299 classes: {},
300 disabled: false,
301  
302 // Callbacks
303 create: null
304 },
305  
306 _createWidget: function( options, element ) {
307 element = $( element || this.defaultElement || this )[ 0 ];
308 this.element = $( element );
309 this.uuid = widgetUuid++;
310 this.eventNamespace = "." + this.widgetName + this.uuid;
311  
312 this.bindings = $();
313 this.hoverable = $();
314 this.focusable = $();
315 this.classesElementLookup = {};
316  
317 if ( element !== this ) {
318 $.data( element, this.widgetFullName, this );
319 this._on( true, this.element, {
320 remove: function( event ) {
321 if ( event.target === element ) {
322 this.destroy();
323 }
324 }
325 } );
326 this.document = $( element.style ?
327  
328 // Element within the document
329 element.ownerDocument :
330  
331 // Element is window or document
332 element.document || element );
333 this.window = $( this.document[ 0 ].defaultView || this.document[ 0 ].parentWindow );
334 }
335  
336 this.options = $.widget.extend( {},
337 this.options,
338 this._getCreateOptions(),
339 options );
340  
341 this._create();
342  
343 if ( this.options.disabled ) {
344 this._setOptionDisabled( this.options.disabled );
345 }
346  
347 this._trigger( "create", null, this._getCreateEventData() );
348 this._init();
349 },
350  
351 _getCreateOptions: function() {
352 return {};
353 },
354  
355 _getCreateEventData: $.noop,
356  
357 _create: $.noop,
358  
359 _init: $.noop,
360  
361 destroy: function() {
362 var that = this;
363  
364 this._destroy();
365 $.each( this.classesElementLookup, function( key, value ) {
366 that._removeClass( value, key );
367 } );
368  
369 // We can probably remove the unbind calls in 2.0
370 // all event bindings should go through this._on()
371 this.element
372 .off( this.eventNamespace )
373 .removeData( this.widgetFullName );
374 this.widget()
375 .off( this.eventNamespace )
376 .removeAttr( "aria-disabled" );
377  
378 // Clean up events and states
379 this.bindings.off( this.eventNamespace );
380 },
381  
382 _destroy: $.noop,
383  
384 widget: function() {
385 return this.element;
386 },
387  
388 option: function( key, value ) {
389 var options = key;
390 var parts;
391 var curOption;
392 var i;
393  
394 if ( arguments.length === 0 ) {
395  
396 // Don't return a reference to the internal hash
397 return $.widget.extend( {}, this.options );
398 }
399  
400 if ( typeof key === "string" ) {
401  
402 // Handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } }
403 options = {};
404 parts = key.split( "." );
405 key = parts.shift();
406 if ( parts.length ) {
407 curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] );
408 for ( i = 0; i < parts.length - 1; i++ ) {
409 curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {};
410 curOption = curOption[ parts[ i ] ];
411 }
412 key = parts.pop();
413 if ( arguments.length === 1 ) {
414 return curOption[ key ] === undefined ? null : curOption[ key ];
415 }
416 curOption[ key ] = value;
417 } else {
418 if ( arguments.length === 1 ) {
419 return this.options[ key ] === undefined ? null : this.options[ key ];
420 }
421 options[ key ] = value;
422 }
423 }
424  
425 this._setOptions( options );
426  
427 return this;
428 },
429  
430 _setOptions: function( options ) {
431 var key;
432  
433 for ( key in options ) {
434 this._setOption( key, options[ key ] );
435 }
436  
437 return this;
438 },
439  
440 _setOption: function( key, value ) {
441 if ( key === "classes" ) {
442 this._setOptionClasses( value );
443 }
444  
445 this.options[ key ] = value;
446  
447 if ( key === "disabled" ) {
448 this._setOptionDisabled( value );
449 }
450  
451 return this;
452 },
453  
454 _setOptionClasses: function( value ) {
455 var classKey, elements, currentElements;
456  
457 for ( classKey in value ) {
458 currentElements = this.classesElementLookup[ classKey ];
459 if ( value[ classKey ] === this.options.classes[ classKey ] ||
460 !currentElements ||
461 !currentElements.length ) {
462 continue;
463 }
464  
465 // We are doing this to create a new jQuery object because the _removeClass() call
466 // on the next line is going to destroy the reference to the current elements being
467 // tracked. We need to save a copy of this collection so that we can add the new classes
468 // below.
469 elements = $( currentElements.get() );
470 this._removeClass( currentElements, classKey );
471  
472 // We don't use _addClass() here, because that uses this.options.classes
473 // for generating the string of classes. We want to use the value passed in from
474 // _setOption(), this is the new value of the classes option which was passed to
475 // _setOption(). We pass this value directly to _classes().
476 elements.addClass( this._classes( {
477 element: elements,
478 keys: classKey,
479 classes: value,
480 add: true
481 } ) );
482 }
483 },
484  
485 _setOptionDisabled: function( value ) {
486 this._toggleClass( this.widget(), this.widgetFullName + "-disabled", null, !!value );
487  
488 // If the widget is becoming disabled, then nothing is interactive
489 if ( value ) {
490 this._removeClass( this.hoverable, null, "ui-state-hover" );
491 this._removeClass( this.focusable, null, "ui-state-focus" );
492 }
493 },
494  
495 enable: function() {
496 return this._setOptions( { disabled: false } );
497 },
498  
499 disable: function() {
500 return this._setOptions( { disabled: true } );
501 },
502  
503 _classes: function( options ) {
504 var full = [];
505 var that = this;
506  
507 options = $.extend( {
508 element: this.element,
509 classes: this.options.classes || {}
510 }, options );
511  
512 function processClassString( classes, checkOption ) {
513 var current, i;
514 for ( i = 0; i < classes.length; i++ ) {
515 current = that.classesElementLookup[ classes[ i ] ] || $();
516 if ( options.add ) {
517 current = $( $.unique( current.get().concat( options.element.get() ) ) );
518 } else {
519 current = $( current.not( options.element ).get() );
520 }
521 that.classesElementLookup[ classes[ i ] ] = current;
522 full.push( classes[ i ] );
523 if ( checkOption && options.classes[ classes[ i ] ] ) {
524 full.push( options.classes[ classes[ i ] ] );
525 }
526 }
527 }
528  
529 this._on( options.element, {
530 "remove": "_untrackClassesElement"
531 } );
532  
533 if ( options.keys ) {
534 processClassString( options.keys.match( /\S+/g ) || [], true );
535 }
536 if ( options.extra ) {
537 processClassString( options.extra.match( /\S+/g ) || [] );
538 }
539  
540 return full.join( " " );
541 },
542  
543 _untrackClassesElement: function( event ) {
544 var that = this;
545 $.each( that.classesElementLookup, function( key, value ) {
546 if ( $.inArray( event.target, value ) !== -1 ) {
547 that.classesElementLookup[ key ] = $( value.not( event.target ).get() );
548 }
549 } );
550 },
551  
552 _removeClass: function( element, keys, extra ) {
553 return this._toggleClass( element, keys, extra, false );
554 },
555  
556 _addClass: function( element, keys, extra ) {
557 return this._toggleClass( element, keys, extra, true );
558 },
559  
560 _toggleClass: function( element, keys, extra, add ) {
561 add = ( typeof add === "boolean" ) ? add : extra;
562 var shift = ( typeof element === "string" || element === null ),
563 options = {
564 extra: shift ? keys : extra,
565 keys: shift ? element : keys,
566 element: shift ? this.element : element,
567 add: add
568 };
569 options.element.toggleClass( this._classes( options ), add );
570 return this;
571 },
572  
573 _on: function( suppressDisabledCheck, element, handlers ) {
574 var delegateElement;
575 var instance = this;
576  
577 // No suppressDisabledCheck flag, shuffle arguments
578 if ( typeof suppressDisabledCheck !== "boolean" ) {
579 handlers = element;
580 element = suppressDisabledCheck;
581 suppressDisabledCheck = false;
582 }
583  
584 // No element argument, shuffle and use this.element
585 if ( !handlers ) {
586 handlers = element;
587 element = this.element;
588 delegateElement = this.widget();
589 } else {
590 element = delegateElement = $( element );
591 this.bindings = this.bindings.add( element );
592 }
593  
594 $.each( handlers, function( event, handler ) {
595 function handlerProxy() {
596  
597 // Allow widgets to customize the disabled handling
598 // - disabled as an array instead of boolean
599 // - disabled class as method for disabling individual parts
600 if ( !suppressDisabledCheck &&
601 ( instance.options.disabled === true ||
602 $( this ).hasClass( "ui-state-disabled" ) ) ) {
603 return;
604 }
605 return ( typeof handler === "string" ? instance[ handler ] : handler )
606 .apply( instance, arguments );
607 }
608  
609 // Copy the guid so direct unbinding works
610 if ( typeof handler !== "string" ) {
611 handlerProxy.guid = handler.guid =
612 handler.guid || handlerProxy.guid || $.guid++;
613 }
614  
615 var match = event.match( /^([\w:-]*)\s*(.*)$/ );
616 var eventName = match[ 1 ] + instance.eventNamespace;
617 var selector = match[ 2 ];
618  
619 if ( selector ) {
620 delegateElement.on( eventName, selector, handlerProxy );
621 } else {
622 element.on( eventName, handlerProxy );
623 }
624 } );
625 },
626  
627 _off: function( element, eventName ) {
628 eventName = ( eventName || "" ).split( " " ).join( this.eventNamespace + " " ) +
629 this.eventNamespace;
630 element.off( eventName ).off( eventName );
631  
632 // Clear the stack to avoid memory leaks (#10056)
633 this.bindings = $( this.bindings.not( element ).get() );
634 this.focusable = $( this.focusable.not( element ).get() );
635 this.hoverable = $( this.hoverable.not( element ).get() );
636 },
637  
638 _delay: function( handler, delay ) {
639 function handlerProxy() {
640 return ( typeof handler === "string" ? instance[ handler ] : handler )
641 .apply( instance, arguments );
642 }
643 var instance = this;
644 return setTimeout( handlerProxy, delay || 0 );
645 },
646  
647 _hoverable: function( element ) {
648 this.hoverable = this.hoverable.add( element );
649 this._on( element, {
650 mouseenter: function( event ) {
651 this._addClass( $( event.currentTarget ), null, "ui-state-hover" );
652 },
653 mouseleave: function( event ) {
654 this._removeClass( $( event.currentTarget ), null, "ui-state-hover" );
655 }
656 } );
657 },
658  
659 _focusable: function( element ) {
660 this.focusable = this.focusable.add( element );
661 this._on( element, {
662 focusin: function( event ) {
663 this._addClass( $( event.currentTarget ), null, "ui-state-focus" );
664 },
665 focusout: function( event ) {
666 this._removeClass( $( event.currentTarget ), null, "ui-state-focus" );
667 }
668 } );
669 },
670  
671 _trigger: function( type, event, data ) {
672 var prop, orig;
673 var callback = this.options[ type ];
674  
675 data = data || {};
676 event = $.Event( event );
677 event.type = ( type === this.widgetEventPrefix ?
678 type :
679 this.widgetEventPrefix + type ).toLowerCase();
680  
681 // The original event may come from any element
682 // so we need to reset the target on the new event
683 event.target = this.element[ 0 ];
684  
685 // Copy original event properties over to the new event
686 orig = event.originalEvent;
687 if ( orig ) {
688 for ( prop in orig ) {
689 if ( !( prop in event ) ) {
690 event[ prop ] = orig[ prop ];
691 }
692 }
693 }
694  
695 this.element.trigger( event, data );
696 return !( $.isFunction( callback ) &&
697 callback.apply( this.element[ 0 ], [ event ].concat( data ) ) === false ||
698 event.isDefaultPrevented() );
699 }
700 };
701  
702 $.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) {
703 $.Widget.prototype[ "_" + method ] = function( element, options, callback ) {
704 if ( typeof options === "string" ) {
705 options = { effect: options };
706 }
707  
708 var hasOptions;
709 var effectName = !options ?
710 method :
711 options === true || typeof options === "number" ?
712 defaultEffect :
713 options.effect || defaultEffect;
714  
715 options = options || {};
716 if ( typeof options === "number" ) {
717 options = { duration: options };
718 }
719  
720 hasOptions = !$.isEmptyObject( options );
721 options.complete = callback;
722  
723 if ( options.delay ) {
724 element.delay( options.delay );
725 }
726  
727 if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) {
728 element[ method ]( options );
729 } else if ( effectName !== method && element[ effectName ] ) {
730 element[ effectName ]( options.duration, options.easing, callback );
731 } else {
732 element.queue( function( next ) {
733 $( this )[ method ]();
734 if ( callback ) {
735 callback.call( element[ 0 ] );
736 }
737 next();
738 } );
739 }
740 };
741 } );
742  
743 var widget = $.widget;
744  
745  
746 /*!
747 * jQuery UI Position 1.12.1
748 * http://jqueryui.com
749 *
750 * Copyright jQuery Foundation and other contributors
751 * Released under the MIT license.
752 * http://jquery.org/license
753 *
754 * http://api.jqueryui.com/position/
755 */
756  
757 //>>label: Position
758 //>>group: Core
759 //>>description: Positions elements relative to other elements.
760 //>>docs: http://api.jqueryui.com/position/
761 //>>demos: http://jqueryui.com/position/
762  
763  
764 ( function() {
765 var cachedScrollbarWidth,
766 max = Math.max,
767 abs = Math.abs,
768 rhorizontal = /left|center|right/,
769 rvertical = /top|center|bottom/,
770 roffset = /[\+\-]\d+(\.[\d]+)?%?/,
771 rposition = /^\w+/,
772 rpercent = /%$/,
773 _position = $.fn.position;
774  
775 function getOffsets( offsets, width, height ) {
776 return [
777 parseFloat( offsets[ 0 ] ) * ( rpercent.test( offsets[ 0 ] ) ? width / 100 : 1 ),
778 parseFloat( offsets[ 1 ] ) * ( rpercent.test( offsets[ 1 ] ) ? height / 100 : 1 )
779 ];
780 }
781  
782 function parseCss( element, property ) {
783 return parseInt( $.css( element, property ), 10 ) || 0;
784 }
785  
786 function getDimensions( elem ) {
787 var raw = elem[ 0 ];
788 if ( raw.nodeType === 9 ) {
789 return {
790 width: elem.width(),
791 height: elem.height(),
792 offset: { top: 0, left: 0 }
793 };
794 }
795 if ( $.isWindow( raw ) ) {
796 return {
797 width: elem.width(),
798 height: elem.height(),
799 offset: { top: elem.scrollTop(), left: elem.scrollLeft() }
800 };
801 }
802 if ( raw.preventDefault ) {
803 return {
804 width: 0,
805 height: 0,
806 offset: { top: raw.pageY, left: raw.pageX }
807 };
808 }
809 return {
810 width: elem.outerWidth(),
811 height: elem.outerHeight(),
812 offset: elem.offset()
813 };
814 }
815  
816 $.position = {
817 scrollbarWidth: function() {
818 if ( cachedScrollbarWidth !== undefined ) {
819 return cachedScrollbarWidth;
820 }
821 var w1, w2,
822 div = $( "<div " +
823 "style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'>" +
824 "<div style='height:100px;width:auto;'></div></div>" ),
825 innerDiv = div.children()[ 0 ];
826  
827 $( "body" ).append( div );
828 w1 = innerDiv.offsetWidth;
829 div.css( "overflow", "scroll" );
830  
831 w2 = innerDiv.offsetWidth;
832  
833 if ( w1 === w2 ) {
834 w2 = div[ 0 ].clientWidth;
835 }
836  
837 div.remove();
838  
839 return ( cachedScrollbarWidth = w1 - w2 );
840 },
841 getScrollInfo: function( within ) {
842 var overflowX = within.isWindow || within.isDocument ? "" :
843 within.element.css( "overflow-x" ),
844 overflowY = within.isWindow || within.isDocument ? "" :
845 within.element.css( "overflow-y" ),
846 hasOverflowX = overflowX === "scroll" ||
847 ( overflowX === "auto" && within.width < within.element[ 0 ].scrollWidth ),
848 hasOverflowY = overflowY === "scroll" ||
849 ( overflowY === "auto" && within.height < within.element[ 0 ].scrollHeight );
850 return {
851 width: hasOverflowY ? $.position.scrollbarWidth() : 0,
852 height: hasOverflowX ? $.position.scrollbarWidth() : 0
853 };
854 },
855 getWithinInfo: function( element ) {
856 var withinElement = $( element || window ),
857 isWindow = $.isWindow( withinElement[ 0 ] ),
858 isDocument = !!withinElement[ 0 ] && withinElement[ 0 ].nodeType === 9,
859 hasOffset = !isWindow && !isDocument;
860 return {
861 element: withinElement,
862 isWindow: isWindow,
863 isDocument: isDocument,
864 offset: hasOffset ? $( element ).offset() : { left: 0, top: 0 },
865 scrollLeft: withinElement.scrollLeft(),
866 scrollTop: withinElement.scrollTop(),
867 width: withinElement.outerWidth(),
868 height: withinElement.outerHeight()
869 };
870 }
871 };
872  
873 $.fn.position = function( options ) {
874 if ( !options || !options.of ) {
875 return _position.apply( this, arguments );
876 }
877  
878 // Make a copy, we don't want to modify arguments
879 options = $.extend( {}, options );
880  
881 var atOffset, targetWidth, targetHeight, targetOffset, basePosition, dimensions,
882 target = $( options.of ),
883 within = $.position.getWithinInfo( options.within ),
884 scrollInfo = $.position.getScrollInfo( within ),
885 collision = ( options.collision || "flip" ).split( " " ),
886 offsets = {};
887  
888 dimensions = getDimensions( target );
889 if ( target[ 0 ].preventDefault ) {
890  
891 // Force left top to allow flipping
892 options.at = "left top";
893 }
894 targetWidth = dimensions.width;
895 targetHeight = dimensions.height;
896 targetOffset = dimensions.offset;
897  
898 // Clone to reuse original targetOffset later
899 basePosition = $.extend( {}, targetOffset );
900  
901 // Force my and at to have valid horizontal and vertical positions
902 // if a value is missing or invalid, it will be converted to center
903 $.each( [ "my", "at" ], function() {
904 var pos = ( options[ this ] || "" ).split( " " ),
905 horizontalOffset,
906 verticalOffset;
907  
908 if ( pos.length === 1 ) {
909 pos = rhorizontal.test( pos[ 0 ] ) ?
910 pos.concat( [ "center" ] ) :
911 rvertical.test( pos[ 0 ] ) ?
912 [ "center" ].concat( pos ) :
913 [ "center", "center" ];
914 }
915 pos[ 0 ] = rhorizontal.test( pos[ 0 ] ) ? pos[ 0 ] : "center";
916 pos[ 1 ] = rvertical.test( pos[ 1 ] ) ? pos[ 1 ] : "center";
917  
918 // Calculate offsets
919 horizontalOffset = roffset.exec( pos[ 0 ] );
920 verticalOffset = roffset.exec( pos[ 1 ] );
921 offsets[ this ] = [
922 horizontalOffset ? horizontalOffset[ 0 ] : 0,
923 verticalOffset ? verticalOffset[ 0 ] : 0
924 ];
925  
926 // Reduce to just the positions without the offsets
927 options[ this ] = [
928 rposition.exec( pos[ 0 ] )[ 0 ],
929 rposition.exec( pos[ 1 ] )[ 0 ]
930 ];
931 } );
932  
933 // Normalize collision option
934 if ( collision.length === 1 ) {
935 collision[ 1 ] = collision[ 0 ];
936 }
937  
938 if ( options.at[ 0 ] === "right" ) {
939 basePosition.left += targetWidth;
940 } else if ( options.at[ 0 ] === "center" ) {
941 basePosition.left += targetWidth / 2;
942 }
943  
944 if ( options.at[ 1 ] === "bottom" ) {
945 basePosition.top += targetHeight;
946 } else if ( options.at[ 1 ] === "center" ) {
947 basePosition.top += targetHeight / 2;
948 }
949  
950 atOffset = getOffsets( offsets.at, targetWidth, targetHeight );
951 basePosition.left += atOffset[ 0 ];
952 basePosition.top += atOffset[ 1 ];
953  
954 return this.each( function() {
955 var collisionPosition, using,
956 elem = $( this ),
957 elemWidth = elem.outerWidth(),
958 elemHeight = elem.outerHeight(),
959 marginLeft = parseCss( this, "marginLeft" ),
960 marginTop = parseCss( this, "marginTop" ),
961 collisionWidth = elemWidth + marginLeft + parseCss( this, "marginRight" ) +
962 scrollInfo.width,
963 collisionHeight = elemHeight + marginTop + parseCss( this, "marginBottom" ) +
964 scrollInfo.height,
965 position = $.extend( {}, basePosition ),
966 myOffset = getOffsets( offsets.my, elem.outerWidth(), elem.outerHeight() );
967  
968 if ( options.my[ 0 ] === "right" ) {
969 position.left -= elemWidth;
970 } else if ( options.my[ 0 ] === "center" ) {
971 position.left -= elemWidth / 2;
972 }
973  
974 if ( options.my[ 1 ] === "bottom" ) {
975 position.top -= elemHeight;
976 } else if ( options.my[ 1 ] === "center" ) {
977 position.top -= elemHeight / 2;
978 }
979  
980 position.left += myOffset[ 0 ];
981 position.top += myOffset[ 1 ];
982  
983 collisionPosition = {
984 marginLeft: marginLeft,
985 marginTop: marginTop
986 };
987  
988 $.each( [ "left", "top" ], function( i, dir ) {
989 if ( $.ui.position[ collision[ i ] ] ) {
990 $.ui.position[ collision[ i ] ][ dir ]( position, {
991 targetWidth: targetWidth,
992 targetHeight: targetHeight,
993 elemWidth: elemWidth,
994 elemHeight: elemHeight,
995 collisionPosition: collisionPosition,
996 collisionWidth: collisionWidth,
997 collisionHeight: collisionHeight,
998 offset: [ atOffset[ 0 ] + myOffset[ 0 ], atOffset [ 1 ] + myOffset[ 1 ] ],
999 my: options.my,
1000 at: options.at,
1001 within: within,
1002 elem: elem
1003 } );
1004 }
1005 } );
1006  
1007 if ( options.using ) {
1008  
1009 // Adds feedback as second argument to using callback, if present
1010 using = function( props ) {
1011 var left = targetOffset.left - position.left,
1012 right = left + targetWidth - elemWidth,
1013 top = targetOffset.top - position.top,
1014 bottom = top + targetHeight - elemHeight,
1015 feedback = {
1016 target: {
1017 element: target,
1018 left: targetOffset.left,
1019 top: targetOffset.top,
1020 width: targetWidth,
1021 height: targetHeight
1022 },
1023 element: {
1024 element: elem,
1025 left: position.left,
1026 top: position.top,
1027 width: elemWidth,
1028 height: elemHeight
1029 },
1030 horizontal: right < 0 ? "left" : left > 0 ? "right" : "center",
1031 vertical: bottom < 0 ? "top" : top > 0 ? "bottom" : "middle"
1032 };
1033 if ( targetWidth < elemWidth && abs( left + right ) < targetWidth ) {
1034 feedback.horizontal = "center";
1035 }
1036 if ( targetHeight < elemHeight && abs( top + bottom ) < targetHeight ) {
1037 feedback.vertical = "middle";
1038 }
1039 if ( max( abs( left ), abs( right ) ) > max( abs( top ), abs( bottom ) ) ) {
1040 feedback.important = "horizontal";
1041 } else {
1042 feedback.important = "vertical";
1043 }
1044 options.using.call( this, props, feedback );
1045 };
1046 }
1047  
1048 elem.offset( $.extend( position, { using: using } ) );
1049 } );
1050 };
1051  
1052 $.ui.position = {
1053 fit: {
1054 left: function( position, data ) {
1055 var within = data.within,
1056 withinOffset = within.isWindow ? within.scrollLeft : within.offset.left,
1057 outerWidth = within.width,
1058 collisionPosLeft = position.left - data.collisionPosition.marginLeft,
1059 overLeft = withinOffset - collisionPosLeft,
1060 overRight = collisionPosLeft + data.collisionWidth - outerWidth - withinOffset,
1061 newOverRight;
1062  
1063 // Element is wider than within
1064 if ( data.collisionWidth > outerWidth ) {
1065  
1066 // Element is initially over the left side of within
1067 if ( overLeft > 0 && overRight <= 0 ) {
1068 newOverRight = position.left + overLeft + data.collisionWidth - outerWidth -
1069 withinOffset;
1070 position.left += overLeft - newOverRight;
1071  
1072 // Element is initially over right side of within
1073 } else if ( overRight > 0 && overLeft <= 0 ) {
1074 position.left = withinOffset;
1075  
1076 // Element is initially over both left and right sides of within
1077 } else {
1078 if ( overLeft > overRight ) {
1079 position.left = withinOffset + outerWidth - data.collisionWidth;
1080 } else {
1081 position.left = withinOffset;
1082 }
1083 }
1084  
1085 // Too far left -> align with left edge
1086 } else if ( overLeft > 0 ) {
1087 position.left += overLeft;
1088  
1089 // Too far right -> align with right edge
1090 } else if ( overRight > 0 ) {
1091 position.left -= overRight;
1092  
1093 // Adjust based on position and margin
1094 } else {
1095 position.left = max( position.left - collisionPosLeft, position.left );
1096 }
1097 },
1098 top: function( position, data ) {
1099 var within = data.within,
1100 withinOffset = within.isWindow ? within.scrollTop : within.offset.top,
1101 outerHeight = data.within.height,
1102 collisionPosTop = position.top - data.collisionPosition.marginTop,
1103 overTop = withinOffset - collisionPosTop,
1104 overBottom = collisionPosTop + data.collisionHeight - outerHeight - withinOffset,
1105 newOverBottom;
1106  
1107 // Element is taller than within
1108 if ( data.collisionHeight > outerHeight ) {
1109  
1110 // Element is initially over the top of within
1111 if ( overTop > 0 && overBottom <= 0 ) {
1112 newOverBottom = position.top + overTop + data.collisionHeight - outerHeight -
1113 withinOffset;
1114 position.top += overTop - newOverBottom;
1115  
1116 // Element is initially over bottom of within
1117 } else if ( overBottom > 0 && overTop <= 0 ) {
1118 position.top = withinOffset;
1119  
1120 // Element is initially over both top and bottom of within
1121 } else {
1122 if ( overTop > overBottom ) {
1123 position.top = withinOffset + outerHeight - data.collisionHeight;
1124 } else {
1125 position.top = withinOffset;
1126 }
1127 }
1128  
1129 // Too far up -> align with top
1130 } else if ( overTop > 0 ) {
1131 position.top += overTop;
1132  
1133 // Too far down -> align with bottom edge
1134 } else if ( overBottom > 0 ) {
1135 position.top -= overBottom;
1136  
1137 // Adjust based on position and margin
1138 } else {
1139 position.top = max( position.top - collisionPosTop, position.top );
1140 }
1141 }
1142 },
1143 flip: {
1144 left: function( position, data ) {
1145 var within = data.within,
1146 withinOffset = within.offset.left + within.scrollLeft,
1147 outerWidth = within.width,
1148 offsetLeft = within.isWindow ? within.scrollLeft : within.offset.left,
1149 collisionPosLeft = position.left - data.collisionPosition.marginLeft,
1150 overLeft = collisionPosLeft - offsetLeft,
1151 overRight = collisionPosLeft + data.collisionWidth - outerWidth - offsetLeft,
1152 myOffset = data.my[ 0 ] === "left" ?
1153 -data.elemWidth :
1154 data.my[ 0 ] === "right" ?
1155 data.elemWidth :
1156 0,
1157 atOffset = data.at[ 0 ] === "left" ?
1158 data.targetWidth :
1159 data.at[ 0 ] === "right" ?
1160 -data.targetWidth :
1161 0,
1162 offset = -2 * data.offset[ 0 ],
1163 newOverRight,
1164 newOverLeft;
1165  
1166 if ( overLeft < 0 ) {
1167 newOverRight = position.left + myOffset + atOffset + offset + data.collisionWidth -
1168 outerWidth - withinOffset;
1169 if ( newOverRight < 0 || newOverRight < abs( overLeft ) ) {
1170 position.left += myOffset + atOffset + offset;
1171 }
1172 } else if ( overRight > 0 ) {
1173 newOverLeft = position.left - data.collisionPosition.marginLeft + myOffset +
1174 atOffset + offset - offsetLeft;
1175 if ( newOverLeft > 0 || abs( newOverLeft ) < overRight ) {
1176 position.left += myOffset + atOffset + offset;
1177 }
1178 }
1179 },
1180 top: function( position, data ) {
1181 var within = data.within,
1182 withinOffset = within.offset.top + within.scrollTop,
1183 outerHeight = within.height,
1184 offsetTop = within.isWindow ? within.scrollTop : within.offset.top,
1185 collisionPosTop = position.top - data.collisionPosition.marginTop,
1186 overTop = collisionPosTop - offsetTop,
1187 overBottom = collisionPosTop + data.collisionHeight - outerHeight - offsetTop,
1188 top = data.my[ 1 ] === "top",
1189 myOffset = top ?
1190 -data.elemHeight :
1191 data.my[ 1 ] === "bottom" ?
1192 data.elemHeight :
1193 0,
1194 atOffset = data.at[ 1 ] === "top" ?
1195 data.targetHeight :
1196 data.at[ 1 ] === "bottom" ?
1197 -data.targetHeight :
1198 0,
1199 offset = -2 * data.offset[ 1 ],
1200 newOverTop,
1201 newOverBottom;
1202 if ( overTop < 0 ) {
1203 newOverBottom = position.top + myOffset + atOffset + offset + data.collisionHeight -
1204 outerHeight - withinOffset;
1205 if ( newOverBottom < 0 || newOverBottom < abs( overTop ) ) {
1206 position.top += myOffset + atOffset + offset;
1207 }
1208 } else if ( overBottom > 0 ) {
1209 newOverTop = position.top - data.collisionPosition.marginTop + myOffset + atOffset +
1210 offset - offsetTop;
1211 if ( newOverTop > 0 || abs( newOverTop ) < overBottom ) {
1212 position.top += myOffset + atOffset + offset;
1213 }
1214 }
1215 }
1216 },
1217 flipfit: {
1218 left: function() {
1219 $.ui.position.flip.left.apply( this, arguments );
1220 $.ui.position.fit.left.apply( this, arguments );
1221 },
1222 top: function() {
1223 $.ui.position.flip.top.apply( this, arguments );
1224 $.ui.position.fit.top.apply( this, arguments );
1225 }
1226 }
1227 };
1228  
1229 } )();
1230  
1231 var position = $.ui.position;
1232  
1233  
1234 /*!
1235 * jQuery UI :data 1.12.1
1236 * http://jqueryui.com
1237 *
1238 * Copyright jQuery Foundation and other contributors
1239 * Released under the MIT license.
1240 * http://jquery.org/license
1241 */
1242  
1243 //>>label: :data Selector
1244 //>>group: Core
1245 //>>description: Selects elements which have data stored under the specified key.
1246 //>>docs: http://api.jqueryui.com/data-selector/
1247  
1248  
1249 var data = $.extend( $.expr[ ":" ], {
1250 data: $.expr.createPseudo ?
1251 $.expr.createPseudo( function( dataName ) {
1252 return function( elem ) {
1253 return !!$.data( elem, dataName );
1254 };
1255 } ) :
1256  
1257 // Support: jQuery <1.8
1258 function( elem, i, match ) {
1259 return !!$.data( elem, match[ 3 ] );
1260 }
1261 } );
1262  
1263 /*!
1264 * jQuery UI Disable Selection 1.12.1
1265 * http://jqueryui.com
1266 *
1267 * Copyright jQuery Foundation and other contributors
1268 * Released under the MIT license.
1269 * http://jquery.org/license
1270 */
1271  
1272 //>>label: disableSelection
1273 //>>group: Core
1274 //>>description: Disable selection of text content within the set of matched elements.
1275 //>>docs: http://api.jqueryui.com/disableSelection/
1276  
1277 // This file is deprecated
1278  
1279  
1280 var disableSelection = $.fn.extend( {
1281 disableSelection: ( function() {
1282 var eventType = "onselectstart" in document.createElement( "div" ) ?
1283 "selectstart" :
1284 "mousedown";
1285  
1286 return function() {
1287 return this.on( eventType + ".ui-disableSelection", function( event ) {
1288 event.preventDefault();
1289 } );
1290 };
1291 } )(),
1292  
1293 enableSelection: function() {
1294 return this.off( ".ui-disableSelection" );
1295 }
1296 } );
1297  
1298  
1299 /*!
1300 * jQuery UI Effects 1.12.1
1301 * http://jqueryui.com
1302 *
1303 * Copyright jQuery Foundation and other contributors
1304 * Released under the MIT license.
1305 * http://jquery.org/license
1306 */
1307  
1308 //>>label: Effects Core
1309 //>>group: Effects
1310 // jscs:disable maximumLineLength
1311 //>>description: Extends the internal jQuery effects. Includes morphing and easing. Required by all other effects.
1312 // jscs:enable maximumLineLength
1313 //>>docs: http://api.jqueryui.com/category/effects-core/
1314 //>>demos: http://jqueryui.com/effect/
1315  
1316  
1317  
1318 var dataSpace = "ui-effects-",
1319 dataSpaceStyle = "ui-effects-style",
1320 dataSpaceAnimated = "ui-effects-animated",
1321  
1322 // Create a local jQuery because jQuery Color relies on it and the
1323 // global may not exist with AMD and a custom build (#10199)
1324 jQuery = $;
1325  
1326 $.effects = {
1327 effect: {}
1328 };
1329  
1330 /*!
1331 * jQuery Color Animations v2.1.2
1332 * https://github.com/jquery/jquery-color
1333 *
1334 * Copyright 2014 jQuery Foundation and other contributors
1335 * Released under the MIT license.
1336 * http://jquery.org/license
1337 *
1338 * Date: Wed Jan 16 08:47:09 2013 -0600
1339 */
1340 ( function( jQuery, undefined ) {
1341  
1342 var stepHooks = "backgroundColor borderBottomColor borderLeftColor borderRightColor " +
1343 "borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor",
1344  
1345 // Plusequals test for += 100 -= 100
1346 rplusequals = /^([\-+])=\s*(\d+\.?\d*)/,
1347  
1348 // A set of RE's that can match strings and generate color tuples.
1349 stringParsers = [ {
1350 re: /rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,
1351 parse: function( execResult ) {
1352 return [
1353 execResult[ 1 ],
1354 execResult[ 2 ],
1355 execResult[ 3 ],
1356 execResult[ 4 ]
1357 ];
1358 }
1359 }, {
1360 re: /rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,
1361 parse: function( execResult ) {
1362 return [
1363 execResult[ 1 ] * 2.55,
1364 execResult[ 2 ] * 2.55,
1365 execResult[ 3 ] * 2.55,
1366 execResult[ 4 ]
1367 ];
1368 }
1369 }, {
1370  
1371 // This regex ignores A-F because it's compared against an already lowercased string
1372 re: /#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/,
1373 parse: function( execResult ) {
1374 return [
1375 parseInt( execResult[ 1 ], 16 ),
1376 parseInt( execResult[ 2 ], 16 ),
1377 parseInt( execResult[ 3 ], 16 )
1378 ];
1379 }
1380 }, {
1381  
1382 // This regex ignores A-F because it's compared against an already lowercased string
1383 re: /#([a-f0-9])([a-f0-9])([a-f0-9])/,
1384 parse: function( execResult ) {
1385 return [
1386 parseInt( execResult[ 1 ] + execResult[ 1 ], 16 ),
1387 parseInt( execResult[ 2 ] + execResult[ 2 ], 16 ),
1388 parseInt( execResult[ 3 ] + execResult[ 3 ], 16 )
1389 ];
1390 }
1391 }, {
1392 re: /hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,
1393 space: "hsla",
1394 parse: function( execResult ) {
1395 return [
1396 execResult[ 1 ],
1397 execResult[ 2 ] / 100,
1398 execResult[ 3 ] / 100,
1399 execResult[ 4 ]
1400 ];
1401 }
1402 } ],
1403  
1404 // JQuery.Color( )
1405 color = jQuery.Color = function( color, green, blue, alpha ) {
1406 return new jQuery.Color.fn.parse( color, green, blue, alpha );
1407 },
1408 spaces = {
1409 rgba: {
1410 props: {
1411 red: {
1412 idx: 0,
1413 type: "byte"
1414 },
1415 green: {
1416 idx: 1,
1417 type: "byte"
1418 },
1419 blue: {
1420 idx: 2,
1421 type: "byte"
1422 }
1423 }
1424 },
1425  
1426 hsla: {
1427 props: {
1428 hue: {
1429 idx: 0,
1430 type: "degrees"
1431 },
1432 saturation: {
1433 idx: 1,
1434 type: "percent"
1435 },
1436 lightness: {
1437 idx: 2,
1438 type: "percent"
1439 }
1440 }
1441 }
1442 },
1443 propTypes = {
1444 "byte": {
1445 floor: true,
1446 max: 255
1447 },
1448 "percent": {
1449 max: 1
1450 },
1451 "degrees": {
1452 mod: 360,
1453 floor: true
1454 }
1455 },
1456 support = color.support = {},
1457  
1458 // Element for support tests
1459 supportElem = jQuery( "<p>" )[ 0 ],
1460  
1461 // Colors = jQuery.Color.names
1462 colors,
1463  
1464 // Local aliases of functions called often
1465 each = jQuery.each;
1466  
1467 // Determine rgba support immediately
1468 supportElem.style.cssText = "background-color:rgba(1,1,1,.5)";
1469 support.rgba = supportElem.style.backgroundColor.indexOf( "rgba" ) > -1;
1470  
1471 // Define cache name and alpha properties
1472 // for rgba and hsla spaces
1473 each( spaces, function( spaceName, space ) {
1474 space.cache = "_" + spaceName;
1475 space.props.alpha = {
1476 idx: 3,
1477 type: "percent",
1478 def: 1
1479 };
1480 } );
1481  
1482 function clamp( value, prop, allowEmpty ) {
1483 var type = propTypes[ prop.type ] || {};
1484  
1485 if ( value == null ) {
1486 return ( allowEmpty || !prop.def ) ? null : prop.def;
1487 }
1488  
1489 // ~~ is an short way of doing floor for positive numbers
1490 value = type.floor ? ~~value : parseFloat( value );
1491  
1492 // IE will pass in empty strings as value for alpha,
1493 // which will hit this case
1494 if ( isNaN( value ) ) {
1495 return prop.def;
1496 }
1497  
1498 if ( type.mod ) {
1499  
1500 // We add mod before modding to make sure that negatives values
1501 // get converted properly: -10 -> 350
1502 return ( value + type.mod ) % type.mod;
1503 }
1504  
1505 // For now all property types without mod have min and max
1506 return 0 > value ? 0 : type.max < value ? type.max : value;
1507 }
1508  
1509 function stringParse( string ) {
1510 var inst = color(),
1511 rgba = inst._rgba = [];
1512  
1513 string = string.toLowerCase();
1514  
1515 each( stringParsers, function( i, parser ) {
1516 var parsed,
1517 match = parser.re.exec( string ),
1518 values = match && parser.parse( match ),
1519 spaceName = parser.space || "rgba";
1520  
1521 if ( values ) {
1522 parsed = inst[ spaceName ]( values );
1523  
1524 // If this was an rgba parse the assignment might happen twice
1525 // oh well....
1526 inst[ spaces[ spaceName ].cache ] = parsed[ spaces[ spaceName ].cache ];
1527 rgba = inst._rgba = parsed._rgba;
1528  
1529 // Exit each( stringParsers ) here because we matched
1530 return false;
1531 }
1532 } );
1533  
1534 // Found a stringParser that handled it
1535 if ( rgba.length ) {
1536  
1537 // If this came from a parsed string, force "transparent" when alpha is 0
1538 // chrome, (and maybe others) return "transparent" as rgba(0,0,0,0)
1539 if ( rgba.join() === "0,0,0,0" ) {
1540 jQuery.extend( rgba, colors.transparent );
1541 }
1542 return inst;
1543 }
1544  
1545 // Named colors
1546 return colors[ string ];
1547 }
1548  
1549 color.fn = jQuery.extend( color.prototype, {
1550 parse: function( red, green, blue, alpha ) {
1551 if ( red === undefined ) {
1552 this._rgba = [ null, null, null, null ];
1553 return this;
1554 }
1555 if ( red.jquery || red.nodeType ) {
1556 red = jQuery( red ).css( green );
1557 green = undefined;
1558 }
1559  
1560 var inst = this,
1561 type = jQuery.type( red ),
1562 rgba = this._rgba = [];
1563  
1564 // More than 1 argument specified - assume ( red, green, blue, alpha )
1565 if ( green !== undefined ) {
1566 red = [ red, green, blue, alpha ];
1567 type = "array";
1568 }
1569  
1570 if ( type === "string" ) {
1571 return this.parse( stringParse( red ) || colors._default );
1572 }
1573  
1574 if ( type === "array" ) {
1575 each( spaces.rgba.props, function( key, prop ) {
1576 rgba[ prop.idx ] = clamp( red[ prop.idx ], prop );
1577 } );
1578 return this;
1579 }
1580  
1581 if ( type === "object" ) {
1582 if ( red instanceof color ) {
1583 each( spaces, function( spaceName, space ) {
1584 if ( red[ space.cache ] ) {
1585 inst[ space.cache ] = red[ space.cache ].slice();
1586 }
1587 } );
1588 } else {
1589 each( spaces, function( spaceName, space ) {
1590 var cache = space.cache;
1591 each( space.props, function( key, prop ) {
1592  
1593 // If the cache doesn't exist, and we know how to convert
1594 if ( !inst[ cache ] && space.to ) {
1595  
1596 // If the value was null, we don't need to copy it
1597 // if the key was alpha, we don't need to copy it either
1598 if ( key === "alpha" || red[ key ] == null ) {
1599 return;
1600 }
1601 inst[ cache ] = space.to( inst._rgba );
1602 }
1603  
1604 // This is the only case where we allow nulls for ALL properties.
1605 // call clamp with alwaysAllowEmpty
1606 inst[ cache ][ prop.idx ] = clamp( red[ key ], prop, true );
1607 } );
1608  
1609 // Everything defined but alpha?
1610 if ( inst[ cache ] &&
1611 jQuery.inArray( null, inst[ cache ].slice( 0, 3 ) ) < 0 ) {
1612  
1613 // Use the default of 1
1614 inst[ cache ][ 3 ] = 1;
1615 if ( space.from ) {
1616 inst._rgba = space.from( inst[ cache ] );
1617 }
1618 }
1619 } );
1620 }
1621 return this;
1622 }
1623 },
1624 is: function( compare ) {
1625 var is = color( compare ),
1626 same = true,
1627 inst = this;
1628  
1629 each( spaces, function( _, space ) {
1630 var localCache,
1631 isCache = is[ space.cache ];
1632 if ( isCache ) {
1633 localCache = inst[ space.cache ] || space.to && space.to( inst._rgba ) || [];
1634 each( space.props, function( _, prop ) {
1635 if ( isCache[ prop.idx ] != null ) {
1636 same = ( isCache[ prop.idx ] === localCache[ prop.idx ] );
1637 return same;
1638 }
1639 } );
1640 }
1641 return same;
1642 } );
1643 return same;
1644 },
1645 _space: function() {
1646 var used = [],
1647 inst = this;
1648 each( spaces, function( spaceName, space ) {
1649 if ( inst[ space.cache ] ) {
1650 used.push( spaceName );
1651 }
1652 } );
1653 return used.pop();
1654 },
1655 transition: function( other, distance ) {
1656 var end = color( other ),
1657 spaceName = end._space(),
1658 space = spaces[ spaceName ],
1659 startColor = this.alpha() === 0 ? color( "transparent" ) : this,
1660 start = startColor[ space.cache ] || space.to( startColor._rgba ),
1661 result = start.slice();
1662  
1663 end = end[ space.cache ];
1664 each( space.props, function( key, prop ) {
1665 var index = prop.idx,
1666 startValue = start[ index ],
1667 endValue = end[ index ],
1668 type = propTypes[ prop.type ] || {};
1669  
1670 // If null, don't override start value
1671 if ( endValue === null ) {
1672 return;
1673 }
1674  
1675 // If null - use end
1676 if ( startValue === null ) {
1677 result[ index ] = endValue;
1678 } else {
1679 if ( type.mod ) {
1680 if ( endValue - startValue > type.mod / 2 ) {
1681 startValue += type.mod;
1682 } else if ( startValue - endValue > type.mod / 2 ) {
1683 startValue -= type.mod;
1684 }
1685 }
1686 result[ index ] = clamp( ( endValue - startValue ) * distance + startValue, prop );
1687 }
1688 } );
1689 return this[ spaceName ]( result );
1690 },
1691 blend: function( opaque ) {
1692  
1693 // If we are already opaque - return ourself
1694 if ( this._rgba[ 3 ] === 1 ) {
1695 return this;
1696 }
1697  
1698 var rgb = this._rgba.slice(),
1699 a = rgb.pop(),
1700 blend = color( opaque )._rgba;
1701  
1702 return color( jQuery.map( rgb, function( v, i ) {
1703 return ( 1 - a ) * blend[ i ] + a * v;
1704 } ) );
1705 },
1706 toRgbaString: function() {
1707 var prefix = "rgba(",
1708 rgba = jQuery.map( this._rgba, function( v, i ) {
1709 return v == null ? ( i > 2 ? 1 : 0 ) : v;
1710 } );
1711  
1712 if ( rgba[ 3 ] === 1 ) {
1713 rgba.pop();
1714 prefix = "rgb(";
1715 }
1716  
1717 return prefix + rgba.join() + ")";
1718 },
1719 toHslaString: function() {
1720 var prefix = "hsla(",
1721 hsla = jQuery.map( this.hsla(), function( v, i ) {
1722 if ( v == null ) {
1723 v = i > 2 ? 1 : 0;
1724 }
1725  
1726 // Catch 1 and 2
1727 if ( i && i < 3 ) {
1728 v = Math.round( v * 100 ) + "%";
1729 }
1730 return v;
1731 } );
1732  
1733 if ( hsla[ 3 ] === 1 ) {
1734 hsla.pop();
1735 prefix = "hsl(";
1736 }
1737 return prefix + hsla.join() + ")";
1738 },
1739 toHexString: function( includeAlpha ) {
1740 var rgba = this._rgba.slice(),
1741 alpha = rgba.pop();
1742  
1743 if ( includeAlpha ) {
1744 rgba.push( ~~( alpha * 255 ) );
1745 }
1746  
1747 return "#" + jQuery.map( rgba, function( v ) {
1748  
1749 // Default to 0 when nulls exist
1750 v = ( v || 0 ).toString( 16 );
1751 return v.length === 1 ? "0" + v : v;
1752 } ).join( "" );
1753 },
1754 toString: function() {
1755 return this._rgba[ 3 ] === 0 ? "transparent" : this.toRgbaString();
1756 }
1757 } );
1758 color.fn.parse.prototype = color.fn;
1759  
1760 // Hsla conversions adapted from:
1761 // https://code.google.com/p/maashaack/source/browse/packages/graphics/trunk/src/graphics/colors/HUE2RGB.as?r=5021
1762  
1763 function hue2rgb( p, q, h ) {
1764 h = ( h + 1 ) % 1;
1765 if ( h * 6 < 1 ) {
1766 return p + ( q - p ) * h * 6;
1767 }
1768 if ( h * 2 < 1 ) {
1769 return q;
1770 }
1771 if ( h * 3 < 2 ) {
1772 return p + ( q - p ) * ( ( 2 / 3 ) - h ) * 6;
1773 }
1774 return p;
1775 }
1776  
1777 spaces.hsla.to = function( rgba ) {
1778 if ( rgba[ 0 ] == null || rgba[ 1 ] == null || rgba[ 2 ] == null ) {
1779 return [ null, null, null, rgba[ 3 ] ];
1780 }
1781 var r = rgba[ 0 ] / 255,
1782 g = rgba[ 1 ] / 255,
1783 b = rgba[ 2 ] / 255,
1784 a = rgba[ 3 ],
1785 max = Math.max( r, g, b ),
1786 min = Math.min( r, g, b ),
1787 diff = max - min,
1788 add = max + min,
1789 l = add * 0.5,
1790 h, s;
1791  
1792 if ( min === max ) {
1793 h = 0;
1794 } else if ( r === max ) {
1795 h = ( 60 * ( g - b ) / diff ) + 360;
1796 } else if ( g === max ) {
1797 h = ( 60 * ( b - r ) / diff ) + 120;
1798 } else {
1799 h = ( 60 * ( r - g ) / diff ) + 240;
1800 }
1801  
1802 // Chroma (diff) == 0 means greyscale which, by definition, saturation = 0%
1803 // otherwise, saturation is based on the ratio of chroma (diff) to lightness (add)
1804 if ( diff === 0 ) {
1805 s = 0;
1806 } else if ( l <= 0.5 ) {
1807 <= 0.5 ) { s = diff / add;
1808 <= 0.5 ) { } else {
1809 <= 0.5 ) { s = diff / ( 2 - add );
1810 <= 0.5 ) { }
1811 <= 0.5 ) { return [ Math.round( h ) % 360, s, l, a == null ? 1 : a ];
1812 <= 0.5 ) {};
1813  
1814 <= 0.5 ) {spaces.hsla.from = function( hsla ) {
1815 <= 0.5 ) { if ( hsla[ 0 ] == null || hsla[ 1 ] == null || hsla[ 2 ] == null ) {
1816 <= 0.5 ) { return [ null, null, null, hsla[ 3 ] ];
1817 <= 0.5 ) { }
1818 <= 0.5 ) { var h = hsla[ 0 ] / 360,
1819 <= 0.5 ) { s = hsla[ 1 ],
1820 <= 0.5 ) { l = hsla[ 2 ],
1821 <= 0.5 ) { a = hsla[ 3 ],
1822 <= 0.5 ) { q = l <= 0.5 ? l * ( 1 + s ) : l + s - l * s,
1823 <= 0.5 ) { p = 2 * l - q;
1824  
1825 <= 0.5 ) { return [
1826 <= 0.5 ) { Math.round( hue2rgb( p, q, h + ( 1 / 3 ) ) * 255 ),
1827 <= 0.5 ) { Math.round( hue2rgb( p, q, h ) * 255 ),
1828 <= 0.5 ) { Math.round( hue2rgb( p, q, h - ( 1 / 3 ) ) * 255 ),
1829 <= 0.5 ) { a
1830 <= 0.5 ) { ];
1831 <= 0.5 ) {};
1832  
1833 <= 0.5 ) {each( spaces, function( spaceName, space ) {
1834 <= 0.5 ) { var props = space.props,
1835 <= 0.5 ) { cache = space.cache,
1836 <= 0.5 ) { to = space.to,
1837 <= 0.5 ) { from = space.from;
1838  
1839 <= 0.5 ) { // Makes rgba() and hsla()
1840 <= 0.5 ) { color.fn[ spaceName ] = function( value ) {
1841  
1842 <= 0.5 ) { // Generate a cache for this space if it doesn't exist
1843 <= 0.5 ) { if ( to && !this[ cache ] ) {
1844 <= 0.5 ) { this[ cache ] = to( this._rgba );
1845 <= 0.5 ) { }
1846 <= 0.5 ) { if ( value === undefined ) {
1847 <= 0.5 ) { return this[ cache ].slice();
1848 <= 0.5 ) { }
1849  
1850 <= 0.5 ) { var ret,
1851 <= 0.5 ) { type = jQuery.type( value ),
1852 <= 0.5 ) { arr = ( type === "array" || type === "object" ) ? value : arguments,
1853 <= 0.5 ) { local = this[ cache ].slice();
1854  
1855 <= 0.5 ) { each( props, function( key, prop ) {
1856 <= 0.5 ) { var val = arr[ type === "object" ? key : prop.idx ];
1857 <= 0.5 ) { if ( val == null ) {
1858 <= 0.5 ) { val = local[ prop.idx ];
1859 <= 0.5 ) { }
1860 <= 0.5 ) { local[ prop.idx ] = clamp( val, prop );
1861 <= 0.5 ) { } );
1862  
1863 <= 0.5 ) { if ( from ) {
1864 <= 0.5 ) { ret = color( from( local ) );
1865 <= 0.5 ) { ret[ cache ] = local;
1866 <= 0.5 ) { return ret;
1867 <= 0.5 ) { } else {
1868 <= 0.5 ) { return color( local );
1869 <= 0.5 ) { }
1870 <= 0.5 ) { };
1871  
1872 <= 0.5 ) { // Makes red() green() blue() alpha() hue() saturation() lightness()
1873 <= 0.5 ) { each( props, function( key, prop ) {
1874  
1875 <= 0.5 ) { // Alpha is included in more than one space
1876 <= 0.5 ) { if ( color.fn[ key ] ) {
1877 <= 0.5 ) { return;
1878 <= 0.5 ) { }
1879 <= 0.5 ) { color.fn[ key ] = function( value ) {
1880 <= 0.5 ) { var vtype = jQuery.type( value ),
1881 <= 0.5 ) { fn = ( key === "alpha" ? ( this._hsla ? "hsla" : "rgba" ) : spaceName ),
1882 <= 0.5 ) { local = this[ fn ](),
1883 <= 0.5 ) { cur = local[ prop.idx ],
1884 <= 0.5 ) { match;
1885  
1886 <= 0.5 ) { if ( vtype === "undefined" ) {
1887 <= 0.5 ) { return cur;
1888 <= 0.5 ) { }
1889  
1890 <= 0.5 ) { if ( vtype === "function" ) {
1891 <= 0.5 ) { value = value.call( this, cur );
1892 <= 0.5 ) { vtype = jQuery.type( value );
1893 <= 0.5 ) { }
1894 <= 0.5 ) { if ( value == null && prop.empty ) {
1895 <= 0.5 ) { return this;
1896 <= 0.5 ) { }
1897 <= 0.5 ) { if ( vtype === "string" ) {
1898 <= 0.5 ) { match = rplusequals.exec( value );
1899 <= 0.5 ) { if ( match ) {
1900 <= 0.5 ) { value = cur + parseFloat( match[ 2 ] ) * ( match[ 1 ] === "+" ? 1 : -1 );
1901 <= 0.5 ) { }
1902 <= 0.5 ) { }
1903 <= 0.5 ) { local[ prop.idx ] = value;
1904 <= 0.5 ) { return this[ fn ]( local );
1905 <= 0.5 ) { };
1906 <= 0.5 ) { } );
1907 <= 0.5 ) {} );
1908  
1909 <= 0.5 ) {// Add cssHook and .fx.step function for each named hook.
1910 <= 0.5 ) {// accept a space separated string of properties
1911 <= 0.5 ) {color.hook = function( hook ) {
1912 <= 0.5 ) { var hooks = hook.split( " " );
1913 <= 0.5 ) { each( hooks, function( i, hook ) {
1914 <= 0.5 ) { jQuery.cssHooks[ hook ] = {
1915 <= 0.5 ) { set: function( elem, value ) {
1916 <= 0.5 ) { var parsed, curElem,
1917 <= 0.5 ) { backgroundColor = "";
1918  
1919 <= 0.5 ) { if ( value !== "transparent" && ( jQuery.type( value ) !== "string" ||
1920 <= 0.5 ) { ( parsed = stringParse( value ) ) ) ) {
1921 <= 0.5 ) { value = color( parsed || value );
1922 <= 0.5 ) { if ( !support.rgba && value._rgba[ 3 ] !== 1 ) {
1923 <= 0.5 ) { curElem = hook === "backgroundColor" ? elem.parentNode : elem;
1924 <= 0.5 ) { while (
1925 <= 0.5 ) { ( backgroundColor === "" || backgroundColor === "transparent" ) &&
1926 <= 0.5 ) { curElem && curElem.style
1927 <= 0.5 ) { ) {
1928 <= 0.5 ) { try {
1929 <= 0.5 ) { backgroundColor = jQuery.css( curElem, "backgroundColor" );
1930 <= 0.5 ) { curElem = curElem.parentNode;
1931 <= 0.5 ) { } catch ( e ) {
1932 <= 0.5 ) { }
1933 <= 0.5 ) { }
1934  
1935 <= 0.5 ) { value = value.blend( backgroundColor && backgroundColor !== "transparent" ?
1936 <= 0.5 ) { backgroundColor :
1937 <= 0.5 ) { "_default" );
1938 <= 0.5 ) { }
1939  
1940 <= 0.5 ) { value = value.toRgbaString();
1941 <= 0.5 ) { }
1942 <= 0.5 ) { try {
1943 <= 0.5 ) { elem.style[ hook ] = value;
1944 <= 0.5 ) { } catch ( e ) {
1945  
1946 <= 0.5 ) { // Wrapped to prevent IE from throwing errors on "invalid" values like
1947 <= 0.5 ) { // 'auto' or 'inherit'
1948 <= 0.5 ) { }
1949 <= 0.5 ) { }
1950 <= 0.5 ) { };
1951 <= 0.5 ) { jQuery.fx.step[ hook ] = function( fx ) {
1952 <= 0.5 ) { if ( !fx.colorInit ) {
1953 <= 0.5 ) { fx.start = color( fx.elem, hook );
1954 <= 0.5 ) { fx.end = color( fx.end );
1955 <= 0.5 ) { fx.colorInit = true;
1956 <= 0.5 ) { }
1957 <= 0.5 ) { jQuery.cssHooks[ hook ].set( fx.elem, fx.start.transition( fx.end, fx.pos ) );
1958 <= 0.5 ) { };
1959 <= 0.5 ) { } );
1960  
1961 <= 0.5 ) {};
1962  
1963 <= 0.5 ) {color.hook( stepHooks );
1964  
1965 <= 0.5 ) {jQuery.cssHooks.borderColor = {
1966 <= 0.5 ) { expand: function( value ) {
1967 <= 0.5 ) { var expanded = {};
1968  
1969 <= 0.5 ) { each( [ "Top", "Right", "Bottom", "Left" ], function( i, part ) {
1970 <= 0.5 ) { expanded[ "border" + part + "Color" ] = value;
1971 <= 0.5 ) { } );
1972 <= 0.5 ) { return expanded;
1973 <= 0.5 ) { }
1974 <= 0.5 ) {};
1975  
1976 <= 0.5 ) {// Basic color names only.
1977 <= 0.5 ) {// Usage of any of the other color names requires adding yourself or including
1978 <= 0.5 ) {// jquery.color.svg-names.js.
1979 <= 0.5 ) {colors = jQuery.Color.names = {
1980  
1981 <= 0.5 ) { // 4.1. Basic color keywords
1982 <= 0.5 ) { aqua: "#00ffff",
1983 <= 0.5 ) { black: "#000000",
1984 <= 0.5 ) { blue: "#0000ff",
1985 <= 0.5 ) { fuchsia: "#ff00ff",
1986 <= 0.5 ) { gray: "#808080",
1987 <= 0.5 ) { green: "#008000",
1988 <= 0.5 ) { lime: "#00ff00",
1989 <= 0.5 ) { maroon: "#800000",
1990 <= 0.5 ) { navy: "#000080",
1991 <= 0.5 ) { olive: "#808000",
1992 <= 0.5 ) { purple: "#800080",
1993 <= 0.5 ) { red: "#ff0000",
1994 <= 0.5 ) { silver: "#c0c0c0",
1995 <= 0.5 ) { teal: "#008080",
1996 <= 0.5 ) { white: "#ffffff",
1997 <= 0.5 ) { yellow: "#ffff00",
1998  
1999 <= 0.5 ) { // 4.2.3. "transparent" color keyword
2000 <= 0.5 ) { transparent: [ null, null, null, 0 ],
2001  
2002 <= 0.5 ) { _default: "#ffffff"
2003 <= 0.5 ) {};
2004  
2005 <= 0.5 ) {} )( jQuery );
2006  
2007 <= 0.5 ) {/******************************************************************************/
2008 <= 0.5 ) {/****************************** CLASS ANIMATIONS ******************************/
2009 <= 0.5 ) {/******************************************************************************/
2010 <= 0.5 ) {( function() {
2011  
2012 <= 0.5 ) {var classAnimationActions = [ "add", "remove", "toggle" ],
2013 <= 0.5 ) { shorthandStyles = {
2014 <= 0.5 ) { border: 1,
2015 <= 0.5 ) { borderBottom: 1,
2016 <= 0.5 ) { borderColor: 1,
2017 <= 0.5 ) { borderLeft: 1,
2018 <= 0.5 ) { borderRight: 1,
2019 <= 0.5 ) { borderTop: 1,
2020 <= 0.5 ) { borderWidth: 1,
2021 <= 0.5 ) { margin: 1,
2022 <= 0.5 ) { padding: 1
2023 <= 0.5 ) { };
2024  
2025 <= 0.5 ) {$.each(
2026 <= 0.5 ) { [ "borderLeftStyle", "borderRightStyle", "borderBottomStyle", "borderTopStyle" ],
2027 <= 0.5 ) { function( _, prop ) {
2028 <= 0.5 ) { $.fx.step[ prop ] = function( fx ) {
2029 <= 0.5 ) { if ( fx.end !== "none" && !fx.setAttr || fx.pos === 1 && !fx.setAttr ) {
2030 <= 0.5 ) { jQuery.style( fx.elem, prop, fx.end );
2031 <= 0.5 ) { fx.setAttr = true;
2032 <= 0.5 ) { }
2033 <= 0.5 ) { };
2034 <= 0.5 ) { }
2035 <= 0.5 ) {);
2036  
2037 <= 0.5 ) {function getElementStyles( elem ) {
2038 <= 0.5 ) { var key, len,
2039 <= 0.5 ) { style = elem.ownerDocument.defaultView ?
2040 <= 0.5 ) { elem.ownerDocument.defaultView.getComputedStyle( elem, null ) :
2041 <= 0.5 ) { elem.currentStyle,
2042 <= 0.5 ) { styles = {};
2043  
2044 <= 0.5 ) { if ( style && style.length && style[ 0 ] && style[ style[ 0 ] ] ) {
2045 <= 0.5 ) { len = style.length;
2046 <= 0.5 ) { while ( len-- ) {
2047 <= 0.5 ) { key = style[ len ];
2048 <= 0.5 ) { if ( typeof style[ key ] === "string" ) {
2049 <= 0.5 ) { styles[ $.camelCase( key ) ] = style[ key ];
2050 <= 0.5 ) { }
2051 <= 0.5 ) { }
2052  
2053 <= 0.5 ) { // Support: Opera, IE <9
2054 <= 0.5 ) { } else {
2055 <= 0.5 ) { for ( key in style ) {
2056 <= 0.5 ) { if ( typeof style[ key ] === "string" ) {
2057 <= 0.5 ) { styles[ key ] = style[ key ];
2058 <= 0.5 ) { }
2059 <= 0.5 ) { }
2060 <= 0.5 ) { }
2061  
2062 <= 0.5 ) { return styles;
2063 <= 0.5 ) {}
2064  
2065 <= 0.5 ) {function styleDifference( oldStyle, newStyle ) {
2066 <= 0.5 ) { var diff = {},
2067 <= 0.5 ) { name, value;
2068  
2069 <= 0.5 ) { for ( name in newStyle ) {
2070 <= 0.5 ) { value = newStyle[ name ];
2071 <= 0.5 ) { if ( oldStyle[ name ] !== value ) {
2072 <= 0.5 ) { if ( !shorthandStyles[ name ] ) {
2073 <= 0.5 ) { if ( $.fx.step[ name ] || !isNaN( parseFloat( value ) ) ) {
2074 <= 0.5 ) { diff[ name ] = value;
2075 <= 0.5 ) { }
2076 <= 0.5 ) { }
2077 <= 0.5 ) { }
2078 <= 0.5 ) { }
2079  
2080 <= 0.5 ) { return diff;
2081 <= 0.5 ) {}
2082  
2083 <= 0.5 ) {// Support: jQuery <1.8
2084 <= 0.5 ) {if ( !$.fn.addBack ) {
2085 <= 0.5 ) { $.fn.addBack = function( selector ) {
2086 <= 0.5 ) { return this.add( selector == null ?
2087 <= 0.5 ) { this.prevObject : this.prevObject.filter( selector )
2088 <= 0.5 ) { );
2089 <= 0.5 ) { };
2090 <= 0.5 ) {}
2091  
2092 <= 0.5 ) {$.effects.animateClass = function( value, duration, easing, callback ) {
2093 <= 0.5 ) { var o = $.speed( duration, easing, callback );
2094  
2095 <= 0.5 ) { return this.queue( function() {
2096 <= 0.5 ) { var animated = $( this ),
2097 <= 0.5 ) { baseClass = animated.attr( "class" ) || "",
2098 <= 0.5 ) { applyClassChange,
2099 <= 0.5 ) { allAnimations = o.children ? animated.find( "*" ).addBack() : animated;
2100  
2101 <= 0.5 ) { // Map the animated objects to store the original styles.
2102 <= 0.5 ) { allAnimations = allAnimations.map( function() {
2103 <= 0.5 ) { var el = $( this );
2104 <= 0.5 ) { return {
2105 <= 0.5 ) { el: el,
2106 <= 0.5 ) { start: getElementStyles( this )
2107 <= 0.5 ) { };
2108 <= 0.5 ) { } );
2109  
2110 <= 0.5 ) { // Apply class change
2111 <= 0.5 ) { applyClassChange = function() {
2112 <= 0.5 ) { $.each( classAnimationActions, function( i, action ) {
2113 <= 0.5 ) { if ( value[ action ] ) {
2114 <= 0.5 ) { animated[ action + "Class" ]( value[ action ] );
2115 <= 0.5 ) { }
2116 <= 0.5 ) { } );
2117 <= 0.5 ) { };
2118 <= 0.5 ) { applyClassChange();
2119  
2120 <= 0.5 ) { // Map all animated objects again - calculate new styles and diff
2121 <= 0.5 ) { allAnimations = allAnimations.map( function() {
2122 <= 0.5 ) { this.end = getElementStyles( this.el[ 0 ] );
2123 <= 0.5 ) { this.diff = styleDifference( this.start, this.end );
2124 <= 0.5 ) { return this;
2125 <= 0.5 ) { } );
2126  
2127 <= 0.5 ) { // Apply original class
2128 <= 0.5 ) { animated.attr( "class", baseClass );
2129  
2130 <= 0.5 ) { // Map all animated objects again - this time collecting a promise
2131 <= 0.5 ) { allAnimations = allAnimations.map( function() {
2132 <= 0.5 ) { var styleInfo = this,
2133 <= 0.5 ) { dfd = $.Deferred(),
2134 <= 0.5 ) { opts = $.extend( {}, o, {
2135 <= 0.5 ) { queue: false,
2136 <= 0.5 ) { complete: function() {
2137 <= 0.5 ) { dfd.resolve( styleInfo );
2138 <= 0.5 ) { }
2139 <= 0.5 ) { } );
2140  
2141 <= 0.5 ) { this.el.animate( this.diff, opts );
2142 <= 0.5 ) { return dfd.promise();
2143 <= 0.5 ) { } );
2144  
2145 <= 0.5 ) { // Once all animations have completed:
2146 <= 0.5 ) { $.when.apply( $, allAnimations.get() ).done( function() {
2147  
2148 <= 0.5 ) { // Set the final class
2149 <= 0.5 ) { applyClassChange();
2150  
2151 <= 0.5 ) { // For each animated element,
2152 <= 0.5 ) { // clear all css properties that were animated
2153 <= 0.5 ) { $.each( arguments, function() {
2154 <= 0.5 ) { var el = this.el;
2155 <= 0.5 ) { $.each( this.diff, function( key ) {
2156 <= 0.5 ) { el.css( key, "" );
2157 <= 0.5 ) { } );
2158 <= 0.5 ) { } );
2159  
2160 <= 0.5 ) { // This is guarnteed to be there if you use jQuery.speed()
2161 <= 0.5 ) { // it also handles dequeuing the next anim...
2162 <= 0.5 ) { o.complete.call( animated[ 0 ] );
2163 <= 0.5 ) { } );
2164 <= 0.5 ) { } );
2165 <= 0.5 ) {};
2166  
2167 <= 0.5 ) {$.fn.extend( {
2168 <= 0.5 ) { addClass: ( function( orig ) {
2169 <= 0.5 ) { return function( classNames, speed, easing, callback ) {
2170 <= 0.5 ) { return speed ?
2171 <= 0.5 ) { $.effects.animateClass.call( this,
2172 <= 0.5 ) { { add: classNames }, speed, easing, callback ) :
2173 <= 0.5 ) { orig.apply( this, arguments );
2174 <= 0.5 ) { };
2175 <= 0.5 ) { } )( $.fn.addClass ),
2176  
2177 <= 0.5 ) { removeClass: ( function( orig ) {
2178 <= 0.5 ) { return function( classNames, speed, easing, callback ) {
2179 <= 0.5 ) { return arguments.length > 1 ?
2180 <= 0.5 ) { $.effects.animateClass.call( this,
2181 <= 0.5 ) { { remove: classNames }, speed, easing, callback ) :
2182 <= 0.5 ) { orig.apply( this, arguments );
2183 <= 0.5 ) { };
2184 <= 0.5 ) { } )( $.fn.removeClass ),
2185  
2186 <= 0.5 ) { toggleClass: ( function( orig ) {
2187 <= 0.5 ) { return function( classNames, force, speed, easing, callback ) {
2188 <= 0.5 ) { if ( typeof force === "boolean" || force === undefined ) {
2189 <= 0.5 ) { if ( !speed ) {
2190  
2191 <= 0.5 ) { // Without speed parameter
2192 <= 0.5 ) { return orig.apply( this, arguments );
2193 <= 0.5 ) { } else {
2194 <= 0.5 ) { return $.effects.animateClass.call( this,
2195 <= 0.5 ) { ( force ? { add: classNames } : { remove: classNames } ),
2196 <= 0.5 ) { speed, easing, callback );
2197 <= 0.5 ) { }
2198 <= 0.5 ) { } else {
2199  
2200 <= 0.5 ) { // Without force parameter
2201 <= 0.5 ) { return $.effects.animateClass.call( this,
2202 <= 0.5 ) { { toggle: classNames }, force, speed, easing );
2203 <= 0.5 ) { }
2204 <= 0.5 ) { };
2205 <= 0.5 ) { } )( $.fn.toggleClass ),
2206  
2207 <= 0.5 ) { switchClass: function( remove, add, speed, easing, callback ) {
2208 <= 0.5 ) { return $.effects.animateClass.call( this, {
2209 <= 0.5 ) { add: add,
2210 <= 0.5 ) { remove: remove
2211 <= 0.5 ) { }, speed, easing, callback );
2212 <= 0.5 ) { }
2213 <= 0.5 ) {} );
2214  
2215 <= 0.5 ) {} )();
2216  
2217 <= 0.5 ) {/******************************************************************************/
2218 <= 0.5 ) {/*********************************** EFFECTS **********************************/
2219 <= 0.5 ) {/******************************************************************************/
2220  
2221 <= 0.5 ) {( function() {
2222  
2223 <= 0.5 ) {if ( $.expr && $.expr.filters && $.expr.filters.animated ) {
2224 <= 0.5 ) { $.expr.filters.animated = ( function( orig ) {
2225 <= 0.5 ) { return function( elem ) {
2226 <= 0.5 ) { return !!$( elem ).data( dataSpaceAnimated ) || orig( elem );
2227 <= 0.5 ) { };
2228 <= 0.5 ) { } )( $.expr.filters.animated );
2229 <= 0.5 ) {}
2230  
2231 <= 0.5 ) {if ( $.uiBackCompat !== false ) {
2232 <= 0.5 ) { $.extend( $.effects, {
2233  
2234 <= 0.5 ) { // Saves a set of properties in a data storage
2235 <= 0.5 ) { save: function( element, set ) {
2236 <= 0.5 ) { var i = 0, length = set.length;
2237 <= 0.5 ) { for ( ; i < length; i++ ) {
2238 <= 0.5 ) { if ( set[ i ] !== null ) {
2239 <= 0.5 ) { element.data( dataSpace + set[ i ], element[ 0 ].style[ set[ i ] ] );
2240 <= 0.5 ) { }
2241 <= 0.5 ) { }
2242 <= 0.5 ) { },
2243  
2244 <= 0.5 ) { // Restores a set of previously saved properties from a data storage
2245 <= 0.5 ) { restore: function( element, set ) {
2246 <= 0.5 ) { var val, i = 0, length = set.length;
2247 <= 0.5 ) { for ( ; i < length; i++ ) {
2248 <= 0.5 ) { if ( set[ i ] !== null ) {
2249 <= 0.5 ) { val = element.data( dataSpace + set[ i ] );
2250 <= 0.5 ) { element.css( set[ i ], val );
2251 <= 0.5 ) { }
2252 <= 0.5 ) { }
2253 <= 0.5 ) { },
2254  
2255 <= 0.5 ) { setMode: function( el, mode ) {
2256 <= 0.5 ) { if ( mode === "toggle" ) {
2257 <= 0.5 ) { mode = el.is( ":hidden" ) ? "show" : "hide";
2258 <= 0.5 ) { }
2259 <= 0.5 ) { return mode;
2260 <= 0.5 ) { },
2261  
2262 <= 0.5 ) { // Wraps the element around a wrapper that copies position properties
2263 <= 0.5 ) { createWrapper: function( element ) {
2264  
2265 <= 0.5 ) { // If the element is already wrapped, return it
2266 <= 0.5 ) { if ( element.parent().is( ".ui-effects-wrapper" ) ) {
2267 <= 0.5 ) { return element.parent();
2268 <= 0.5 ) { }
2269  
2270 <= 0.5 ) { // Wrap the element
2271 <= 0.5 ) { var props = {
2272 <= 0.5 ) { width: element.outerWidth( true ),
2273 <= 0.5 ) { height: element.outerHeight( true ),
2274 <= 0.5 ) { "float": element.css( "float" )
2275 <= 0.5 ) { },
2276 <= 0.5 ) { wrapper = $( "<div></div>" )
2277 <= 0.5 ) { .addClass( "ui-effects-wrapper" )
2278 <= 0.5 ) { .css( {
2279 <= 0.5 ) { fontSize: "100%",
2280 <= 0.5 ) { background: "transparent",
2281 <= 0.5 ) { border: "none",
2282 <= 0.5 ) { margin: 0,
2283 <= 0.5 ) { padding: 0
2284 <= 0.5 ) { } ),
2285  
2286 <= 0.5 ) { // Store the size in case width/height are defined in % - Fixes #5245
2287 <= 0.5 ) { size = {
2288 <= 0.5 ) { width: element.width(),
2289 <= 0.5 ) { height: element.height()
2290 <= 0.5 ) { },
2291 <= 0.5 ) { active = document.activeElement;
2292  
2293 <= 0.5 ) { // Support: Firefox
2294 <= 0.5 ) { // Firefox incorrectly exposes anonymous content
2295 <= 0.5 ) { // https://bugzilla.mozilla.org/show_bug.cgi?id=561664
2296 <= 0.5 ) { try {
2297 <= 0.5 ) { active.id;
2298 <= 0.5 ) { } catch ( e ) {
2299 <= 0.5 ) { active = document.body;
2300 <= 0.5 ) { }
2301  
2302 <= 0.5 ) { element.wrap( wrapper );
2303  
2304 <= 0.5 ) { // Fixes #7595 - Elements lose focus when wrapped.
2305 <= 0.5 ) { if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {
2306 <= 0.5 ) { $( active ).trigger( "focus" );
2307 <= 0.5 ) { }
2308  
2309 <= 0.5 ) { // Hotfix for jQuery 1.4 since some change in wrap() seems to actually
2310 <= 0.5 ) { // lose the reference to the wrapped element
2311 <= 0.5 ) { wrapper = element.parent();
2312  
2313 <= 0.5 ) { // Transfer positioning properties to the wrapper
2314 <= 0.5 ) { if ( element.css( "position" ) === "static" ) {
2315 <= 0.5 ) { wrapper.css( { position: "relative" } );
2316 <= 0.5 ) { element.css( { position: "relative" } );
2317 <= 0.5 ) { } else {
2318 <= 0.5 ) { $.extend( props, {
2319 <= 0.5 ) { position: element.css( "position" ),
2320 <= 0.5 ) { zIndex: element.css( "z-index" )
2321 <= 0.5 ) { } );
2322 <= 0.5 ) { $.each( [ "top", "left", "bottom", "right" ], function( i, pos ) {
2323 <= 0.5 ) { props[ pos ] = element.css( pos );
2324 <= 0.5 ) { if ( isNaN( parseInt( props[ pos ], 10 ) ) ) {
2325 <= 0.5 ) { props[ pos ] = "auto";
2326 <= 0.5 ) { }
2327 <= 0.5 ) { } );
2328 <= 0.5 ) { element.css( {
2329 <= 0.5 ) { position: "relative",
2330 <= 0.5 ) { top: 0,
2331 <= 0.5 ) { left: 0,
2332 <= 0.5 ) { right: "auto",
2333 <= 0.5 ) { bottom: "auto"
2334 <= 0.5 ) { } );
2335 <= 0.5 ) { }
2336 <= 0.5 ) { element.css( size );
2337  
2338 <= 0.5 ) { return wrapper.css( props ).show();
2339 <= 0.5 ) { },
2340  
2341 <= 0.5 ) { removeWrapper: function( element ) {
2342 <= 0.5 ) { var active = document.activeElement;
2343  
2344 <= 0.5 ) { if ( element.parent().is( ".ui-effects-wrapper" ) ) {
2345 <= 0.5 ) { element.parent().replaceWith( element );
2346  
2347 <= 0.5 ) { // Fixes #7595 - Elements lose focus when wrapped.
2348 <= 0.5 ) { if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {
2349 <= 0.5 ) { $( active ).trigger( "focus" );
2350 <= 0.5 ) { }
2351 <= 0.5 ) { }
2352  
2353 <= 0.5 ) { return element;
2354 <= 0.5 ) { }
2355 <= 0.5 ) { } );
2356 <= 0.5 ) {}
2357  
2358 <= 0.5 ) {$.extend( $.effects, {
2359 <= 0.5 ) { version: "1.12.1",
2360  
2361 <= 0.5 ) { define: function( name, mode, effect ) {
2362 <= 0.5 ) { if ( !effect ) {
2363 <= 0.5 ) { effect = mode;
2364 <= 0.5 ) { mode = "effect";
2365 <= 0.5 ) { }
2366  
2367 <= 0.5 ) { $.effects.effect[ name ] = effect;
2368 <= 0.5 ) { $.effects.effect[ name ].mode = mode;
2369  
2370 <= 0.5 ) { return effect;
2371 <= 0.5 ) { },
2372  
2373 <= 0.5 ) { scaledDimensions: function( element, percent, direction ) {
2374 <= 0.5 ) { if ( percent === 0 ) {
2375 <= 0.5 ) { return {
2376 <= 0.5 ) { height: 0,
2377 <= 0.5 ) { width: 0,
2378 <= 0.5 ) { outerHeight: 0,
2379 <= 0.5 ) { outerWidth: 0
2380 <= 0.5 ) { };
2381 <= 0.5 ) { }
2382  
2383 <= 0.5 ) { var x = direction !== "horizontal" ? ( ( percent || 100 ) / 100 ) : 1,
2384 <= 0.5 ) { y = direction !== "vertical" ? ( ( percent || 100 ) / 100 ) : 1;
2385  
2386 <= 0.5 ) { return {
2387 <= 0.5 ) { height: element.height() * y,
2388 <= 0.5 ) { width: element.width() * x,
2389 <= 0.5 ) { outerHeight: element.outerHeight() * y,
2390 <= 0.5 ) { outerWidth: element.outerWidth() * x
2391 <= 0.5 ) { };
2392  
2393 <= 0.5 ) { },
2394  
2395 <= 0.5 ) { clipToBox: function( animation ) {
2396 <= 0.5 ) { return {
2397 <= 0.5 ) { width: animation.clip.right - animation.clip.left,
2398 <= 0.5 ) { height: animation.clip.bottom - animation.clip.top,
2399 <= 0.5 ) { left: animation.clip.left,
2400 <= 0.5 ) { top: animation.clip.top
2401 <= 0.5 ) { };
2402 <= 0.5 ) { },
2403  
2404 <= 0.5 ) { // Injects recently queued functions to be first in line (after "inprogress")
2405 <= 0.5 ) { unshift: function( element, queueLength, count ) {
2406 <= 0.5 ) { var queue = element.queue();
2407  
2408 <= 0.5 ) { if ( queueLength > 1 ) {
2409 <= 0.5 ) { queue.splice.apply( queue,
2410 <= 0.5 ) { [ 1, 0 ].concat( queue.splice( queueLength, count ) ) );
2411 <= 0.5 ) { }
2412 <= 0.5 ) { element.dequeue();
2413 <= 0.5 ) { },
2414  
2415 <= 0.5 ) { saveStyle: function( element ) {
2416 <= 0.5 ) { element.data( dataSpaceStyle, element[ 0 ].style.cssText );
2417 <= 0.5 ) { },
2418  
2419 <= 0.5 ) { restoreStyle: function( element ) {
2420 <= 0.5 ) { element[ 0 ].style.cssText = element.data( dataSpaceStyle ) || "";
2421 <= 0.5 ) { element.removeData( dataSpaceStyle );
2422 <= 0.5 ) { },
2423  
2424 <= 0.5 ) { mode: function( element, mode ) {
2425 <= 0.5 ) { var hidden = element.is( ":hidden" );
2426  
2427 <= 0.5 ) { if ( mode === "toggle" ) {
2428 <= 0.5 ) { mode = hidden ? "show" : "hide";
2429 <= 0.5 ) { }
2430 <= 0.5 ) { if ( hidden ? mode === "hide" : mode === "show" ) {
2431 <= 0.5 ) { mode = "none";
2432 <= 0.5 ) { }
2433 <= 0.5 ) { return mode;
2434 <= 0.5 ) { },
2435  
2436 <= 0.5 ) { // Translates a [top,left] array into a baseline value
2437 <= 0.5 ) { getBaseline: function( origin, original ) {
2438 <= 0.5 ) { var y, x;
2439  
2440 <= 0.5 ) { switch ( origin[ 0 ] ) {
2441 <= 0.5 ) { case "top":
2442 <= 0.5 ) { y = 0;
2443 <= 0.5 ) { break;
2444 <= 0.5 ) { case "middle":
2445 <= 0.5 ) { y = 0.5;
2446 <= 0.5 ) { break;
2447 <= 0.5 ) { case "bottom":
2448 <= 0.5 ) { y = 1;
2449 <= 0.5 ) { break;
2450 <= 0.5 ) { default:
2451 <= 0.5 ) { y = origin[ 0 ] / original.height;
2452 <= 0.5 ) { }
2453  
2454 <= 0.5 ) { switch ( origin[ 1 ] ) {
2455 <= 0.5 ) { case "left":
2456 <= 0.5 ) { x = 0;
2457 <= 0.5 ) { break;
2458 <= 0.5 ) { case "center":
2459 <= 0.5 ) { x = 0.5;
2460 <= 0.5 ) { break;
2461 <= 0.5 ) { case "right":
2462 <= 0.5 ) { x = 1;
2463 <= 0.5 ) { break;
2464 <= 0.5 ) { default:
2465 <= 0.5 ) { x = origin[ 1 ] / original.width;
2466 <= 0.5 ) { }
2467  
2468 <= 0.5 ) { return {
2469 <= 0.5 ) { x: x,
2470 <= 0.5 ) { y: y
2471 <= 0.5 ) { };
2472 <= 0.5 ) { },
2473  
2474 <= 0.5 ) { // Creates a placeholder element so that the original element can be made absolute
2475 <= 0.5 ) { createPlaceholder: function( element ) {
2476 <= 0.5 ) { var placeholder,
2477 <= 0.5 ) { cssPosition = element.css( "position" ),
2478 <= 0.5 ) { position = element.position();
2479  
2480 <= 0.5 ) { // Lock in margins first to account for form elements, which
2481 <= 0.5 ) { // will change margin if you explicitly set height
2482 <= 0.5 ) { // see: http://jsfiddle.net/JZSMt/3/ https://bugs.webkit.org/show_bug.cgi?id=107380
2483 <= 0.5 ) { // Support: Safari
2484 <= 0.5 ) { element.css( {
2485 <= 0.5 ) { marginTop: element.css( "marginTop" ),
2486 <= 0.5 ) { marginBottom: element.css( "marginBottom" ),
2487 <= 0.5 ) { marginLeft: element.css( "marginLeft" ),
2488 <= 0.5 ) { marginRight: element.css( "marginRight" )
2489 <= 0.5 ) { } )
2490 <= 0.5 ) { .outerWidth( element.outerWidth() )
2491 <= 0.5 ) { .outerHeight( element.outerHeight() );
2492  
2493 <= 0.5 ) { if ( /^(static|relative)/.test( cssPosition ) ) {
2494 <= 0.5 ) { cssPosition = "absolute";
2495  
2496 <= 0.5 ) { placeholder = $( "<" + element[ 0 ].nodeName + ">" ).insertAfter( element ).css( {
2497  
2498 <= 0.5 ) { // Convert inline to inline block to account for inline elements
2499 <= 0.5 ) { // that turn to inline block based on content (like img)
2500 <= 0.5 ) { display: /^(inline|ruby)/.test( element.css( "display" ) ) ?
2501 <= 0.5 ) { "inline-block" :
2502 <= 0.5 ) { "block",
2503 <= 0.5 ) { visibility: "hidden",
2504  
2505 <= 0.5 ) { // Margins need to be set to account for margin collapse
2506 <= 0.5 ) { marginTop: element.css( "marginTop" ),
2507 <= 0.5 ) { marginBottom: element.css( "marginBottom" ),
2508 <= 0.5 ) { marginLeft: element.css( "marginLeft" ),
2509 <= 0.5 ) { marginRight: element.css( "marginRight" ),
2510 <= 0.5 ) { "float": element.css( "float" )
2511 <= 0.5 ) { } )
2512 <= 0.5 ) { .outerWidth( element.outerWidth() )
2513 <= 0.5 ) { .outerHeight( element.outerHeight() )
2514 <= 0.5 ) { .addClass( "ui-effects-placeholder" );
2515  
2516 <= 0.5 ) { element.data( dataSpace + "placeholder", placeholder );
2517 <= 0.5 ) { }
2518  
2519 <= 0.5 ) { element.css( {
2520 <= 0.5 ) { position: cssPosition,
2521 <= 0.5 ) { left: position.left,
2522 <= 0.5 ) { top: position.top
2523 <= 0.5 ) { } );
2524  
2525 <= 0.5 ) { return placeholder;
2526 <= 0.5 ) { },
2527  
2528 <= 0.5 ) { removePlaceholder: function( element ) {
2529 <= 0.5 ) { var dataKey = dataSpace + "placeholder",
2530 <= 0.5 ) { placeholder = element.data( dataKey );
2531  
2532 <= 0.5 ) { if ( placeholder ) {
2533 <= 0.5 ) { placeholder.remove();
2534 <= 0.5 ) { element.removeData( dataKey );
2535 <= 0.5 ) { }
2536 <= 0.5 ) { },
2537  
2538 <= 0.5 ) { // Removes a placeholder if it exists and restores
2539 <= 0.5 ) { // properties that were modified during placeholder creation
2540 <= 0.5 ) { cleanUp: function( element ) {
2541 <= 0.5 ) { $.effects.restoreStyle( element );
2542 <= 0.5 ) { $.effects.removePlaceholder( element );
2543 <= 0.5 ) { },
2544  
2545 <= 0.5 ) { setTransition: function( element, list, factor, value ) {
2546 <= 0.5 ) { value = value || {};
2547 <= 0.5 ) { $.each( list, function( i, x ) {
2548 <= 0.5 ) { var unit = element.cssUnit( x );
2549 <= 0.5 ) { if ( unit[ 0 ] > 0 ) {
2550 <= 0.5 ) { value[ x ] = unit[ 0 ] * factor + unit[ 1 ];
2551 <= 0.5 ) { }
2552 <= 0.5 ) { } );
2553 <= 0.5 ) { return value;
2554 <= 0.5 ) { }
2555 <= 0.5 ) {} );
2556  
2557 <= 0.5 ) {// Return an effect options object for the given parameters:
2558 <= 0.5 ) {function _normalizeArguments( effect, options, speed, callback ) {
2559  
2560 <= 0.5 ) { // Allow passing all options as the first parameter
2561 <= 0.5 ) { if ( $.isPlainObject( effect ) ) {
2562 <= 0.5 ) { options = effect;
2563 <= 0.5 ) { effect = effect.effect;
2564 <= 0.5 ) { }
2565  
2566 <= 0.5 ) { // Convert to an object
2567 <= 0.5 ) { effect = { effect: effect };
2568  
2569 <= 0.5 ) { // Catch (effect, null, ...)
2570 <= 0.5 ) { if ( options == null ) {
2571 <= 0.5 ) { options = {};
2572 <= 0.5 ) { }
2573  
2574 <= 0.5 ) { // Catch (effect, callback)
2575 <= 0.5 ) { if ( $.isFunction( options ) ) {
2576 <= 0.5 ) { callback = options;
2577 <= 0.5 ) { speed = null;
2578 <= 0.5 ) { options = {};
2579 <= 0.5 ) { }
2580  
2581 <= 0.5 ) { // Catch (effect, speed, ?)
2582 <= 0.5 ) { if ( typeof options === "number" || $.fx.speeds[ options ] ) {
2583 <= 0.5 ) { callback = speed;
2584 <= 0.5 ) { speed = options;
2585 <= 0.5 ) { options = {};
2586 <= 0.5 ) { }
2587  
2588 <= 0.5 ) { // Catch (effect, options, callback)
2589 <= 0.5 ) { if ( $.isFunction( speed ) ) {
2590 <= 0.5 ) { callback = speed;
2591 <= 0.5 ) { speed = null;
2592 <= 0.5 ) { }
2593  
2594 <= 0.5 ) { // Add options to effect
2595 <= 0.5 ) { if ( options ) {
2596 <= 0.5 ) { $.extend( effect, options );
2597 <= 0.5 ) { }
2598  
2599 <= 0.5 ) { speed = speed || options.duration;
2600 <= 0.5 ) { effect.duration = $.fx.off ? 0 :
2601 <= 0.5 ) { typeof speed === "number" ? speed :
2602 <= 0.5 ) { speed in $.fx.speeds ? $.fx.speeds[ speed ] :
2603 <= 0.5 ) { $.fx.speeds._default;
2604  
2605 <= 0.5 ) { effect.complete = callback || options.complete;
2606  
2607 <= 0.5 ) { return effect;
2608 <= 0.5 ) {}
2609  
2610 <= 0.5 ) {function standardAnimationOption( option ) {
2611  
2612 <= 0.5 ) { // Valid standard speeds (nothing, number, named speed)
2613 <= 0.5 ) { if ( !option || typeof option === "number" || $.fx.speeds[ option ] ) {
2614 <= 0.5 ) { return true;
2615 <= 0.5 ) { }
2616  
2617 <= 0.5 ) { // Invalid strings - treat as "normal" speed
2618 <= 0.5 ) { if ( typeof option === "string" && !$.effects.effect[ option ] ) {
2619 <= 0.5 ) { return true;
2620 <= 0.5 ) { }
2621  
2622 <= 0.5 ) { // Complete callback
2623 <= 0.5 ) { if ( $.isFunction( option ) ) {
2624 <= 0.5 ) { return true;
2625 <= 0.5 ) { }
2626  
2627 <= 0.5 ) { // Options hash (but not naming an effect)
2628 <= 0.5 ) { if ( typeof option === "object" && !option.effect ) {
2629 <= 0.5 ) { return true;
2630 <= 0.5 ) { }
2631  
2632 <= 0.5 ) { // Didn't match any standard API
2633 <= 0.5 ) { return false;
2634 <= 0.5 ) {}
2635  
2636 <= 0.5 ) {$.fn.extend( {
2637 <= 0.5 ) { effect: function( /* effect, options, speed, callback */ ) {
2638 <= 0.5 ) { var args = _normalizeArguments.apply( this, arguments ),
2639 <= 0.5 ) { effectMethod = $.effects.effect[ args.effect ],
2640 <= 0.5 ) { defaultMode = effectMethod.mode,
2641 <= 0.5 ) { queue = args.queue,
2642 <= 0.5 ) { queueName = queue || "fx",
2643 <= 0.5 ) { complete = args.complete,
2644 <= 0.5 ) { mode = args.mode,
2645 <= 0.5 ) { modes = [],
2646 <= 0.5 ) { prefilter = function( next ) {
2647 <= 0.5 ) { var el = $( this ),
2648 <= 0.5 ) { normalizedMode = $.effects.mode( el, mode ) || defaultMode;
2649  
2650 <= 0.5 ) { // Sentinel for duck-punching the :animated psuedo-selector
2651 <= 0.5 ) { el.data( dataSpaceAnimated, true );
2652  
2653 <= 0.5 ) { // Save effect mode for later use,
2654 <= 0.5 ) { // we can't just call $.effects.mode again later,
2655 <= 0.5 ) { // as the .show() below destroys the initial state
2656 <= 0.5 ) { modes.push( normalizedMode );
2657  
2658 <= 0.5 ) { // See $.uiBackCompat inside of run() for removal of defaultMode in 1.13
2659 <= 0.5 ) { if ( defaultMode && ( normalizedMode === "show" ||
2660 <= 0.5 ) { ( normalizedMode === defaultMode && normalizedMode === "hide" ) ) ) {
2661 <= 0.5 ) { el.show();
2662 <= 0.5 ) { }
2663  
2664 <= 0.5 ) { if ( !defaultMode || normalizedMode !== "none" ) {
2665 <= 0.5 ) { $.effects.saveStyle( el );
2666 <= 0.5 ) { }
2667  
2668 <= 0.5 ) { if ( $.isFunction( next ) ) {
2669 <= 0.5 ) { next();
2670 <= 0.5 ) { }
2671 <= 0.5 ) { };
2672  
2673 <= 0.5 ) { if ( $.fx.off || !effectMethod ) {
2674  
2675 <= 0.5 ) { // Delegate to the original method (e.g., .show()) if possible
2676 <= 0.5 ) { if ( mode ) {
2677 <= 0.5 ) { return this[ mode ]( args.duration, complete );
2678 <= 0.5 ) { } else {
2679 <= 0.5 ) { return this.each( function() {
2680 <= 0.5 ) { if ( complete ) {
2681 <= 0.5 ) { complete.call( this );
2682 <= 0.5 ) { }
2683 <= 0.5 ) { } );
2684 <= 0.5 ) { }
2685 <= 0.5 ) { }
2686  
2687 <= 0.5 ) { function run( next ) {
2688 <= 0.5 ) { var elem = $( this );
2689  
2690 <= 0.5 ) { function cleanup() {
2691 <= 0.5 ) { elem.removeData( dataSpaceAnimated );
2692  
2693 <= 0.5 ) { $.effects.cleanUp( elem );
2694  
2695 <= 0.5 ) { if ( args.mode === "hide" ) {
2696 <= 0.5 ) { elem.hide();
2697 <= 0.5 ) { }
2698  
2699 <= 0.5 ) { done();
2700 <= 0.5 ) { }
2701  
2702 <= 0.5 ) { function done() {
2703 <= 0.5 ) { if ( $.isFunction( complete ) ) {
2704 <= 0.5 ) { complete.call( elem[ 0 ] );
2705 <= 0.5 ) { }
2706  
2707 <= 0.5 ) { if ( $.isFunction( next ) ) {
2708 <= 0.5 ) { next();
2709 <= 0.5 ) { }
2710 <= 0.5 ) { }
2711  
2712 <= 0.5 ) { // Override mode option on a per element basis,
2713 <= 0.5 ) { // as toggle can be either show or hide depending on element state
2714 <= 0.5 ) { args.mode = modes.shift();
2715  
2716 <= 0.5 ) { if ( $.uiBackCompat !== false && !defaultMode ) {
2717 <= 0.5 ) { if ( elem.is( ":hidden" ) ? mode === "hide" : mode === "show" ) {
2718  
2719 <= 0.5 ) { // Call the core method to track "olddisplay" properly
2720 <= 0.5 ) { elem[ mode ]();
2721 <= 0.5 ) { done();
2722 <= 0.5 ) { } else {
2723 <= 0.5 ) { effectMethod.call( elem[ 0 ], args, done );
2724 <= 0.5 ) { }
2725 <= 0.5 ) { } else {
2726 <= 0.5 ) { if ( args.mode === "none" ) {
2727  
2728 <= 0.5 ) { // Call the core method to track "olddisplay" properly
2729 <= 0.5 ) { elem[ mode ]();
2730 <= 0.5 ) { done();
2731 <= 0.5 ) { } else {
2732 <= 0.5 ) { effectMethod.call( elem[ 0 ], args, cleanup );
2733 <= 0.5 ) { }
2734 <= 0.5 ) { }
2735 <= 0.5 ) { }
2736  
2737 <= 0.5 ) { // Run prefilter on all elements first to ensure that
2738 <= 0.5 ) { // any showing or hiding happens before placeholder creation,
2739 <= 0.5 ) { // which ensures that any layout changes are correctly captured.
2740 <= 0.5 ) { return queue === false ?
2741 <= 0.5 ) { this.each( prefilter ).each( run ) :
2742 <= 0.5 ) { this.queue( queueName, prefilter ).queue( queueName, run );
2743 <= 0.5 ) { },
2744  
2745 <= 0.5 ) { show: ( function( orig ) {
2746 <= 0.5 ) { return function( option ) {
2747 <= 0.5 ) { if ( standardAnimationOption( option ) ) {
2748 <= 0.5 ) { return orig.apply( this, arguments );
2749 <= 0.5 ) { } else {
2750 <= 0.5 ) { var args = _normalizeArguments.apply( this, arguments );
2751 <= 0.5 ) { args.mode = "show";
2752 <= 0.5 ) { return this.effect.call( this, args );
2753 <= 0.5 ) { }
2754 <= 0.5 ) { };
2755 <= 0.5 ) { } )( $.fn.show ),
2756  
2757 <= 0.5 ) { hide: ( function( orig ) {
2758 <= 0.5 ) { return function( option ) {
2759 <= 0.5 ) { if ( standardAnimationOption( option ) ) {
2760 <= 0.5 ) { return orig.apply( this, arguments );
2761 <= 0.5 ) { } else {
2762 <= 0.5 ) { var args = _normalizeArguments.apply( this, arguments );
2763 <= 0.5 ) { args.mode = "hide";
2764 <= 0.5 ) { return this.effect.call( this, args );
2765 <= 0.5 ) { }
2766 <= 0.5 ) { };
2767 <= 0.5 ) { } )( $.fn.hide ),
2768  
2769 <= 0.5 ) { toggle: ( function( orig ) {
2770 <= 0.5 ) { return function( option ) {
2771 <= 0.5 ) { if ( standardAnimationOption( option ) || typeof option === "boolean" ) {
2772 <= 0.5 ) { return orig.apply( this, arguments );
2773 <= 0.5 ) { } else {
2774 <= 0.5 ) { var args = _normalizeArguments.apply( this, arguments );
2775 <= 0.5 ) { args.mode = "toggle";
2776 <= 0.5 ) { return this.effect.call( this, args );
2777 <= 0.5 ) { }
2778 <= 0.5 ) { };
2779 <= 0.5 ) { } )( $.fn.toggle ),
2780  
2781 <= 0.5 ) { cssUnit: function( key ) {
2782 <= 0.5 ) { var style = this.css( key ),
2783 <= 0.5 ) { val = [];
2784  
2785 <= 0.5 ) { $.each( [ "em", "px", "%", "pt" ], function( i, unit ) {
2786 <= 0.5 ) { if ( style.indexOf( unit ) > 0 ) {
2787 <= 0.5 ) { val = [ parseFloat( style ), unit ];
2788 <= 0.5 ) { }
2789 <= 0.5 ) { } );
2790 <= 0.5 ) { return val;
2791 <= 0.5 ) { },
2792  
2793 <= 0.5 ) { cssClip: function( clipObj ) {
2794 <= 0.5 ) { if ( clipObj ) {
2795 <= 0.5 ) { return this.css( "clip", "rect(" + clipObj.top + "px " + clipObj.right + "px " +
2796 <= 0.5 ) { clipObj.bottom + "px " + clipObj.left + "px)" );
2797 <= 0.5 ) { }
2798 <= 0.5 ) { return parseClip( this.css( "clip" ), this );
2799 <= 0.5 ) { },
2800  
2801 <= 0.5 ) { transfer: function( options, done ) {
2802 <= 0.5 ) { var element = $( this ),
2803 <= 0.5 ) { target = $( options.to ),
2804 <= 0.5 ) { targetFixed = target.css( "position" ) === "fixed",
2805 <= 0.5 ) { body = $( "body" ),
2806 <= 0.5 ) { fixTop = targetFixed ? body.scrollTop() : 0,
2807 <= 0.5 ) { fixLeft = targetFixed ? body.scrollLeft() : 0,
2808 <= 0.5 ) { endPosition = target.offset(),
2809 <= 0.5 ) { animation = {
2810 <= 0.5 ) { top: endPosition.top - fixTop,
2811 <= 0.5 ) { left: endPosition.left - fixLeft,
2812 <= 0.5 ) { height: target.innerHeight(),
2813 <= 0.5 ) { width: target.innerWidth()
2814 <= 0.5 ) { },
2815 <= 0.5 ) { startPosition = element.offset(),
2816 <= 0.5 ) { transfer = $( "<div class='ui-effects-transfer'></div>" )
2817 <= 0.5 ) { .appendTo( "body" )
2818 <= 0.5 ) { .addClass( options.className )
2819 <= 0.5 ) { .css( {
2820 <= 0.5 ) { top: startPosition.top - fixTop,
2821 <= 0.5 ) { left: startPosition.left - fixLeft,
2822 <= 0.5 ) { height: element.innerHeight(),
2823 <= 0.5 ) { width: element.innerWidth(),
2824 <= 0.5 ) { position: targetFixed ? "fixed" : "absolute"
2825 <= 0.5 ) { } )
2826 <= 0.5 ) { .animate( animation, options.duration, options.easing, function() {
2827 <= 0.5 ) { transfer.remove();
2828 <= 0.5 ) { if ( $.isFunction( done ) ) {
2829 <= 0.5 ) { done();
2830 <= 0.5 ) { }
2831 <= 0.5 ) { } );
2832 <= 0.5 ) { }
2833 <= 0.5 ) {} );
2834  
2835 <= 0.5 ) {function parseClip( str, element ) {
2836 <= 0.5 ) { var outerWidth = element.outerWidth(),
2837 <= 0.5 ) { outerHeight = element.outerHeight(),
2838 <= 0.5 ) { clipRegex = /^rect\((-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto)\)$/,
2839 <= 0.5 ) { values = clipRegex.exec( str ) || [ "", 0, outerWidth, outerHeight, 0 ];
2840  
2841 <= 0.5 ) { return {
2842 <= 0.5 ) { top: parseFloat( values[ 1 ] ) || 0,
2843 <= 0.5 ) { right: values[ 2 ] === "auto" ? outerWidth : parseFloat( values[ 2 ] ),
2844 <= 0.5 ) { bottom: values[ 3 ] === "auto" ? outerHeight : parseFloat( values[ 3 ] ),
2845 <= 0.5 ) { left: parseFloat( values[ 4 ] ) || 0
2846 <= 0.5 ) { };
2847 <= 0.5 ) {}
2848  
2849 <= 0.5 ) {$.fx.step.clip = function( fx ) {
2850 <= 0.5 ) { if ( !fx.clipInit ) {
2851 <= 0.5 ) { fx.start = $( fx.elem ).cssClip();
2852 <= 0.5 ) { if ( typeof fx.end === "string" ) {
2853 <= 0.5 ) { fx.end = parseClip( fx.end, fx.elem );
2854 <= 0.5 ) { }
2855 <= 0.5 ) { fx.clipInit = true;
2856 <= 0.5 ) { }
2857  
2858 <= 0.5 ) { $( fx.elem ).cssClip( {
2859 <= 0.5 ) { top: fx.pos * ( fx.end.top - fx.start.top ) + fx.start.top,
2860 <= 0.5 ) { right: fx.pos * ( fx.end.right - fx.start.right ) + fx.start.right,
2861 <= 0.5 ) { bottom: fx.pos * ( fx.end.bottom - fx.start.bottom ) + fx.start.bottom,
2862 <= 0.5 ) { left: fx.pos * ( fx.end.left - fx.start.left ) + fx.start.left
2863 <= 0.5 ) { } );
2864 <= 0.5 ) {};
2865  
2866 <= 0.5 ) {} )();
2867  
2868 <= 0.5 ) {/******************************************************************************/
2869 <= 0.5 ) {/*********************************** EASING ***********************************/
2870 <= 0.5 ) {/******************************************************************************/
2871  
2872 <= 0.5 ) {( function() {
2873  
2874 <= 0.5 ) {// Based on easing equations from Robert Penner (http://www.robertpenner.com/easing)
2875  
2876 <= 0.5 ) {var baseEasings = {};
2877  
2878 <= 0.5 ) {$.each( [ "Quad", "Cubic", "Quart", "Quint", "Expo" ], function( i, name ) {
2879 <= 0.5 ) { baseEasings[ name ] = function( p ) {
2880 <= 0.5 ) { return Math.pow( p, i + 2 );
2881 <= 0.5 ) { };
2882 <= 0.5 ) {} );
2883  
2884 <= 0.5 ) {$.extend( baseEasings, {
2885 <= 0.5 ) { Sine: function( p ) {
2886 <= 0.5 ) { return 1 - Math.cos( p * Math.PI / 2 );
2887 <= 0.5 ) { },
2888 <= 0.5 ) { Circ: function( p ) {
2889 <= 0.5 ) { return 1 - Math.sqrt( 1 - p * p );
2890 <= 0.5 ) { },
2891 <= 0.5 ) { Elastic: function( p ) {
2892 <= 0.5 ) { return p === 0 || p === 1 ? p :
2893 <= 0.5 ) { -Math.pow( 2, 8 * ( p - 1 ) ) * Math.sin( ( ( p - 1 ) * 80 - 7.5 ) * Math.PI / 15 );
2894 <= 0.5 ) { },
2895 <= 0.5 ) { Back: function( p ) {
2896 <= 0.5 ) { return p * p * ( 3 * p - 2 );
2897 <= 0.5 ) { },
2898 <= 0.5 ) { Bounce: function( p ) {
2899 <= 0.5 ) { var pow2,
2900 <= 0.5 ) { bounce = 4;
2901  
2902 <= 0.5 ) { while ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) {}
2903 <= 0.5 ) { return 1 / Math.pow( 4, 3 - bounce ) - 7.5625 * Math.pow( ( pow2 * 3 - 2 ) / 22 - p, 2 );
2904 <= 0.5 ) { }
2905 <= 0.5 ) {} );
2906  
2907 <= 0.5 ) {$.each( baseEasings, function( name, easeIn ) {
2908 <= 0.5 ) { $.easing[ "easeIn" + name ] = easeIn;
2909 <= 0.5 ) { $.easing[ "easeOut" + name ] = function( p ) {
2910 <= 0.5 ) { return 1 - easeIn( 1 - p );
2911 <= 0.5 ) { };
2912 <= 0.5 ) { $.easing[ "easeInOut" + name ] = function( p ) {
2913 <= 0.5 ) { return p < 0.5 ?
2914 <= 0.5 ) {< 0.5 ? easeIn( p * 2 ) / 2 :
2915 <= 0.5 ) {< 0.5 ? 1 - easeIn( p * -2 + 2 ) / 2;
2916 <= 0.5 ) {< 0.5 ? };
2917 <= 0.5 ) {< 0.5 ?} );
2918  
2919 <= 0.5 ) {< 0.5 ?} )();
2920  
2921 <= 0.5 ) {< 0.5 ?var effect = $.effects;
2922  
2923  
2924 <= 0.5 ) {< 0.5 ?/*!
2925 <= 0.5 ) {< 0.5 ? * jQuery UI Effects Blind 1.12.1
2926 <= 0.5 ) {< 0.5 ? * http://jqueryui.com
2927 <= 0.5 ) {< 0.5 ? *
2928 <= 0.5 ) {< 0.5 ? * Copyright jQuery Foundation and other contributors
2929 <= 0.5 ) {< 0.5 ? * Released under the MIT license.
2930 <= 0.5 ) {< 0.5 ? * http://jquery.org/license
2931 <= 0.5 ) {< 0.5 ? */
2932  
2933 <= 0.5 ) {< 0.5 ?//>>label: Blind Effect
2934 <= 0.5 ) {< 0.5 ?//>>group: Effects
2935 <= 0.5 ) {< 0.5 ?//>>description: Blinds the element.
2936 <= 0.5 ) {< 0.5 ?//>>docs: http://api.jqueryui.com/blind-effect/
2937 <= 0.5 ) {< 0.5 ?//>>demos: http://jqueryui.com/effect/
2938  
2939  
2940  
2941 <= 0.5 ) {< 0.5 ?var effectsEffectBlind = $.effects.define( "blind", "hide", function( options, done ) {
2942 <= 0.5 ) {< 0.5 ? var map = {
2943 <= 0.5 ) {< 0.5 ? up: [ "bottom", "top" ],
2944 <= 0.5 ) {< 0.5 ? vertical: [ "bottom", "top" ],
2945 <= 0.5 ) {< 0.5 ? down: [ "top", "bottom" ],
2946 <= 0.5 ) {< 0.5 ? left: [ "right", "left" ],
2947 <= 0.5 ) {< 0.5 ? horizontal: [ "right", "left" ],
2948 <= 0.5 ) {< 0.5 ? right: [ "left", "right" ]
2949 <= 0.5 ) {< 0.5 ? },
2950 <= 0.5 ) {< 0.5 ? element = $( this ),
2951 <= 0.5 ) {< 0.5 ? direction = options.direction || "up",
2952 <= 0.5 ) {< 0.5 ? start = element.cssClip(),
2953 <= 0.5 ) {< 0.5 ? animate = { clip: $.extend( {}, start ) },
2954 <= 0.5 ) {< 0.5 ? placeholder = $.effects.createPlaceholder( element );
2955  
2956 <= 0.5 ) {< 0.5 ? animate.clip[ map[ direction ][ 0 ] ] = animate.clip[ map[ direction ][ 1 ] ];
2957  
2958 <= 0.5 ) {< 0.5 ? if ( options.mode === "show" ) {
2959 <= 0.5 ) {< 0.5 ? element.cssClip( animate.clip );
2960 <= 0.5 ) {< 0.5 ? if ( placeholder ) {
2961 <= 0.5 ) {< 0.5 ? placeholder.css( $.effects.clipToBox( animate ) );
2962 <= 0.5 ) {< 0.5 ? }
2963  
2964 <= 0.5 ) {< 0.5 ? animate.clip = start;
2965 <= 0.5 ) {< 0.5 ? }
2966  
2967 <= 0.5 ) {< 0.5 ? if ( placeholder ) {
2968 <= 0.5 ) {< 0.5 ? placeholder.animate( $.effects.clipToBox( animate ), options.duration, options.easing );
2969 <= 0.5 ) {< 0.5 ? }
2970  
2971 <= 0.5 ) {< 0.5 ? element.animate( animate, {
2972 <= 0.5 ) {< 0.5 ? queue: false,
2973 <= 0.5 ) {< 0.5 ? duration: options.duration,
2974 <= 0.5 ) {< 0.5 ? easing: options.easing,
2975 <= 0.5 ) {< 0.5 ? complete: done
2976 <= 0.5 ) {< 0.5 ? } );
2977 <= 0.5 ) {< 0.5 ?} );
2978  
2979  
2980 <= 0.5 ) {< 0.5 ?/*!
2981 <= 0.5 ) {< 0.5 ? * jQuery UI Effects Bounce 1.12.1
2982 <= 0.5 ) {< 0.5 ? * http://jqueryui.com
2983 <= 0.5 ) {< 0.5 ? *
2984 <= 0.5 ) {< 0.5 ? * Copyright jQuery Foundation and other contributors
2985 <= 0.5 ) {< 0.5 ? * Released under the MIT license.
2986 <= 0.5 ) {< 0.5 ? * http://jquery.org/license
2987 <= 0.5 ) {< 0.5 ? */
2988  
2989 <= 0.5 ) {< 0.5 ?//>>label: Bounce Effect
2990 <= 0.5 ) {< 0.5 ?//>>group: Effects
2991 <= 0.5 ) {< 0.5 ?//>>description: Bounces an element horizontally or vertically n times.
2992 <= 0.5 ) {< 0.5 ?//>>docs: http://api.jqueryui.com/bounce-effect/
2993 <= 0.5 ) {< 0.5 ?//>>demos: http://jqueryui.com/effect/
2994  
2995  
2996  
2997 <= 0.5 ) {< 0.5 ?var effectsEffectBounce = $.effects.define( "bounce", function( options, done ) {
2998 <= 0.5 ) {< 0.5 ? var upAnim, downAnim, refValue,
2999 <= 0.5 ) {< 0.5 ? element = $( this ),
3000  
3001 <= 0.5 ) {< 0.5 ? // Defaults:
3002 <= 0.5 ) {< 0.5 ? mode = options.mode,
3003 <= 0.5 ) {< 0.5 ? hide = mode === "hide",
3004 <= 0.5 ) {< 0.5 ? show = mode === "show",
3005 <= 0.5 ) {< 0.5 ? direction = options.direction || "up",
3006 <= 0.5 ) {< 0.5 ? distance = options.distance,
3007 <= 0.5 ) {< 0.5 ? times = options.times || 5,
3008  
3009 <= 0.5 ) {< 0.5 ? // Number of internal animations
3010 <= 0.5 ) {< 0.5 ? anims = times * 2 + ( show || hide ? 1 : 0 ),
3011 <= 0.5 ) {< 0.5 ? speed = options.duration / anims,
3012 <= 0.5 ) {< 0.5 ? easing = options.easing,
3013  
3014 <= 0.5 ) {< 0.5 ? // Utility:
3015 <= 0.5 ) {< 0.5 ? ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
3016 <= 0.5 ) {< 0.5 ? motion = ( direction === "up" || direction === "left" ),
3017 <= 0.5 ) {< 0.5 ? i = 0,
3018  
3019 <= 0.5 ) {< 0.5 ? queuelen = element.queue().length;
3020  
3021 <= 0.5 ) {< 0.5 ? $.effects.createPlaceholder( element );
3022  
3023 <= 0.5 ) {< 0.5 ? refValue = element.css( ref );
3024  
3025 <= 0.5 ) {< 0.5 ? // Default distance for the BIGGEST bounce is the outer Distance / 3
3026 <= 0.5 ) {< 0.5 ? if ( !distance ) {
3027 <= 0.5 ) {< 0.5 ? distance = element[ ref === "top" ? "outerHeight" : "outerWidth" ]() / 3;
3028 <= 0.5 ) {< 0.5 ? }
3029  
3030 <= 0.5 ) {< 0.5 ? if ( show ) {
3031 <= 0.5 ) {< 0.5 ? downAnim = { opacity: 1 };
3032 <= 0.5 ) {< 0.5 ? downAnim[ ref ] = refValue;
3033  
3034 <= 0.5 ) {< 0.5 ? // If we are showing, force opacity 0 and set the initial position
3035 <= 0.5 ) {< 0.5 ? // then do the "first" animation
3036 <= 0.5 ) {< 0.5 ? element
3037 <= 0.5 ) {< 0.5 ? .css( "opacity", 0 )
3038 <= 0.5 ) {< 0.5 ? .css( ref, motion ? -distance * 2 : distance * 2 )
3039 <= 0.5 ) {< 0.5 ? .animate( downAnim, speed, easing );
3040 <= 0.5 ) {< 0.5 ? }
3041  
3042 <= 0.5 ) {< 0.5 ? // Start at the smallest distance if we are hiding
3043 <= 0.5 ) {< 0.5 ? if ( hide ) {
3044 <= 0.5 ) {< 0.5 ? distance = distance / Math.pow( 2, times - 1 );
3045 <= 0.5 ) {< 0.5 ? }
3046  
3047 <= 0.5 ) {< 0.5 ? downAnim = {};
3048 <= 0.5 ) {< 0.5 ? downAnim[ ref ] = refValue;
3049  
3050 <= 0.5 ) {< 0.5 ? // Bounces up/down/left/right then back to 0 -- times * 2 animations happen here
3051 <= 0.5 ) {< 0.5 ? for ( ; i < times; i++ ) {
3052 <= 0.5 ) {< 0.5 ? upAnim = {};
3053 <= 0.5 ) {< 0.5 ? upAnim[ ref ] = ( motion ? "-=" : "+=" ) + distance;
3054  
3055 <= 0.5 ) {< 0.5 ? element
3056 <= 0.5 ) {< 0.5 ? .animate( upAnim, speed, easing )
3057 <= 0.5 ) {< 0.5 ? .animate( downAnim, speed, easing );
3058  
3059 <= 0.5 ) {< 0.5 ? distance = hide ? distance * 2 : distance / 2;
3060 <= 0.5 ) {< 0.5 ? }
3061  
3062 <= 0.5 ) {< 0.5 ? // Last Bounce when Hiding
3063 <= 0.5 ) {< 0.5 ? if ( hide ) {
3064 <= 0.5 ) {< 0.5 ? upAnim = { opacity: 0 };
3065 <= 0.5 ) {< 0.5 ? upAnim[ ref ] = ( motion ? "-=" : "+=" ) + distance;
3066  
3067 <= 0.5 ) {< 0.5 ? element.animate( upAnim, speed, easing );
3068 <= 0.5 ) {< 0.5 ? }
3069  
3070 <= 0.5 ) {< 0.5 ? element.queue( done );
3071  
3072 <= 0.5 ) {< 0.5 ? $.effects.unshift( element, queuelen, anims + 1 );
3073 <= 0.5 ) {< 0.5 ?} );
3074  
3075  
3076 <= 0.5 ) {< 0.5 ?/*!
3077 <= 0.5 ) {< 0.5 ? * jQuery UI Effects Clip 1.12.1
3078 <= 0.5 ) {< 0.5 ? * http://jqueryui.com
3079 <= 0.5 ) {< 0.5 ? *
3080 <= 0.5 ) {< 0.5 ? * Copyright jQuery Foundation and other contributors
3081 <= 0.5 ) {< 0.5 ? * Released under the MIT license.
3082 <= 0.5 ) {< 0.5 ? * http://jquery.org/license
3083 <= 0.5 ) {< 0.5 ? */
3084  
3085 <= 0.5 ) {< 0.5 ?//>>label: Clip Effect
3086 <= 0.5 ) {< 0.5 ?//>>group: Effects
3087 <= 0.5 ) {< 0.5 ?//>>description: Clips the element on and off like an old TV.
3088 <= 0.5 ) {< 0.5 ?//>>docs: http://api.jqueryui.com/clip-effect/
3089 <= 0.5 ) {< 0.5 ?//>>demos: http://jqueryui.com/effect/
3090  
3091  
3092  
3093 <= 0.5 ) {< 0.5 ?var effectsEffectClip = $.effects.define( "clip", "hide", function( options, done ) {
3094 <= 0.5 ) {< 0.5 ? var start,
3095 <= 0.5 ) {< 0.5 ? animate = {},
3096 <= 0.5 ) {< 0.5 ? element = $( this ),
3097 <= 0.5 ) {< 0.5 ? direction = options.direction || "vertical",
3098 <= 0.5 ) {< 0.5 ? both = direction === "both",
3099 <= 0.5 ) {< 0.5 ? horizontal = both || direction === "horizontal",
3100 <= 0.5 ) {< 0.5 ? vertical = both || direction === "vertical";
3101  
3102 <= 0.5 ) {< 0.5 ? start = element.cssClip();
3103 <= 0.5 ) {< 0.5 ? animate.clip = {
3104 <= 0.5 ) {< 0.5 ? top: vertical ? ( start.bottom - start.top ) / 2 : start.top,
3105 <= 0.5 ) {< 0.5 ? right: horizontal ? ( start.right - start.left ) / 2 : start.right,
3106 <= 0.5 ) {< 0.5 ? bottom: vertical ? ( start.bottom - start.top ) / 2 : start.bottom,
3107 <= 0.5 ) {< 0.5 ? left: horizontal ? ( start.right - start.left ) / 2 : start.left
3108 <= 0.5 ) {< 0.5 ? };
3109  
3110 <= 0.5 ) {< 0.5 ? $.effects.createPlaceholder( element );
3111  
3112 <= 0.5 ) {< 0.5 ? if ( options.mode === "show" ) {
3113 <= 0.5 ) {< 0.5 ? element.cssClip( animate.clip );
3114 <= 0.5 ) {< 0.5 ? animate.clip = start;
3115 <= 0.5 ) {< 0.5 ? }
3116  
3117 <= 0.5 ) {< 0.5 ? element.animate( animate, {
3118 <= 0.5 ) {< 0.5 ? queue: false,
3119 <= 0.5 ) {< 0.5 ? duration: options.duration,
3120 <= 0.5 ) {< 0.5 ? easing: options.easing,
3121 <= 0.5 ) {< 0.5 ? complete: done
3122 <= 0.5 ) {< 0.5 ? } );
3123  
3124 <= 0.5 ) {< 0.5 ?} );
3125  
3126  
3127 <= 0.5 ) {< 0.5 ?/*!
3128 <= 0.5 ) {< 0.5 ? * jQuery UI Effects Drop 1.12.1
3129 <= 0.5 ) {< 0.5 ? * http://jqueryui.com
3130 <= 0.5 ) {< 0.5 ? *
3131 <= 0.5 ) {< 0.5 ? * Copyright jQuery Foundation and other contributors
3132 <= 0.5 ) {< 0.5 ? * Released under the MIT license.
3133 <= 0.5 ) {< 0.5 ? * http://jquery.org/license
3134 <= 0.5 ) {< 0.5 ? */
3135  
3136 <= 0.5 ) {< 0.5 ?//>>label: Drop Effect
3137 <= 0.5 ) {< 0.5 ?//>>group: Effects
3138 <= 0.5 ) {< 0.5 ?//>>description: Moves an element in one direction and hides it at the same time.
3139 <= 0.5 ) {< 0.5 ?//>>docs: http://api.jqueryui.com/drop-effect/
3140 <= 0.5 ) {< 0.5 ?//>>demos: http://jqueryui.com/effect/
3141  
3142  
3143  
3144 <= 0.5 ) {< 0.5 ?var effectsEffectDrop = $.effects.define( "drop", "hide", function( options, done ) {
3145  
3146 <= 0.5 ) {< 0.5 ? var distance,
3147 <= 0.5 ) {< 0.5 ? element = $( this ),
3148 <= 0.5 ) {< 0.5 ? mode = options.mode,
3149 <= 0.5 ) {< 0.5 ? show = mode === "show",
3150 <= 0.5 ) {< 0.5 ? direction = options.direction || "left",
3151 <= 0.5 ) {< 0.5 ? ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
3152 <= 0.5 ) {< 0.5 ? motion = ( direction === "up" || direction === "left" ) ? "-=" : "+=",
3153 <= 0.5 ) {< 0.5 ? oppositeMotion = ( motion === "+=" ) ? "-=" : "+=",
3154 <= 0.5 ) {< 0.5 ? animation = {
3155 <= 0.5 ) {< 0.5 ? opacity: 0
3156 <= 0.5 ) {< 0.5 ? };
3157  
3158 <= 0.5 ) {< 0.5 ? $.effects.createPlaceholder( element );
3159  
3160 <= 0.5 ) {< 0.5 ? distance = options.distance ||
3161 <= 0.5 ) {< 0.5 ? element[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ) / 2;
3162  
3163 <= 0.5 ) {< 0.5 ? animation[ ref ] = motion + distance;
3164  
3165 <= 0.5 ) {< 0.5 ? if ( show ) {
3166 <= 0.5 ) {< 0.5 ? element.css( animation );
3167  
3168 <= 0.5 ) {< 0.5 ? animation[ ref ] = oppositeMotion + distance;
3169 <= 0.5 ) {< 0.5 ? animation.opacity = 1;
3170 <= 0.5 ) {< 0.5 ? }
3171  
3172 <= 0.5 ) {< 0.5 ? // Animate
3173 <= 0.5 ) {< 0.5 ? element.animate( animation, {
3174 <= 0.5 ) {< 0.5 ? queue: false,
3175 <= 0.5 ) {< 0.5 ? duration: options.duration,
3176 <= 0.5 ) {< 0.5 ? easing: options.easing,
3177 <= 0.5 ) {< 0.5 ? complete: done
3178 <= 0.5 ) {< 0.5 ? } );
3179 <= 0.5 ) {< 0.5 ?} );
3180  
3181  
3182 <= 0.5 ) {< 0.5 ?/*!
3183 <= 0.5 ) {< 0.5 ? * jQuery UI Effects Explode 1.12.1
3184 <= 0.5 ) {< 0.5 ? * http://jqueryui.com
3185 <= 0.5 ) {< 0.5 ? *
3186 <= 0.5 ) {< 0.5 ? * Copyright jQuery Foundation and other contributors
3187 <= 0.5 ) {< 0.5 ? * Released under the MIT license.
3188 <= 0.5 ) {< 0.5 ? * http://jquery.org/license
3189 <= 0.5 ) {< 0.5 ? */
3190  
3191 <= 0.5 ) {< 0.5 ?//>>label: Explode Effect
3192 <= 0.5 ) {< 0.5 ?//>>group: Effects
3193 <= 0.5 ) {< 0.5 ?// jscs:disable maximumLineLength
3194 <= 0.5 ) {< 0.5 ?//>>description: Explodes an element in all directions into n pieces. Implodes an element to its original wholeness.
3195 <= 0.5 ) {< 0.5 ?// jscs:enable maximumLineLength
3196 <= 0.5 ) {< 0.5 ?//>>docs: http://api.jqueryui.com/explode-effect/
3197 <= 0.5 ) {< 0.5 ?//>>demos: http://jqueryui.com/effect/
3198  
3199  
3200  
3201 <= 0.5 ) {< 0.5 ?var effectsEffectExplode = $.effects.define( "explode", "hide", function( options, done ) {
3202  
3203 <= 0.5 ) {< 0.5 ? var i, j, left, top, mx, my,
3204 <= 0.5 ) {< 0.5 ? rows = options.pieces ? Math.round( Math.sqrt( options.pieces ) ) : 3,
3205 <= 0.5 ) {< 0.5 ? cells = rows,
3206 <= 0.5 ) {< 0.5 ? element = $( this ),
3207 <= 0.5 ) {< 0.5 ? mode = options.mode,
3208 <= 0.5 ) {< 0.5 ? show = mode === "show",
3209  
3210 <= 0.5 ) {< 0.5 ? // Show and then visibility:hidden the element before calculating offset
3211 <= 0.5 ) {< 0.5 ? offset = element.show().css( "visibility", "hidden" ).offset(),
3212  
3213 <= 0.5 ) {< 0.5 ? // Width and height of a piece
3214 <= 0.5 ) {< 0.5 ? width = Math.ceil( element.outerWidth() / cells ),
3215 <= 0.5 ) {< 0.5 ? height = Math.ceil( element.outerHeight() / rows ),
3216 <= 0.5 ) {< 0.5 ? pieces = [];
3217  
3218 <= 0.5 ) {< 0.5 ? // Children animate complete:
3219 <= 0.5 ) {< 0.5 ? function childComplete() {
3220 <= 0.5 ) {< 0.5 ? pieces.push( this );
3221 <= 0.5 ) {< 0.5 ? if ( pieces.length === rows * cells ) {
3222 <= 0.5 ) {< 0.5 ? animComplete();
3223 <= 0.5 ) {< 0.5 ? }
3224 <= 0.5 ) {< 0.5 ? }
3225  
3226 <= 0.5 ) {< 0.5 ? // Clone the element for each row and cell.
3227 <= 0.5 ) {< 0.5 ? for ( i = 0; i < rows; i++ ) { // ===>
3228 <= 0.5 ) {< 0.5 ? top = offset.top + i * height;
3229 <= 0.5 ) {< 0.5 ? my = i - ( rows - 1 ) / 2;
3230  
3231 <= 0.5 ) {< 0.5 ? for ( j = 0; j < cells; j++ ) { // |||
3232 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / left = offset.left + j * width;
3233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / mx = j - ( cells - 1 ) / 2;
3234  
3235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Create a clone of the now hidden main element that will be absolute positioned
3236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // within a wrapper div off the -left and -top equal to size of our pieces
3237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / element
3238 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .clone()
3239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .appendTo( "body" )
3240 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .wrap( "<div></div>" )
3241 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .css( {
3242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / position: "absolute",
3243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / visibility: "visible",
3244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / left: -j * width,
3245 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / top: -i * height
3246 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / } )
3247  
3248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Select the wrapper - make it overflow: hidden and absolute positioned based on
3249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // where the original was located +left and +top equal to the size of pieces
3250 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .parent()
3251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .addClass( "ui-effects-explode" )
3252 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .css( {
3253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / position: "absolute",
3254 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / overflow: "hidden",
3255 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / width: width,
3256 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / height: height,
3257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / left: left + ( show ? mx * width : 0 ),
3258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / top: top + ( show ? my * height : 0 ),
3259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / opacity: show ? 0 : 1
3260 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / } )
3261 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .animate( {
3262 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / left: left + ( show ? 0 : mx * width ),
3263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / top: top + ( show ? 0 : my * height ),
3264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / opacity: show ? 1 : 0
3265 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }, options.duration || 500, options.easing, childComplete );
3266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3268  
3269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / function animComplete() {
3270 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / element.css( {
3271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / visibility: "visible"
3272 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / } );
3273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / $( pieces ).remove();
3274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / done();
3275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /} );
3277  
3278  
3279 <= 0.5 ) {< 0.5 ?< cells; j++ ) { //*!
3280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * jQuery UI Effects Fade 1.12.1
3281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jqueryui.com
3282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / *
3283 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Copyright jQuery Foundation and other contributors
3284 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Released under the MIT license.
3285 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jquery.org/license
3286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / */
3287  
3288 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>label: Fade Effect
3289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>group: Effects
3290 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>description: Fades the element.
3291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>docs: http://api.jqueryui.com/fade-effect/
3292 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>demos: http://jqueryui.com/effect/
3293  
3294  
3295  
3296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /var effectsEffectFade = $.effects.define( "fade", "toggle", function( options, done ) {
3297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / var show = options.mode === "show";
3298  
3299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / $( this )
3300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .css( "opacity", show ? 0 : 1 )
3301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .animate( {
3302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / opacity: show ? 1 : 0
3303 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }, {
3304 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / queue: false,
3305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / duration: options.duration,
3306 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / easing: options.easing,
3307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / complete: done
3308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / } );
3309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /} );
3310  
3311  
3312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { //*!
3313 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * jQuery UI Effects Fold 1.12.1
3314 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jqueryui.com
3315 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / *
3316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Copyright jQuery Foundation and other contributors
3317 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Released under the MIT license.
3318 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jquery.org/license
3319 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / */
3320  
3321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>label: Fold Effect
3322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>group: Effects
3323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>description: Folds an element first horizontally and then vertically.
3324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>docs: http://api.jqueryui.com/fold-effect/
3325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>demos: http://jqueryui.com/effect/
3326  
3327  
3328  
3329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /var effectsEffectFold = $.effects.define( "fold", "hide", function( options, done ) {
3330  
3331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Create element
3332 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / var element = $( this ),
3333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / mode = options.mode,
3334 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / show = mode === "show",
3335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / hide = mode === "hide",
3336 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / size = options.size || 15,
3337 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / percent = /([0-9]+)%/.exec( size ),
3338 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / horizFirst = !!options.horizFirst,
3339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / ref = horizFirst ? [ "right", "bottom" ] : [ "bottom", "right" ],
3340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / duration = options.duration / 2,
3341  
3342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / placeholder = $.effects.createPlaceholder( element ),
3343  
3344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / start = element.cssClip(),
3345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / animation1 = { clip: $.extend( {}, start ) },
3346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / animation2 = { clip: $.extend( {}, start ) },
3347  
3348 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / distance = [ start[ ref[ 0 ] ], start[ ref[ 1 ] ] ],
3349  
3350 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / queuelen = element.queue().length;
3351  
3352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( percent ) {
3353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / size = parseInt( percent[ 1 ], 10 ) / 100 * distance[ hide ? 0 : 1 ];
3354 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3355 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / animation1.clip[ ref[ 0 ] ] = size;
3356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / animation2.clip[ ref[ 0 ] ] = size;
3357 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / animation2.clip[ ref[ 1 ] ] = 0;
3358  
3359 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( show ) {
3360 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / element.cssClip( animation2.clip );
3361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( placeholder ) {
3362 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / placeholder.css( $.effects.clipToBox( animation2 ) );
3363 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3364  
3365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / animation2.clip = start;
3366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3367  
3368 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Animate
3369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / element
3370 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .queue( function( next ) {
3371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( placeholder ) {
3372 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / placeholder
3373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .animate( $.effects.clipToBox( animation1 ), duration, options.easing )
3374 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .animate( $.effects.clipToBox( animation2 ), duration, options.easing );
3375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3376  
3377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / next();
3378 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / } )
3379 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .animate( animation1, duration, options.easing )
3380 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .animate( animation2, duration, options.easing )
3381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .queue( done );
3382  
3383 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / $.effects.unshift( element, queuelen, 4 );
3384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /} );
3385  
3386  
3387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { //*!
3388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * jQuery UI Effects Highlight 1.12.1
3389 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jqueryui.com
3390 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / *
3391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Copyright jQuery Foundation and other contributors
3392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Released under the MIT license.
3393 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jquery.org/license
3394 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / */
3395  
3396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>label: Highlight Effect
3397 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>group: Effects
3398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>description: Highlights the background of an element in a defined color for a custom duration.
3399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>docs: http://api.jqueryui.com/highlight-effect/
3400 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>demos: http://jqueryui.com/effect/
3401  
3402  
3403  
3404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /var effectsEffectHighlight = $.effects.define( "highlight", "show", function( options, done ) {
3405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / var element = $( this ),
3406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / animation = {
3407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / backgroundColor: element.css( "backgroundColor" )
3408 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / };
3409  
3410 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( options.mode === "hide" ) {
3411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / animation.opacity = 0;
3412 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3413  
3414 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / $.effects.saveStyle( element );
3415  
3416 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / element
3417 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .css( {
3418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / backgroundImage: "none",
3419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / backgroundColor: options.color || "#ffff99"
3420 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / } )
3421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .animate( animation, {
3422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / queue: false,
3423 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / duration: options.duration,
3424 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / easing: options.easing,
3425 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / complete: done
3426 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / } );
3427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /} );
3428  
3429  
3430 <= 0.5 ) {< 0.5 ?< cells; j++ ) { //*!
3431 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * jQuery UI Effects Size 1.12.1
3432 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jqueryui.com
3433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / *
3434 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Copyright jQuery Foundation and other contributors
3435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Released under the MIT license.
3436 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jquery.org/license
3437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / */
3438  
3439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>label: Size Effect
3440 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>group: Effects
3441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>description: Resize an element to a specified width and height.
3442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>docs: http://api.jqueryui.com/size-effect/
3443 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>demos: http://jqueryui.com/effect/
3444  
3445  
3446  
3447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /var effectsEffectSize = $.effects.define( "size", function( options, done ) {
3448  
3449 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Create element
3450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / var baseline, factor, temp,
3451 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / element = $( this ),
3452  
3453 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Copy for children
3454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / cProps = [ "fontSize" ],
3455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / vProps = [ "borderTopWidth", "borderBottomWidth", "paddingTop", "paddingBottom" ],
3456 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / hProps = [ "borderLeftWidth", "borderRightWidth", "paddingLeft", "paddingRight" ],
3457  
3458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Set options
3459 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / mode = options.mode,
3460 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / restore = mode !== "effect",
3461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / scale = options.scale || "both",
3462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / origin = options.origin || [ "middle", "center" ],
3463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / position = element.css( "position" ),
3464 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / pos = element.position(),
3465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / original = $.effects.scaledDimensions( element ),
3466 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / from = options.from || original,
3467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / to = options.to || $.effects.scaledDimensions( element, 0 );
3468  
3469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / $.effects.createPlaceholder( element );
3470  
3471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( mode === "show" ) {
3472 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / temp = from;
3473 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / from = to;
3474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / to = temp;
3475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3476  
3477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Set scaling factor
3478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / factor = {
3479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / from: {
3480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / y: from.height / original.height,
3481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / x: from.width / original.width
3482 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / },
3483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / to: {
3484 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / y: to.height / original.height,
3485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / x: to.width / original.width
3486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3487 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / };
3488  
3489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Scale the css box
3490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( scale === "box" || scale === "both" ) {
3491  
3492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Vertical props scaling
3493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( factor.from.y !== factor.to.y ) {
3494 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / from = $.effects.setTransition( element, vProps, factor.from.y, from );
3495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / to = $.effects.setTransition( element, vProps, factor.to.y, to );
3496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3497  
3498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Horizontal props scaling
3499 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( factor.from.x !== factor.to.x ) {
3500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / from = $.effects.setTransition( element, hProps, factor.from.x, from );
3501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / to = $.effects.setTransition( element, hProps, factor.to.x, to );
3502 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3503 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3504  
3505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Scale the content
3506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( scale === "content" || scale === "both" ) {
3507  
3508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Vertical props scaling
3509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( factor.from.y !== factor.to.y ) {
3510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / from = $.effects.setTransition( element, cProps, factor.from.y, from );
3511 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / to = $.effects.setTransition( element, cProps, factor.to.y, to );
3512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3514  
3515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Adjust the position properties based on the provided origin points
3516 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( origin ) {
3517 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / baseline = $.effects.getBaseline( origin, original );
3518 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / from.top = ( original.outerHeight - from.outerHeight ) * baseline.y + pos.top;
3519 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / from.left = ( original.outerWidth - from.outerWidth ) * baseline.x + pos.left;
3520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / to.top = ( original.outerHeight - to.outerHeight ) * baseline.y + pos.top;
3521 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / to.left = ( original.outerWidth - to.outerWidth ) * baseline.x + pos.left;
3522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3523 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / element.css( from );
3524  
3525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Animate the children if desired
3526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( scale === "content" || scale === "both" ) {
3527  
3528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / vProps = vProps.concat( [ "marginTop", "marginBottom" ] ).concat( cProps );
3529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / hProps = hProps.concat( [ "marginLeft", "marginRight" ] );
3530  
3531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Only animate children with width attributes specified
3532 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // TODO: is this right? should we include anything with css width specified as well
3533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / element.find( "*[width]" ).each( function() {
3534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / var child = $( this ),
3535 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / childOriginal = $.effects.scaledDimensions( child ),
3536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / childFrom = {
3537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / height: childOriginal.height * factor.from.y,
3538 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / width: childOriginal.width * factor.from.x,
3539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / outerHeight: childOriginal.outerHeight * factor.from.y,
3540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / outerWidth: childOriginal.outerWidth * factor.from.x
3541 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / },
3542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / childTo = {
3543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / height: childOriginal.height * factor.to.y,
3544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / width: childOriginal.width * factor.to.x,
3545 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / outerHeight: childOriginal.height * factor.to.y,
3546 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / outerWidth: childOriginal.width * factor.to.x
3547 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / };
3548  
3549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Vertical props scaling
3550 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( factor.from.y !== factor.to.y ) {
3551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / childFrom = $.effects.setTransition( child, vProps, factor.from.y, childFrom );
3552 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / childTo = $.effects.setTransition( child, vProps, factor.to.y, childTo );
3553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3554  
3555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Horizontal props scaling
3556 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( factor.from.x !== factor.to.x ) {
3557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / childFrom = $.effects.setTransition( child, hProps, factor.from.x, childFrom );
3558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / childTo = $.effects.setTransition( child, hProps, factor.to.x, childTo );
3559 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3560  
3561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( restore ) {
3562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / $.effects.saveStyle( child );
3563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3564  
3565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Animate children
3566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / child.css( childFrom );
3567 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / child.animate( childTo, options.duration, options.easing, function() {
3568  
3569 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Restore children
3570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( restore ) {
3571 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / $.effects.restoreStyle( child );
3572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3573 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / } );
3574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / } );
3575 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3576  
3577 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Animate
3578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / element.animate( to, {
3579 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / queue: false,
3580 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / duration: options.duration,
3581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / easing: options.easing,
3582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / complete: function() {
3583  
3584 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / var offset = element.offset();
3585  
3586 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( to.opacity === 0 ) {
3587 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / element.css( "opacity", from.opacity );
3588 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3589  
3590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( !restore ) {
3591 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / element
3592 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .css( "position", position === "static" ? "relative" : position )
3593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / .offset( offset );
3594  
3595 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Need to save style here so that automatic style restoration
3596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // doesn't restore to the original styles from before the animation.
3597 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / $.effects.saveStyle( element );
3598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3599  
3600 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / done();
3601 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / } );
3603  
3604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /} );
3605  
3606  
3607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { //*!
3608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * jQuery UI Effects Scale 1.12.1
3609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jqueryui.com
3610 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / *
3611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Copyright jQuery Foundation and other contributors
3612 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Released under the MIT license.
3613 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jquery.org/license
3614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / */
3615  
3616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>label: Scale Effect
3617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>group: Effects
3618 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>description: Grows or shrinks an element and its content.
3619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>docs: http://api.jqueryui.com/scale-effect/
3620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>demos: http://jqueryui.com/effect/
3621  
3622  
3623  
3624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /var effectsEffectScale = $.effects.define( "scale", function( options, done ) {
3625  
3626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Create element
3627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / var el = $( this ),
3628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / mode = options.mode,
3629 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / percent = parseInt( options.percent, 10 ) ||
3630 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / ( parseInt( options.percent, 10 ) === 0 ? 0 : ( mode !== "effect" ? 0 : 100 ) ),
3631  
3632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / newOptions = $.extend( true, {
3633 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / from: $.effects.scaledDimensions( el ),
3634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / to: $.effects.scaledDimensions( el, percent, options.direction || "both" ),
3635 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / origin: options.origin || [ "middle", "center" ]
3636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }, options );
3637  
3638 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Fade option to support puff
3639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( options.fade ) {
3640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / newOptions.from.opacity = 1;
3641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / newOptions.to.opacity = 0;
3642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3643  
3644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / $.effects.effect.size.call( this, newOptions, done );
3645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /} );
3646  
3647  
3648 <= 0.5 ) {< 0.5 ?< cells; j++ ) { //*!
3649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * jQuery UI Effects Puff 1.12.1
3650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jqueryui.com
3651 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / *
3652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Copyright jQuery Foundation and other contributors
3653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Released under the MIT license.
3654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jquery.org/license
3655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / */
3656  
3657 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>label: Puff Effect
3658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>group: Effects
3659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>description: Creates a puff effect by scaling the element up and hiding it at the same time.
3660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>docs: http://api.jqueryui.com/puff-effect/
3661 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>demos: http://jqueryui.com/effect/
3662  
3663  
3664  
3665 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /var effectsEffectPuff = $.effects.define( "puff", "hide", function( options, done ) {
3666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / var newOptions = $.extend( true, {}, options, {
3667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / fade: true,
3668 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / percent: parseInt( options.percent, 10 ) || 150
3669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / } );
3670  
3671 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / $.effects.effect.scale.call( this, newOptions, done );
3672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /} );
3673  
3674  
3675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { //*!
3676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * jQuery UI Effects Pulsate 1.12.1
3677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jqueryui.com
3678 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / *
3679 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Copyright jQuery Foundation and other contributors
3680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * Released under the MIT license.
3681 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / * http://jquery.org/license
3682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / */
3683  
3684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>label: Pulsate Effect
3685 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>group: Effects
3686 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>description: Pulsates an element n times by changing the opacity to zero and back.
3687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>docs: http://api.jqueryui.com/pulsate-effect/
3688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { ///>>demos: http://jqueryui.com/effect/
3689  
3690  
3691  
3692 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /var effectsEffectPulsate = $.effects.define( "pulsate", "show", function( options, done ) {
3693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / var element = $( this ),
3694 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / mode = options.mode,
3695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / show = mode === "show",
3696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / hide = mode === "hide",
3697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / showhide = show || hide,
3698  
3699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Showing or hiding leaves off the "last" animation
3700 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / anims = ( ( options.times || 5 ) * 2 ) + ( showhide ? 1 : 0 ),
3701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / duration = options.duration / anims,
3702 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / animateTo = 0,
3703 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / i = 1,
3704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / queuelen = element.queue().length;
3705  
3706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / if ( show || !element.is( ":visible" ) ) {
3707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / element.css( "opacity", 0 ).show();
3708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / animateTo = 1;
3709 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / }
3710  
3711 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / // Anims - 1 opacity "toggles"
3712 <= 0.5 ) {< 0.5 ?< cells; j++ ) { / for ( ; i < anims; i++ ) {
3713 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { element.animate( { opacity: animateTo }, duration, options.easing );
3714 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { animateTo = 1 - animateTo;
3715 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
3716  
3717 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { element.animate( { opacity: animateTo }, duration, options.easing );
3718  
3719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { element.queue( done );
3720  
3721 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { $.effects.unshift( element, queuelen, anims + 1 );
3722 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {} );
3723  
3724  
3725 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {/*!
3726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * jQuery UI Effects Shake 1.12.1
3727 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jqueryui.com
3728 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { *
3729 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Copyright jQuery Foundation and other contributors
3730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Released under the MIT license.
3731 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jquery.org/license
3732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { */
3733  
3734 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>label: Shake Effect
3735 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>group: Effects
3736 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>description: Shakes an element horizontally or vertically n times.
3737 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>docs: http://api.jqueryui.com/shake-effect/
3738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>demos: http://jqueryui.com/effect/
3739  
3740  
3741  
3742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {var effectsEffectShake = $.effects.define( "shake", function( options, done ) {
3743  
3744 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { var i = 1,
3745 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { element = $( this ),
3746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { direction = options.direction || "left",
3747 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { distance = options.distance || 20,
3748 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { times = options.times || 3,
3749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { anims = times * 2 + 1,
3750 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { speed = Math.round( options.duration / anims ),
3751 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
3752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { positiveMotion = ( direction === "up" || direction === "left" ),
3753 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { animation = {},
3754 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { animation1 = {},
3755 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { animation2 = {},
3756  
3757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { queuelen = element.queue().length;
3758  
3759 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { $.effects.createPlaceholder( element );
3760  
3761 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // Animation
3762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { animation[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance;
3763 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { animation1[ ref ] = ( positiveMotion ? "+=" : "-=" ) + distance * 2;
3764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { animation2[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance * 2;
3765  
3766 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // Animate
3767 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { element.animate( animation, speed, options.easing );
3768  
3769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // Shakes
3770 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { for ( ; i < times; i++ ) {
3771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { element
3772 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { .animate( animation1, speed, options.easing )
3773 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { .animate( animation2, speed, options.easing );
3774 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
3775  
3776 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { element
3777 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { .animate( animation1, speed, options.easing )
3778 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { .animate( animation, speed / 2, options.easing )
3779 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { .queue( done );
3780  
3781 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { $.effects.unshift( element, queuelen, anims + 1 );
3782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {} );
3783  
3784  
3785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {/*!
3786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * jQuery UI Effects Slide 1.12.1
3787 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jqueryui.com
3788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { *
3789 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Copyright jQuery Foundation and other contributors
3790 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Released under the MIT license.
3791 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jquery.org/license
3792 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { */
3793  
3794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>label: Slide Effect
3795 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>group: Effects
3796 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>description: Slides an element in and out of the viewport.
3797 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>docs: http://api.jqueryui.com/slide-effect/
3798 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>demos: http://jqueryui.com/effect/
3799  
3800  
3801  
3802 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {var effectsEffectSlide = $.effects.define( "slide", "show", function( options, done ) {
3803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { var startClip, startRef,
3804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { element = $( this ),
3805 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { map = {
3806 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { up: [ "bottom", "top" ],
3807 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { down: [ "top", "bottom" ],
3808 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { left: [ "right", "left" ],
3809 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { right: [ "left", "right" ]
3810 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { },
3811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { mode = options.mode,
3812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { direction = options.direction || "left",
3813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
3814 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { positiveMotion = ( direction === "up" || direction === "left" ),
3815 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { distance = options.distance ||
3816 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { element[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ),
3817 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { animation = {};
3818  
3819 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { $.effects.createPlaceholder( element );
3820  
3821 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { startClip = element.cssClip();
3822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { startRef = element.position()[ ref ];
3823  
3824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // Define hide animation
3825 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { animation[ ref ] = ( positiveMotion ? -1 : 1 ) * distance + startRef;
3826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { animation.clip = element.cssClip();
3827 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { animation.clip[ map[ direction ][ 1 ] ] = animation.clip[ map[ direction ][ 0 ] ];
3828  
3829 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // Reverse the animation if we're showing
3830 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( mode === "show" ) {
3831 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { element.cssClip( animation.clip );
3832 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { element.css( ref, animation[ ref ] );
3833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { animation.clip = startClip;
3834 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { animation[ ref ] = startRef;
3835 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
3836  
3837 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // Actually animate
3838 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { element.animate( animation, {
3839 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { queue: false,
3840 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { duration: options.duration,
3841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { easing: options.easing,
3842 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { complete: done
3843 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { } );
3844 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {} );
3845  
3846  
3847 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {/*!
3848 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * jQuery UI Effects Transfer 1.12.1
3849 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jqueryui.com
3850 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { *
3851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Copyright jQuery Foundation and other contributors
3852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Released under the MIT license.
3853 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jquery.org/license
3854 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { */
3855  
3856 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>label: Transfer Effect
3857 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>group: Effects
3858 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>description: Displays a transfer effect from one element to another.
3859 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>docs: http://api.jqueryui.com/transfer-effect/
3860 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>demos: http://jqueryui.com/effect/
3861  
3862  
3863  
3864 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {var effect;
3865 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {if ( $.uiBackCompat !== false ) {
3866 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { effect = $.effects.define( "transfer", function( options, done ) {
3867 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { $( this ).transfer( options, done );
3868 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { } );
3869 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {}
3870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {var effectsEffectTransfer = effect;
3871  
3872  
3873 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {/*!
3874 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * jQuery UI Focusable 1.12.1
3875 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jqueryui.com
3876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { *
3877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Copyright jQuery Foundation and other contributors
3878 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Released under the MIT license.
3879 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jquery.org/license
3880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { */
3881  
3882 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>label: :focusable Selector
3883 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>group: Core
3884 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>description: Selects elements which can be focused.
3885 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>docs: http://api.jqueryui.com/focusable-selector/
3886  
3887  
3888  
3889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {// Selectors
3890 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {$.ui.focusable = function( element, hasTabindex ) {
3891 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { var map, mapName, img, focusableIfVisible, fieldset,
3892 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { nodeName = element.nodeName.toLowerCase();
3893  
3894 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( "area" === nodeName ) {
3895 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { map = element.parentNode;
3896 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { mapName = map.name;
3897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) {
3898 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return false;
3899 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
3900 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { img = $( "img[usemap='#" + mapName + "']" );
3901 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return img.length > 0 && img.is( ":visible" );
3902 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
3903  
3904 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( /^(input|select|textarea|button|object)$/.test( nodeName ) ) {
3905 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { focusableIfVisible = !element.disabled;
3906  
3907 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( focusableIfVisible ) {
3908  
3909 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // Form controls within a disabled fieldset are disabled.
3910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // However, controls within the fieldset's legend do not get disabled.
3911 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // Since controls generally aren't placed inside legends, we skip
3912 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // this portion of the check.
3913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { fieldset = $( element ).closest( "fieldset" )[ 0 ];
3914 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( fieldset ) {
3915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { focusableIfVisible = !fieldset.disabled;
3916 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
3917 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
3918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { } else if ( "a" === nodeName ) {
3919 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { focusableIfVisible = element.href || hasTabindex;
3920 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { } else {
3921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { focusableIfVisible = hasTabindex;
3922 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
3923  
3924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return focusableIfVisible && $( element ).is( ":visible" ) && visible( $( element ) );
3925 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {};
3926  
3927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {// Support: IE 8 only
3928 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {// IE 8 doesn't resolve inherit to visible/hidden for computed values
3929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {function visible( element ) {
3930 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { var visibility = element.css( "visibility" );
3931 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { while ( visibility === "inherit" ) {
3932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { element = element.parent();
3933 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { visibility = element.css( "visibility" );
3934 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
3935 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return visibility !== "hidden";
3936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {}
3937  
3938 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {$.extend( $.expr[ ":" ], {
3939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { focusable: function( element ) {
3940 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return $.ui.focusable( element, $.attr( element, "tabindex" ) != null );
3941 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
3942 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {} );
3943  
3944 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {var focusable = $.ui.focusable;
3945  
3946  
3947  
3948  
3949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {// Support: IE8 Only
3950 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {// IE8 does not support the form attribute and when it is supplied. It overwrites the form prop
3951 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {// with a string, so we need to find the proper form.
3952 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {var form = $.fn.form = function() {
3953 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return typeof this[ 0 ].form === "string" ? this.closest( "form" ) : $( this[ 0 ].form );
3954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {};
3955  
3956  
3957 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {/*!
3958 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * jQuery UI Form Reset Mixin 1.12.1
3959 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jqueryui.com
3960 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { *
3961 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Copyright jQuery Foundation and other contributors
3962 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Released under the MIT license.
3963 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jquery.org/license
3964 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { */
3965  
3966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>label: Form Reset Mixin
3967 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>group: Core
3968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>description: Refresh input widgets when their form is reset
3969 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>docs: http://api.jqueryui.com/form-reset-mixin/
3970  
3971  
3972  
3973 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {var formResetMixin = $.ui.formResetMixin = {
3974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { _formResetHandler: function() {
3975 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { var form = $( this );
3976  
3977 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // Wait for the form reset to actually happen before refreshing
3978 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { setTimeout( function() {
3979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { var instances = form.data( "ui-form-reset-instances" );
3980 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { $.each( instances, function() {
3981 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { this.refresh();
3982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { } );
3983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { } );
3984 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { },
3985  
3986 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { _bindFormResetHandler: function() {
3987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { this.form = this.element.form();
3988 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( !this.form.length ) {
3989 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return;
3990 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
3991  
3992 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { var instances = this.form.data( "ui-form-reset-instances" ) || [];
3993 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( !instances.length ) {
3994  
3995 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // We don't use _on() here because we use a single event handler per form
3996 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { this.form.on( "reset.ui-form-reset", this._formResetHandler );
3997 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
3998 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { instances.push( this );
3999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { this.form.data( "ui-form-reset-instances", instances );
4000 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { },
4001  
4002 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { _unbindFormResetHandler: function() {
4003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( !this.form.length ) {
4004 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return;
4005 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
4006  
4007 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { var instances = this.form.data( "ui-form-reset-instances" );
4008 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { instances.splice( $.inArray( this, instances ), 1 );
4009 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( instances.length ) {
4010 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { this.form.data( "ui-form-reset-instances", instances );
4011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { } else {
4012 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { this.form
4013 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { .removeData( "ui-form-reset-instances" )
4014 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { .off( "reset.ui-form-reset" );
4015 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
4016 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
4017 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {};
4018  
4019  
4020 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {/*!
4021 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * jQuery UI Support for jQuery core 1.7.x 1.12.1
4022 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jqueryui.com
4023 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { *
4024 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Copyright jQuery Foundation and other contributors
4025 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Released under the MIT license.
4026 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jquery.org/license
4027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { *
4028 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { */
4029  
4030 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>label: jQuery 1.7 Support
4031 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>group: Core
4032 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>description: Support version 1.7.x of jQuery core
4033  
4034  
4035  
4036 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {// Support: jQuery 1.7 only
4037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {// Not a great way to check versions, but since we only support 1.7+ and only
4038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {// need to detect <1.8, this is a simple check that should suffice. Checking
4039 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {// for "1.7." would be a bit safer, but the version string is 1.7, not 1.7.0
4040 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {// and we'll never reach 1.70.0 (if we do, we certainly won't be supporting
4041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {// 1.7 anymore). See #11197 for why we're not using feature detection.
4042 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {if ( $.fn.jquery.substring( 0, 3 ) === "1.7" ) {
4043  
4044 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // Setters for .innerWidth(), .innerHeight(), .outerWidth(), .outerHeight()
4045 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // Unlike jQuery Core 1.8+, these only support numeric values to set the
4046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // dimensions in pixels
4047 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { $.each( [ "Width", "Height" ], function( i, name ) {
4048 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { var side = name === "Width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ],
4049 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { type = name.toLowerCase(),
4050 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { orig = {
4051 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { innerWidth: $.fn.innerWidth,
4052 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { innerHeight: $.fn.innerHeight,
4053 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { outerWidth: $.fn.outerWidth,
4054 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { outerHeight: $.fn.outerHeight
4055 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { };
4056  
4057 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { function reduce( elem, size, border, margin ) {
4058 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { $.each( side, function() {
4059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { size -= parseFloat( $.css( elem, "padding" + this ) ) || 0;
4060 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( border ) {
4061 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { size -= parseFloat( $.css( elem, "border" + this + "Width" ) ) || 0;
4062 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
4063 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( margin ) {
4064 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { size -= parseFloat( $.css( elem, "margin" + this ) ) || 0;
4065 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
4066 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { } );
4067 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return size;
4068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
4069  
4070 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { $.fn[ "inner" + name ] = function( size ) {
4071 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( size === undefined ) {
4072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return orig[ "inner" + name ].call( this );
4073 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
4074  
4075 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return this.each( function() {
4076 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { $( this ).css( type, reduce( this, size ) + "px" );
4077 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { } );
4078 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { };
4079  
4080 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { $.fn[ "outer" + name ] = function( size, margin ) {
4081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( typeof size !== "number" ) {
4082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return orig[ "outer" + name ].call( this, size );
4083 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
4084  
4085 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return this.each( function() {
4086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { $( this ).css( type, reduce( this, size, true, margin ) + "px" );
4087 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { } );
4088 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { };
4089 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { } );
4090  
4091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { $.fn.addBack = function( selector ) {
4092 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return this.add( selector == null ?
4093 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { this.prevObject : this.prevObject.filter( selector )
4094 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { );
4095 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { };
4096 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {}
4097  
4098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {;
4099 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {/*!
4100 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * jQuery UI Keycode 1.12.1
4101 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jqueryui.com
4102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { *
4103 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Copyright jQuery Foundation and other contributors
4104 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Released under the MIT license.
4105 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jquery.org/license
4106 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { */
4107  
4108 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>label: Keycode
4109 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>group: Core
4110 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>description: Provide keycodes as keynames
4111 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>docs: http://api.jqueryui.com/jQuery.ui.keyCode/
4112  
4113  
4114 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {var keycode = $.ui.keyCode = {
4115 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { BACKSPACE: 8,
4116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { COMMA: 188,
4117 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { DELETE: 46,
4118 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { DOWN: 40,
4119 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { END: 35,
4120 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { ENTER: 13,
4121 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { ESCAPE: 27,
4122 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { HOME: 36,
4123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { LEFT: 37,
4124 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { PAGE_DOWN: 34,
4125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { PAGE_UP: 33,
4126 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { PERIOD: 190,
4127 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { RIGHT: 39,
4128 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { SPACE: 32,
4129 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { TAB: 9,
4130 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { UP: 38
4131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {};
4132  
4133  
4134  
4135  
4136 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {// Internal use only
4137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {var escapeSelector = $.ui.escapeSelector = ( function() {
4138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { var selectorEscape = /([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g;
4139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return function( selector ) {
4140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return selector.replace( selectorEscape, "\\$1" );
4141 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { };
4142 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {} )();
4143  
4144  
4145 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {/*!
4146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * jQuery UI Labels 1.12.1
4147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jqueryui.com
4148 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { *
4149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Copyright jQuery Foundation and other contributors
4150 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * Released under the MIT license.
4151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { * http://jquery.org/license
4152 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { */
4153  
4154 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>label: labels
4155 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>group: Core
4156 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>description: Find all the labels associated with a given input
4157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {//>>docs: http://api.jqueryui.com/labels/
4158  
4159  
4160  
4161 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {var labels = $.fn.labels = function() {
4162 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { var ancestor, selector, id, labels, ancestors;
4163  
4164 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // Check control.labels first
4165 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { if ( this[ 0 ].labels && this[ 0 ].labels.length ) {
4166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { return this.pushStack( this[ 0 ].labels );
4167 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { }
4168  
4169 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) { // Support: IE <= 11, FF <= 37, Android <= 2.3 only
4170 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Above browsers do not support control.labels. Everything below is to support them
4171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // as well as document fragments. control.labels does not work on document fragments
4172 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only labels = this.eq( 0 ).parents( "label" );
4173  
4174 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Look for the label based on the id
4175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only id = this.attr( "id" );
4176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( id ) {
4177  
4178 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // We don't search against the document in case the element
4179 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // is disconnected from the DOM
4180 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ancestor = this.eq( 0 ).parents().last();
4181  
4182 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Get a full set of top level ancestors
4183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ancestors = ancestor.add( ancestor.length ? ancestor.siblings() : this.siblings() );
4184  
4185 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Create a selector for the label based on the id
4186 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only selector = "label[for='" + $.ui.escapeSelector( id ) + "']";
4187  
4188 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only labels = labels.add( ancestors.find( selector ).addBack( selector ) );
4189  
4190 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4191  
4192 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Return whatever we have found for labels
4193 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.pushStack( labels );
4194 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only};
4195  
4196  
4197 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only/*!
4198 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * jQuery UI Scroll Parent 1.12.1
4199 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jqueryui.com
4200 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only *
4201 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Copyright jQuery Foundation and other contributors
4202 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Released under the MIT license.
4203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jquery.org/license
4204 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
4205  
4206 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>label: scrollParent
4207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>group: Core
4208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>description: Get the closest ancestor element that is scrollable.
4209 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>docs: http://api.jqueryui.com/scrollParent/
4210  
4211  
4212  
4213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyvar scrollParent = $.fn.scrollParent = function( includeHidden ) {
4214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var position = this.css( "position" ),
4215 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only excludeStaticParent = position === "absolute",
4216 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only overflowRegex = includeHidden ? /(auto|scroll|hidden)/ : /(auto|scroll)/,
4217 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only scrollParent = this.parents().filter( function() {
4218 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var parent = $( this );
4219 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( excludeStaticParent && parent.css( "position" ) === "static" ) {
4220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return false;
4221 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4222 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return overflowRegex.test( parent.css( "overflow" ) + parent.css( "overflow-y" ) +
4223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only parent.css( "overflow-x" ) );
4224 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } ).eq( 0 );
4225  
4226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return position === "fixed" || !scrollParent.length ?
4227 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( this[ 0 ].ownerDocument || document ) :
4228 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only scrollParent;
4229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only};
4230  
4231  
4232 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only/*!
4233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * jQuery UI Tabbable 1.12.1
4234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jqueryui.com
4235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only *
4236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Copyright jQuery Foundation and other contributors
4237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Released under the MIT license.
4238 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jquery.org/license
4239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
4240  
4241 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>label: :tabbable Selector
4242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>group: Core
4243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>description: Selects elements which can be tabbed to.
4244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>docs: http://api.jqueryui.com/tabbable-selector/
4245  
4246  
4247  
4248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyvar tabbable = $.extend( $.expr[ ":" ], {
4249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only tabbable: function( element ) {
4250 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var tabIndex = $.attr( element, "tabindex" ),
4251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only hasTabindex = tabIndex != null;
4252 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return ( !hasTabindex || tabIndex >= 0 ) && $.ui.focusable( element, hasTabindex );
4253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4254 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only} );
4255  
4256  
4257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only/*!
4258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * jQuery UI Unique ID 1.12.1
4259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jqueryui.com
4260 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only *
4261 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Copyright jQuery Foundation and other contributors
4262 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Released under the MIT license.
4263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jquery.org/license
4264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
4265  
4266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>label: uniqueId
4267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>group: Core
4268 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>description: Functions to generate and remove uniqueId's
4269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>docs: http://api.jqueryui.com/uniqueId/
4270  
4271  
4272  
4273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyvar uniqueId = $.fn.extend( {
4274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only uniqueId: ( function() {
4275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var uuid = 0;
4276  
4277 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return function() {
4278 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.each( function() {
4279 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.id ) {
4280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.id = "ui-id-" + ( ++uuid );
4281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4283 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
4284 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } )(),
4285  
4286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only removeUniqueId: function() {
4287 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.each( function() {
4288 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( /^ui-id-\d+$/.test( this.id ) ) {
4289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( this ).removeAttr( "id" );
4290 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4292 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4293 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only} );
4294  
4295  
4296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only/*!
4297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * jQuery UI Accordion 1.12.1
4298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jqueryui.com
4299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only *
4300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Copyright jQuery Foundation and other contributors
4301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Released under the MIT license.
4302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jquery.org/license
4303 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
4304  
4305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>label: Accordion
4306 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>group: Widgets
4307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only// jscs:disable maximumLineLength
4308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>description: Displays collapsible content panels for presenting information in a limited amount of space.
4309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only// jscs:enable maximumLineLength
4310 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>docs: http://api.jqueryui.com/accordion/
4311 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>demos: http://jqueryui.com/accordion/
4312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/core.css
4313 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/accordion.css
4314 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.theme: ../../themes/base/theme.css
4315  
4316  
4317  
4318 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyvar widgetsAccordion = $.widget( "ui.accordion", {
4319 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only version: "1.12.1",
4320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options: {
4321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only active: 0,
4322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only animate: {},
4323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only classes: {
4324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-accordion-header": "ui-corner-top",
4325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-accordion-header-collapsed": "ui-corner-all",
4326 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-accordion-content": "ui-corner-bottom"
4327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4328 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only collapsible: false,
4329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event: "click",
4330 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only header: "> li > :first-child, > :not(li):even",
4331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only heightStyle: "auto",
4332 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only icons: {
4333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only activeHeader: "ui-icon-triangle-1-s",
4334 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only header: "ui-icon-triangle-1-e"
4335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4336  
4337 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Callbacks
4338 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only activate: null,
4339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only beforeActivate: null
4340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4341  
4342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only hideProps: {
4343 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only borderTopWidth: "hide",
4344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only borderBottomWidth: "hide",
4345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only paddingTop: "hide",
4346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only paddingBottom: "hide",
4347 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only height: "hide"
4348 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4349  
4350 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only showProps: {
4351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only borderTopWidth: "show",
4352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only borderBottomWidth: "show",
4353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only paddingTop: "show",
4354 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only paddingBottom: "show",
4355 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only height: "show"
4356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4357  
4358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _create: function() {
4359 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var options = this.options;
4360  
4361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.prevShow = this.prevHide = $();
4362 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( "ui-accordion", "ui-widget ui-helper-reset" );
4363 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.attr( "role", "tablist" );
4364  
4365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Don't allow collapsible: false and active: false / null
4366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !options.collapsible && ( options.active === false || options.active == null ) ) {
4367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.active = 0;
4368 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4369  
4370 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._processPanels();
4371  
4372 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // handle negative values
4373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( options.active < 0 ) {
4374 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.active += this.headers.length;
4375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4376 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._refresh();
4377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4378  
4379 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _getCreateEventData: function() {
4380 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return {
4381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only header: this.active,
4382 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only panel: !this.active.length ? $() : this.active.next()
4383 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
4384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4385  
4386 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _createIcons: function() {
4387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var icon, children,
4388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only icons = this.options.icons;
4389  
4390 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( icons ) {
4391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only icon = $( "<span>" );
4392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( icon, "ui-accordion-header-icon", "ui-icon " + icons.header );
4393 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only icon.prependTo( this.headers );
4394 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only children = this.active.children( ".ui-accordion-header-icon" );
4395 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( children, icons.header )
4396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ._addClass( children, null, icons.activeHeader )
4397 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ._addClass( this.headers, "ui-accordion-icons" );
4398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4400  
4401 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _destroyIcons: function() {
4402 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( this.headers, "ui-accordion-icons" );
4403 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.headers.children( ".ui-accordion-header-icon" ).remove();
4404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4405  
4406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _destroy: function() {
4407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var contents;
4408  
4409 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Clean up main element
4410 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.removeAttr( "role" );
4411  
4412 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Clean up headers
4413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.headers
4414 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .removeAttr( "role aria-expanded aria-selected aria-controls tabIndex" )
4415 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .removeUniqueId();
4416  
4417 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._destroyIcons();
4418  
4419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Clean up content panels
4420 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only contents = this.headers.next()
4421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .css( "display", "" )
4422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .removeAttr( "role aria-hidden aria-labelledby" )
4423 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .removeUniqueId();
4424  
4425 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.heightStyle !== "content" ) {
4426 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only contents.css( "height", "" );
4427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4428 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4429  
4430 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _setOption: function( key, value ) {
4431 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "active" ) {
4432  
4433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // _activate() will handle invalid values and update this.options
4434 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._activate( value );
4435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
4436 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4437  
4438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "event" ) {
4439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.event ) {
4440 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._off( this.headers, this.options.event );
4441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._setupEvents( value );
4443 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4444  
4445 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( key, value );
4446  
4447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Setting collapsible: false while collapsed; open first panel
4448 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "collapsible" && !value && this.options.active === false ) {
4449 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._activate( 0 );
4450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4451  
4452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "icons" ) {
4453 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._destroyIcons();
4454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( value ) {
4455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._createIcons();
4456 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4459  
4460 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _setOptionDisabled: function( value ) {
4461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( value );
4462  
4463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.attr( "aria-disabled", value );
4464  
4465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Support: IE8 Only
4466 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // #5332 / #6059 - opacity doesn't cascade to positioned elements in IE
4467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // so we need to add the disabled class to the headers and panels
4468 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._toggleClass( null, "ui-state-disabled", !!value );
4469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._toggleClass( this.headers.add( this.headers.next() ), null, "ui-state-disabled",
4470 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only !!value );
4471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4472  
4473 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _keydown: function( event ) {
4474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( event.altKey || event.ctrlKey ) {
4475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
4476 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4477  
4478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var keyCode = $.ui.keyCode,
4479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only length = this.headers.length,
4480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only currentIndex = this.headers.index( event.target ),
4481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toFocus = false;
4482  
4483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only switch ( event.keyCode ) {
4484 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.RIGHT:
4485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.DOWN:
4486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toFocus = this.headers[ ( currentIndex + 1 ) % length ];
4487 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
4488 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.LEFT:
4489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.UP:
4490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toFocus = this.headers[ ( currentIndex - 1 + length ) % length ];
4491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
4492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.SPACE:
4493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.ENTER:
4494 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._eventHandler( event );
4495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
4496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.HOME:
4497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toFocus = this.headers[ 0 ];
4498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
4499 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.END:
4500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toFocus = this.headers[ length - 1 ];
4501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
4502 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4503  
4504 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( toFocus ) {
4505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( event.target ).attr( "tabIndex", -1 );
4506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( toFocus ).attr( "tabIndex", 0 );
4507 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( toFocus ).trigger( "focus" );
4508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.preventDefault();
4509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4511  
4512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _panelKeyDown: function( event ) {
4513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( event.keyCode === $.ui.keyCode.UP && event.ctrlKey ) {
4514 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( event.currentTarget ).prev().trigger( "focus" );
4515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4516 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4517  
4518 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only refresh: function() {
4519 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var options = this.options;
4520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._processPanels();
4521  
4522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Was collapsed or no panel
4523 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( ( options.active === false && options.collapsible === true ) ||
4524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only !this.headers.length ) {
4525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.active = false;
4526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active = $();
4527  
4528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // active false only when collapsible is true
4529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( options.active === false ) {
4530 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._activate( 0 );
4531  
4532 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // was active, but active panel is gone
4533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( this.active.length && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) {
4534  
4535 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // all remaining panel are disabled
4536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.headers.length === this.headers.find( ".ui-state-disabled" ).length ) {
4537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.active = false;
4538 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active = $();
4539  
4540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // activate previous panel
4541 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
4542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._activate( Math.max( 0, options.active - 1 ) );
4543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4544  
4545 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // was active, active panel still exists
4546 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
4547  
4548 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // make sure active index is correct
4549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.active = this.headers.index( this.active );
4550 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4551  
4552 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._destroyIcons();
4553  
4554 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._refresh();
4555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4556  
4557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _processPanels: function() {
4558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var prevHeaders = this.headers,
4559 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only prevPanels = this.panels;
4560  
4561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.headers = this.element.find( this.options.header );
4562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.headers, "ui-accordion-header ui-accordion-header-collapsed",
4563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-state-default" );
4564  
4565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.panels = this.headers.next().filter( ":not(.ui-accordion-content-active)" ).hide();
4566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.panels, "ui-accordion-content", "ui-helper-reset ui-widget-content" );
4567  
4568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Avoid memory leaks (#10056)
4569 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( prevPanels ) {
4570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._off( prevHeaders.not( this.headers ) );
4571 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._off( prevPanels.not( this.panels ) );
4572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4573 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4574  
4575 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _refresh: function() {
4576 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var maxHeight,
4577 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options = this.options,
4578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only heightStyle = options.heightStyle,
4579 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only parent = this.element.parent();
4580  
4581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active = this._findActive( options.active );
4582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.active, "ui-accordion-header-active", "ui-state-active" )
4583 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ._removeClass( this.active, "ui-accordion-header-collapsed" );
4584 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.active.next(), "ui-accordion-content-active" );
4585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active.next().show();
4586  
4587 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.headers
4588 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( "role", "tab" )
4589 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .each( function() {
4590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var header = $( this ),
4591 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only headerId = header.uniqueId().attr( "id" ),
4592 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only panel = header.next(),
4593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only panelId = panel.uniqueId().attr( "id" );
4594 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only header.attr( "aria-controls", panelId );
4595 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only panel.attr( "aria-labelledby", headerId );
4596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } )
4597 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .next()
4598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( "role", "tabpanel" );
4599  
4600 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.headers
4601 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .not( this.active )
4602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( {
4603 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-selected": "false",
4604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-expanded": "false",
4605 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only tabIndex: -1
4606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } )
4607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .next()
4608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( {
4609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-hidden": "true"
4610 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } )
4611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .hide();
4612  
4613 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Make sure at least one header is in the tab order
4614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.active.length ) {
4615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.headers.eq( 0 ).attr( "tabIndex", 0 );
4616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
4617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active.attr( {
4618 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-selected": "true",
4619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-expanded": "true",
4620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only tabIndex: 0
4621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } )
4622 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .next()
4623 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( {
4624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-hidden": "false"
4625 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4627  
4628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._createIcons();
4629  
4630 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._setupEvents( options.event );
4631  
4632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( heightStyle === "fill" ) {
4633 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only maxHeight = parent.height();
4634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.siblings( ":visible" ).each( function() {
4635 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var elem = $( this ),
4636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only position = elem.css( "position" );
4637  
4638 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( position === "absolute" || position === "fixed" ) {
4639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
4640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only maxHeight -= elem.outerHeight( true );
4642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4643  
4644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.headers.each( function() {
4645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only maxHeight -= $( this ).outerHeight( true );
4646 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4647  
4648 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.headers.next()
4649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .each( function() {
4650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( this ).height( Math.max( 0, maxHeight -
4651 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( this ).innerHeight() + $( this ).height() ) );
4652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } )
4653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .css( "overflow", "auto" );
4654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( heightStyle === "auto" ) {
4655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only maxHeight = 0;
4656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.headers.next()
4657 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .each( function() {
4658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var isVisible = $( this ).is( ":visible" );
4659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !isVisible ) {
4660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( this ).show();
4661 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4662 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only maxHeight = Math.max( maxHeight, $( this ).css( "height", "" ).height() );
4663 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !isVisible ) {
4664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( this ).hide();
4665 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } )
4667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .height( maxHeight );
4668 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4670  
4671 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _activate: function( index ) {
4672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var active = this._findActive( index )[ 0 ];
4673  
4674 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Trying to activate the already active panel
4675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( active === this.active[ 0 ] ) {
4676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
4677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4678  
4679 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Trying to collapse, simulate a click on the currently active header
4680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only active = active || this.active[ 0 ];
4681  
4682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._eventHandler( {
4683 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only target: active,
4684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only currentTarget: active,
4685 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only preventDefault: $.noop
4686 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4688  
4689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _findActive: function( selector ) {
4690 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return typeof selector === "number" ? this.headers.eq( selector ) : $();
4691 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4692  
4693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _setupEvents: function( event ) {
4694 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var events = {
4695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only keydown: "_keydown"
4696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
4697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( event ) {
4698 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.each( event.split( " " ), function( index, eventName ) {
4699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only events[ eventName ] = "_eventHandler";
4700 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4702  
4703 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._off( this.headers.add( this.headers.next() ) );
4704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._on( this.headers, events );
4705 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._on( this.headers.next(), { keydown: "_panelKeyDown" } );
4706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._hoverable( this.headers );
4707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._focusable( this.headers );
4708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4709  
4710 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _eventHandler: function( event ) {
4711 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var activeChildren, clickedChildren,
4712 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options = this.options,
4713 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only active = this.active,
4714 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only clicked = $( event.currentTarget ),
4715 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only clickedIsActive = clicked[ 0 ] === active[ 0 ],
4716 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only collapsing = clickedIsActive && options.collapsible,
4717 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toShow = collapsing ? $() : clicked.next(),
4718 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toHide = active.next(),
4719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only eventData = {
4720 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only oldHeader: active,
4721 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only oldPanel: toHide,
4722 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only newHeader: collapsing ? $() : clicked,
4723 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only newPanel: toShow
4724 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
4725  
4726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.preventDefault();
4727  
4728 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if (
4729  
4730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // click on active header, but not collapsible
4731 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ( clickedIsActive && !options.collapsible ) ||
4732  
4733 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // allow canceling activation
4734 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ( this._trigger( "beforeActivate", event, eventData ) === false ) ) {
4735 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
4736 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4737  
4738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.active = collapsing ? false : this.headers.index( clicked );
4739  
4740 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // When the call to ._toggle() comes after the class changes
4741 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // it causes a very odd bug in IE 8 (see #6720)
4742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active = clickedIsActive ? $() : clicked;
4743 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._toggle( eventData );
4744  
4745 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Switch classes
4746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // corner classes on the previously active header stay after the animation
4747 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( active, "ui-accordion-header-active", "ui-state-active" );
4748 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( options.icons ) {
4749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only activeChildren = active.children( ".ui-accordion-header-icon" );
4750 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( activeChildren, null, options.icons.activeHeader )
4751 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ._addClass( activeChildren, null, options.icons.header );
4752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4753  
4754 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !clickedIsActive ) {
4755 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( clicked, "ui-accordion-header-collapsed" )
4756 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ._addClass( clicked, "ui-accordion-header-active", "ui-state-active" );
4757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( options.icons ) {
4758 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only clickedChildren = clicked.children( ".ui-accordion-header-icon" );
4759 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( clickedChildren, null, options.icons.header )
4760 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ._addClass( clickedChildren, null, options.icons.activeHeader );
4761 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4762  
4763 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( clicked.next(), "ui-accordion-content-active" );
4764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4765 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4766  
4767 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _toggle: function( data ) {
4768 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var toShow = data.newPanel,
4769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toHide = this.prevShow.length ? this.prevShow : data.oldPanel;
4770  
4771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Handle activating a panel during the animation for another activation
4772 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.prevShow.add( this.prevHide ).stop( true, true );
4773 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.prevShow = toShow;
4774 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.prevHide = toHide;
4775  
4776 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.animate ) {
4777 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._animate( toShow, toHide, data );
4778 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
4779 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toHide.hide();
4780 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toShow.show();
4781 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._toggleComplete( data );
4782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4783  
4784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toHide.attr( {
4785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-hidden": "true"
4786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4787 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toHide.prev().attr( {
4788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-selected": "false",
4789 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-expanded": "false"
4790 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4791  
4792 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // if we're switching panels, remove the old header from the tab order
4793 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // if we're opening from collapsed state, remove the previous header from the tab order
4794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // if we're collapsing, then keep the collapsing header in the tab order
4795 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( toShow.length && toHide.length ) {
4796 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toHide.prev().attr( {
4797 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "tabIndex": -1,
4798 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-expanded": "false"
4799 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( toShow.length ) {
4801 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.headers.filter( function() {
4802 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return parseInt( $( this ).attr( "tabIndex" ), 10 ) === 0;
4803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } )
4804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( "tabIndex", -1 );
4805 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4806  
4807 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toShow
4808 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( "aria-hidden", "false" )
4809 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .prev()
4810 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( {
4811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-selected": "true",
4812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-expanded": "true",
4813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only tabIndex: 0
4814 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4815 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4816  
4817 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _animate: function( toShow, toHide, data ) {
4818 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var total, easing, duration,
4819 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that = this,
4820 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only adjust = 0,
4821 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only boxSizing = toShow.css( "box-sizing" ),
4822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only down = toShow.length &&
4823 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ( !toHide.length || ( toShow.index() < toHide.index() ) ),
4824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only animate = this.options.animate || {},
4825 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options = down && animate.down || animate,
4826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only complete = function() {
4827 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that._toggleComplete( data );
4828 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
4829  
4830 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( typeof options === "number" ) {
4831 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only duration = options;
4832 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( typeof options === "string" ) {
4834 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only easing = options;
4835 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4836  
4837 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // fall back from options to animation in case of partial down settings
4838 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only easing = easing || options.easing || animate.easing;
4839 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only duration = duration || options.duration || animate.duration;
4840  
4841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !toHide.length ) {
4842 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return toShow.animate( this.showProps, duration, easing, complete );
4843 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4844 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !toShow.length ) {
4845 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return toHide.animate( this.hideProps, duration, easing, complete );
4846 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4847  
4848 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only total = toShow.show().outerHeight();
4849 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toHide.animate( this.hideProps, {
4850 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only duration: duration,
4851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only easing: easing,
4852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only step: function( now, fx ) {
4853 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only fx.now = Math.round( now );
4854 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4855 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4856 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toShow
4857 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .hide()
4858 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .animate( this.showProps, {
4859 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only duration: duration,
4860 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only easing: easing,
4861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only complete: complete,
4862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only step: function( now, fx ) {
4863 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only fx.now = Math.round( now );
4864 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( fx.prop !== "height" ) {
4865 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( boxSizing === "content-box" ) {
4866 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only adjust += fx.now;
4867 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4868 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( that.options.heightStyle !== "content" ) {
4869 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only fx.now = Math.round( total - toHide.outerHeight() - adjust );
4870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only adjust = 0;
4871 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4872 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4873 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4874 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4875  
4876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _toggleComplete: function( data ) {
4877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var toHide = data.oldPanel,
4878 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only prev = toHide.prev();
4879  
4880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( toHide, "ui-accordion-content-active" );
4881 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( prev, "ui-accordion-header-active" )
4882 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ._addClass( prev, "ui-accordion-header-collapsed" );
4883  
4884 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Work around for rendering bug in IE (#5421)
4885 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( toHide.length ) {
4886 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toHide.parent()[ 0 ].className = toHide.parent()[ 0 ].className;
4887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4888 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._trigger( "activate", null, data );
4889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4890 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only} );
4891  
4892  
4893  
4894 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyvar safeActiveElement = $.ui.safeActiveElement = function( document ) {
4895 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var activeElement;
4896  
4897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Support: IE 9 only
4898 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // IE9 throws an "Unspecified error" accessing document.activeElement from an <iframe>
4899 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only try {
4900 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only activeElement = document.activeElement;
4901 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } catch ( error ) {
4902 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only activeElement = document.body;
4903 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4904  
4905 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Support: IE 9 - 11 only
4906 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // IE may return null instead of an element
4907 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Interestingly, this only seems to occur when NOT in an iframe
4908 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !activeElement ) {
4909 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only activeElement = document.body;
4910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4911  
4912 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Support: IE 11 only
4913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // IE11 returns a seemingly empty object in some cases when accessing
4914 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // document.activeElement from an <iframe>
4915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !activeElement.nodeName ) {
4916 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only activeElement = document.body;
4917 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4918  
4919 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return activeElement;
4920 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only};
4921  
4922  
4923 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only/*!
4924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * jQuery UI Menu 1.12.1
4925 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jqueryui.com
4926 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only *
4927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Copyright jQuery Foundation and other contributors
4928 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Released under the MIT license.
4929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jquery.org/license
4930 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
4931  
4932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>label: Menu
4933 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>group: Widgets
4934 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>description: Creates nestable menus.
4935 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>docs: http://api.jqueryui.com/menu/
4936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>demos: http://jqueryui.com/menu/
4937 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/core.css
4938 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/menu.css
4939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.theme: ../../themes/base/theme.css
4940  
4941  
4942  
4943 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyvar widgetsMenu = $.widget( "ui.menu", {
4944 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only version: "1.12.1",
4945 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only defaultElement: "<ul>",
4946 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only delay: 300,
4947 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options: {
4948 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only icons: {
4949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only submenu: "ui-icon-caret-1-e"
4950 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4951 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only items: "> *",
4952 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only menus: "ul",
4953 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only position: {
4954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only my: "left top",
4955 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only at: "right top"
4956 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4957 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only role: "menu",
4958  
4959 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Callbacks
4960 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only blur: null,
4961 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only focus: null,
4962 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only select: null
4963 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4964  
4965 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _create: function() {
4966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.activeMenu = this.element;
4967  
4968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Flag used to prevent firing of the click handler
4969 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // as the event bubbles up through nested menus
4970 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.mouseHandled = false;
4971 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element
4972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .uniqueId()
4973 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( {
4974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only role: this.options.role,
4975 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only tabIndex: 0
4976 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
4977  
4978 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( "ui-menu", "ui-widget ui-widget-content" );
4979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._on( {
4980  
4981 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Prevent focus from sticking to links inside menu after clicking
4982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // them (focus should always stay on UL during navigation).
4983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "mousedown .ui-menu-item": function( event ) {
4984 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.preventDefault();
4985 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
4986 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "click .ui-menu-item": function( event ) {
4987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var target = $( event.target );
4988 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var active = $( $.ui.safeActiveElement( this.document[ 0 ] ) );
4989 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.mouseHandled && target.not( ".ui-state-disabled" ).length ) {
4990 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.select( event );
4991  
4992 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Only set the mouseHandled flag if the event will bubble, see #9469.
4993 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !event.isPropagationStopped() ) {
4994 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.mouseHandled = true;
4995 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
4996  
4997 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Open submenu on click
4998 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( target.has( ".ui-menu" ).length ) {
4999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.expand( event );
5000 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( !this.element.is( ":focus" ) &&
5001 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only active.closest( ".ui-menu" ).length ) {
5002  
5003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Redirect focus to the menu
5004 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.trigger( "focus", [ true ] );
5005  
5006 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If the active item is on the top level, let it stay active.
5007 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Otherwise, blur the active item since it is no longer visible.
5008 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.active && this.active.parents( ".ui-menu" ).length === 1 ) {
5009 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only clearTimeout( this.timer );
5010 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5012 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5013 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5014 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "mouseenter .ui-menu-item": function( event ) {
5015  
5016 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Ignore mouse events while typeahead is active, see #10458.
5017 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Prevents focusing the wrong item when typeahead causes a scroll while the mouse
5018 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // is over an item in the menu
5019 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.previousFilter ) {
5020 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5021 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5022  
5023 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var actualTarget = $( event.target ).closest( ".ui-menu-item" ),
5024 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only target = $( event.currentTarget );
5025  
5026 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Ignore bubbled events on parent items, see #11641
5027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( actualTarget[ 0 ] !== target[ 0 ] ) {
5028 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5030  
5031 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Remove ui-state-active class from siblings of the newly focused menu item
5032 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // to avoid a jump caused by adjacent elements both having a class with a border
5033 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( target.siblings().children( ".ui-state-active" ),
5034 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only null, "ui-state-active" );
5035 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.focus( event, target );
5036 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only mouseleave: "collapseAll",
5038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "mouseleave .ui-menu": "collapseAll",
5039 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only focus: function( event, keepActiveItem ) {
5040  
5041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If there's already an active item, keep it active
5042 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If not, activate the first item
5043 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var item = this.active || this.element.find( this.options.items ).eq( 0 );
5044  
5045 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !keepActiveItem ) {
5046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.focus( event, item );
5047 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5048 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5049 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only blur: function( event ) {
5050 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._delay( function() {
5051 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var notContained = !$.contains(
5052 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element[ 0 ],
5053 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.ui.safeActiveElement( this.document[ 0 ] )
5054 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only );
5055 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( notContained ) {
5056 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.collapseAll( event );
5057 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5058 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5060 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only keydown: "_keydown"
5061 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5062  
5063 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.refresh();
5064  
5065 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Clicks outside of a menu collapse any open menus
5066 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._on( this.document, {
5067 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only click: function( event ) {
5068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this._closeOnDocumentClick( event ) ) {
5069 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.collapseAll( event );
5070 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5071  
5072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Reset the mouseHandled flag
5073 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.mouseHandled = false;
5074 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5075 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5076 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5077  
5078 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _destroy: function() {
5079 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var items = this.element.find( ".ui-menu-item" )
5080 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .removeAttr( "role aria-disabled" ),
5081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only submenus = items.children( ".ui-menu-item-wrapper" )
5082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .removeUniqueId()
5083 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .removeAttr( "tabIndex role aria-haspopup" );
5084  
5085 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Destroy (sub)menus
5086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element
5087 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .removeAttr( "aria-activedescendant" )
5088 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .find( ".ui-menu" ).addBack()
5089 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .removeAttr( "role aria-labelledby aria-expanded aria-hidden aria-disabled " +
5090 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "tabIndex" )
5091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .removeUniqueId()
5092 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .show();
5093  
5094 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only submenus.children().each( function() {
5095 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var elem = $( this );
5096 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( elem.data( "ui-menu-submenu-caret" ) ) {
5097 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only elem.remove();
5098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5099 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5100 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5101  
5102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _keydown: function( event ) {
5103 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var match, prev, character, skip,
5104 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only preventDefault = true;
5105  
5106 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only switch ( event.keyCode ) {
5107 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case $.ui.keyCode.PAGE_UP:
5108 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.previousPage( event );
5109 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5110 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case $.ui.keyCode.PAGE_DOWN:
5111 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.nextPage( event );
5112 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case $.ui.keyCode.HOME:
5114 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._move( "first", "first", event );
5115 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case $.ui.keyCode.END:
5117 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._move( "last", "last", event );
5118 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5119 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case $.ui.keyCode.UP:
5120 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.previous( event );
5121 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5122 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case $.ui.keyCode.DOWN:
5123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.next( event );
5124 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case $.ui.keyCode.LEFT:
5126 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.collapse( event );
5127 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5128 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case $.ui.keyCode.RIGHT:
5129 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.active && !this.active.is( ".ui-state-disabled" ) ) {
5130 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.expand( event );
5131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5132 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5133 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case $.ui.keyCode.ENTER:
5134 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case $.ui.keyCode.SPACE:
5135 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._activate( event );
5136 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case $.ui.keyCode.ESCAPE:
5138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.collapse( event );
5139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only default:
5141 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only preventDefault = false;
5142 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only prev = this.previousFilter || "";
5143 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only skip = false;
5144  
5145 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Support number pad values
5146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only character = event.keyCode >= 96 && event.keyCode <= 105 ?
5147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ( event.keyCode - 96 ).toString() : String.fromCharCode( event.keyCode );
5148  
5149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only clearTimeout( this.filterTimer );
5150  
5151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( character === prev ) {
5152 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only skip = true;
5153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
5154 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only character = prev + character;
5155 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5156  
5157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only match = this._filterMenuItems( character );
5158 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only match = skip && match.index( this.active.next() ) !== -1 ?
5159 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active.nextAll( ".ui-menu-item" ) :
5160 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only match;
5161  
5162 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If no matches on the current filter, reset to the last character pressed
5163 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // to move down the menu to the first item that starts with that character
5164 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !match.length ) {
5165 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only character = String.fromCharCode( event.keyCode );
5166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only match = this._filterMenuItems( character );
5167 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5168  
5169 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( match.length ) {
5170 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.focus( event, match );
5171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.previousFilter = character;
5172 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.filterTimer = this._delay( function() {
5173 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only delete this.previousFilter;
5174 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }, 1000 );
5175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
5176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only delete this.previousFilter;
5177 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5178 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5179  
5180 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( preventDefault ) {
5181 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.preventDefault();
5182 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5184  
5185 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _activate: function( event ) {
5186 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.active && !this.active.is( ".ui-state-disabled" ) ) {
5187 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.active.children( "[aria-haspopup='true']" ).length ) {
5188 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.expand( event );
5189 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
5190 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.select( event );
5191 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5192 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5193 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5194  
5195 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only refresh: function() {
5196 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var menus, items, newSubmenus, newItems, newWrappers,
5197 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that = this,
5198 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only icon = this.options.icons.submenu,
5199 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only submenus = this.element.find( this.options.menus );
5200  
5201 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._toggleClass( "ui-menu-icons", null, !!this.element.find( ".ui-icon" ).length );
5202  
5203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Initialize nested menus
5204 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only newSubmenus = submenus.filter( ":not(.ui-menu)" )
5205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .hide()
5206 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( {
5207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only role: this.options.role,
5208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-hidden": "true",
5209 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-expanded": "false"
5210 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } )
5211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .each( function() {
5212 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var menu = $( this ),
5213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only item = menu.prev(),
5214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only submenuCaret = $( "<span>" ).data( "ui-menu-submenu-caret", true );
5215  
5216 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that._addClass( submenuCaret, "ui-menu-icon", "ui-icon " + icon );
5217 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only item
5218 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( "aria-haspopup", "true" )
5219 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .prepend( submenuCaret );
5220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only menu.attr( "aria-labelledby", item.attr( "id" ) );
5221 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5222  
5223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( newSubmenus, "ui-menu", "ui-widget ui-widget-content ui-front" );
5224  
5225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only menus = submenus.add( this.element );
5226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only items = menus.find( this.options.items );
5227  
5228 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Initialize menu-items containing spaces and/or dashes only as dividers
5229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only items.not( ".ui-menu-item" ).each( function() {
5230 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var item = $( this );
5231 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( that._isDivider( item ) ) {
5232 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that._addClass( item, "ui-menu-divider", "ui-widget-content" );
5233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5235  
5236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Don't refresh list items that are already adapted
5237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only newItems = items.not( ".ui-menu-item, .ui-menu-divider" );
5238 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only newWrappers = newItems.children()
5239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .not( ".ui-menu" )
5240 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .uniqueId()
5241 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( {
5242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only tabIndex: -1,
5243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only role: this._itemRole()
5244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5245 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( newItems, "ui-menu-item" )
5246 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ._addClass( newWrappers, "ui-menu-item-wrapper" );
5247  
5248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Add aria-disabled attribute to any disabled menu item
5249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only items.filter( ".ui-state-disabled" ).attr( "aria-disabled", "true" );
5250  
5251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If the active item has been removed, blur the menu
5252 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.active && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) {
5253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.blur();
5254 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5255 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5256  
5257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _itemRole: function() {
5258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return {
5259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only menu: "menuitem",
5260 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only listbox: "option"
5261 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }[ this.options.role ];
5262 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5263  
5264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _setOption: function( key, value ) {
5265 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "icons" ) {
5266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var icons = this.element.find( ".ui-menu-icon" );
5267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( icons, null, this.options.icons.submenu )
5268 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ._addClass( icons, null, value.submenu );
5269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5270 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( key, value );
5271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5272  
5273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _setOptionDisabled: function( value ) {
5274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( value );
5275  
5276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.attr( "aria-disabled", String( value ) );
5277 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._toggleClass( null, "ui-state-disabled", !!value );
5278 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5279  
5280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only focus: function( event, item ) {
5281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var nested, focused, activeParent;
5282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.blur( event, event && event.type === "focus" );
5283  
5284 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._scrollIntoView( item );
5285  
5286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active = item.first();
5287  
5288 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only focused = this.active.children( ".ui-menu-item-wrapper" );
5289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( focused, null, "ui-state-active" );
5290  
5291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Only update aria-activedescendant if there's a role
5292 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // otherwise we assume focus is managed elsewhere
5293 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.role ) {
5294 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.attr( "aria-activedescendant", focused.attr( "id" ) );
5295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5296  
5297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Highlight active parent menu item, if any
5298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only activeParent = this.active
5299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .parent()
5300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .closest( ".ui-menu-item" )
5301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .children( ".ui-menu-item-wrapper" );
5302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( activeParent, null, "ui-state-active" );
5303  
5304 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( event && event.type === "keydown" ) {
5305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._close();
5306 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
5307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.timer = this._delay( function() {
5308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._close();
5309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }, this.delay );
5310 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5311  
5312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only nested = item.children( ".ui-menu" );
5313 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( nested.length && event && ( /^mouse/.test( event.type ) ) ) {
5314 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._startOpening( nested );
5315 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.activeMenu = item.parent();
5317  
5318 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._trigger( "focus", event, { item: item } );
5319 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5320  
5321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _scrollIntoView: function( item ) {
5322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var borderTop, paddingTop, offset, scroll, elementHeight, itemHeight;
5323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this._hasScroll() ) {
5324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only borderTop = parseFloat( $.css( this.activeMenu[ 0 ], "borderTopWidth" ) ) || 0;
5325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only paddingTop = parseFloat( $.css( this.activeMenu[ 0 ], "paddingTop" ) ) || 0;
5326 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only offset = item.offset().top - this.activeMenu.offset().top - borderTop - paddingTop;
5327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only scroll = this.activeMenu.scrollTop();
5328 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only elementHeight = this.activeMenu.height();
5329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only itemHeight = item.outerHeight();
5330  
5331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( offset < 0 ) {
5332 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.activeMenu.scrollTop( scroll + offset );
5333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( offset + itemHeight > elementHeight ) {
5334 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.activeMenu.scrollTop( scroll + offset - elementHeight + itemHeight );
5335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5336 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5337 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5338  
5339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only blur: function( event, fromFocus ) {
5340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !fromFocus ) {
5341 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only clearTimeout( this.timer );
5342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5343  
5344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.active ) {
5345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5347  
5348 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( this.active.children( ".ui-menu-item-wrapper" ),
5349 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only null, "ui-state-active" );
5350  
5351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._trigger( "blur", event, { item: this.active } );
5352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active = null;
5353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5354  
5355 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _startOpening: function( submenu ) {
5356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only clearTimeout( this.timer );
5357  
5358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Don't open if already open fixes a Firefox bug that caused a .5 pixel
5359 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // shift in the submenu position when mousing over the caret icon
5360 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( submenu.attr( "aria-hidden" ) !== "true" ) {
5361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5362 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5363  
5364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.timer = this._delay( function() {
5365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._close();
5366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._open( submenu );
5367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }, this.delay );
5368 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5369  
5370 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _open: function( submenu ) {
5371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var position = $.extend( {
5372 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only of: this.active
5373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }, this.options.position );
5374  
5375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only clearTimeout( this.timer );
5376 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.find( ".ui-menu" ).not( submenu.parents( ".ui-menu" ) )
5377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .hide()
5378 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( "aria-hidden", "true" );
5379  
5380 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only submenu
5381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .show()
5382 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .removeAttr( "aria-hidden" )
5383 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( "aria-expanded", "true" )
5384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .position( position );
5385 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5386  
5387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only collapseAll: function( event, all ) {
5388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only clearTimeout( this.timer );
5389 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.timer = this._delay( function() {
5390  
5391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If we were passed an event, look for the submenu that contains the event
5392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var currentMenu = all ? this.element :
5393 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( event && event.target ).closest( this.element.find( ".ui-menu" ) );
5394  
5395 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If we found no valid submenu ancestor, use the main menu to close all
5396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // sub menus anyway
5397 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !currentMenu.length ) {
5398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only currentMenu = this.element;
5399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5400  
5401 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._close( currentMenu );
5402  
5403 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.blur( event );
5404  
5405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Work around active item staying active after menu is blurred
5406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( currentMenu.find( ".ui-state-active" ), null, "ui-state-active" );
5407  
5408 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.activeMenu = currentMenu;
5409 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }, this.delay );
5410 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5411  
5412 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // With no arguments, closes the currently active menu - if nothing is active
5413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // it closes all menus. If passed an argument, it will search for menus BELOW
5414 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _close: function( startMenu ) {
5415 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !startMenu ) {
5416 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only startMenu = this.active ? this.active.parent() : this.element;
5417 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5418  
5419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only startMenu.find( ".ui-menu" )
5420 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .hide()
5421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( "aria-hidden", "true" )
5422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .attr( "aria-expanded", "false" );
5423 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5424  
5425 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _closeOnDocumentClick: function( event ) {
5426 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return !$( event.target ).closest( ".ui-menu" ).length;
5427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5428  
5429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _isDivider: function( item ) {
5430  
5431 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Match hyphen, em dash, en dash
5432 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return !/[^\-\u2014\u2013\s]/.test( item.text() );
5433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5434  
5435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only collapse: function( event ) {
5436 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var newItem = this.active &&
5437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active.parent().closest( ".ui-menu-item", this.element );
5438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( newItem && newItem.length ) {
5439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._close();
5440 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.focus( event, newItem );
5441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5443  
5444 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only expand: function( event ) {
5445 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var newItem = this.active &&
5446 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active
5447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .children( ".ui-menu " )
5448 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .find( this.options.items )
5449 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .first();
5450  
5451 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( newItem && newItem.length ) {
5452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._open( newItem.parent() );
5453  
5454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Delay so Firefox will not hide activedescendant change in expanding submenu from AT
5455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._delay( function() {
5456 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.focus( event, newItem );
5457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5459 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5460  
5461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only next: function( event ) {
5462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._move( "next", "first", event );
5463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5464  
5465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only previous: function( event ) {
5466 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._move( "prev", "last", event );
5467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5468  
5469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only isFirstItem: function() {
5470 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.active && !this.active.prevAll( ".ui-menu-item" ).length;
5471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5472  
5473 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only isLastItem: function() {
5474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.active && !this.active.nextAll( ".ui-menu-item" ).length;
5475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5476  
5477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _move: function( direction, filter, event ) {
5478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var next;
5479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.active ) {
5480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( direction === "first" || direction === "last" ) {
5481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only next = this.active
5482 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only [ direction === "first" ? "prevAll" : "nextAll" ]( ".ui-menu-item" )
5483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .eq( -1 );
5484 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
5485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only next = this.active
5486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only [ direction + "All" ]( ".ui-menu-item" )
5487 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .eq( 0 );
5488 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !next || !next.length || !this.active ) {
5491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only next = this.activeMenu.find( this.options.items )[ filter ]();
5492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5493  
5494 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.focus( event, next );
5495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5496  
5497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only nextPage: function( event ) {
5498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var item, base, height;
5499  
5500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.active ) {
5501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.next( event );
5502 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5503 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5504 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.isLastItem() ) {
5505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5507 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this._hasScroll() ) {
5508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only base = this.active.offset().top;
5509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only height = this.element.height();
5510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active.nextAll( ".ui-menu-item" ).each( function() {
5511 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only item = $( this );
5512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return item.offset().top - base - height < 0;
5513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5514  
5515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.focus( event, item );
5516 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
5517 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.focus( event, this.activeMenu.find( this.options.items )
5518 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only [ !this.active ? "first" : "last" ]() );
5519 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5521  
5522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only previousPage: function( event ) {
5523 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var item, base, height;
5524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.active ) {
5525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.next( event );
5526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5527 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.isFirstItem() ) {
5529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5530 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this._hasScroll() ) {
5532 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only base = this.active.offset().top;
5533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only height = this.element.height();
5534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active.prevAll( ".ui-menu-item" ).each( function() {
5535 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only item = $( this );
5536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return item.offset().top - base + height > 0;
5537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5538  
5539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.focus( event, item );
5540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
5541 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.focus( event, this.activeMenu.find( this.options.items ).first() );
5542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5544  
5545 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _hasScroll: function() {
5546 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.element.outerHeight() < this.element.prop( "scrollHeight" );
5547 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5548  
5549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only select: function( event ) {
5550  
5551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // TODO: It should never be possible to not have an active item at this
5552 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // point, but the tests don't trigger mouseenter before click.
5553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.active = this.active || $( event.target ).closest( ".ui-menu-item" );
5554 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var ui = { item: this.active };
5555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.active.has( ".ui-menu" ).length ) {
5556 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.collapseAll( event, true );
5557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._trigger( "select", event, ui );
5559 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5560  
5561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _filterMenuItems: function( character ) {
5562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var escapedCharacter = character.replace( /[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&" ),
5563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only regex = new RegExp( "^" + escapedCharacter, "i" );
5564  
5565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.activeMenu
5566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .find( this.options.items )
5567  
5568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Only match on items, not dividers or other content (#10571)
5569 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .filter( ".ui-menu-item" )
5570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .filter( function() {
5571 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return regex.test(
5572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.trim( $( this ).children( ".ui-menu-item-wrapper" ).text() ) );
5573 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5575 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only} );
5576  
5577  
5578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only/*!
5579 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * jQuery UI Autocomplete 1.12.1
5580 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jqueryui.com
5581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only *
5582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Copyright jQuery Foundation and other contributors
5583 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Released under the MIT license.
5584 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jquery.org/license
5585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
5586  
5587 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>label: Autocomplete
5588 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>group: Widgets
5589 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>description: Lists suggested words as the user is typing.
5590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>docs: http://api.jqueryui.com/autocomplete/
5591 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>demos: http://jqueryui.com/autocomplete/
5592 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/core.css
5593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/autocomplete.css
5594 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.theme: ../../themes/base/theme.css
5595  
5596  
5597  
5598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only$.widget( "ui.autocomplete", {
5599 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only version: "1.12.1",
5600 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only defaultElement: "<input>",
5601 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options: {
5602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only appendTo: null,
5603 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only autoFocus: false,
5604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only delay: 300,
5605 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only minLength: 1,
5606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only position: {
5607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only my: "left top",
5608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only at: "left bottom",
5609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only collision: "none"
5610 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only source: null,
5612  
5613 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Callbacks
5614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only change: null,
5615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only close: null,
5616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only focus: null,
5617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only open: null,
5618 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only response: null,
5619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only search: null,
5620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only select: null
5621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5622  
5623 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only requestIndex: 0,
5624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only pending: 0,
5625  
5626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _create: function() {
5627  
5628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Some browsers only repeat keydown events, not keypress events,
5629 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // so we use the suppressKeyPress flag to determine if we've already
5630 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // handled the keydown event. #7269
5631 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Unfortunately the code for & in keypress is the same as the up arrow,
5632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // so we use the suppressKeyPressRepeat flag to avoid handling keypress
5633 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // events when we know the keydown event was used to modify the
5634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // search term. #7799
5635 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var suppressKeyPress, suppressKeyPressRepeat, suppressInput,
5636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only nodeName = this.element[ 0 ].nodeName.toLowerCase(),
5637 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only isTextarea = nodeName === "textarea",
5638 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only isInput = nodeName === "input";
5639  
5640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Textareas are always multi-line
5641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Inputs are always single-line, even if inside a contentEditable element
5642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // IE also treats inputs as contentEditable
5643 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // All other element types are determined by whether or not they're contentEditable
5644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.isMultiLine = isTextarea || !isInput && this._isContentEditable( this.element );
5645  
5646 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.valueMethod = this.element[ isTextarea || isInput ? "val" : "text" ];
5647 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.isNewMenu = true;
5648  
5649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( "ui-autocomplete-input" );
5650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.attr( "autocomplete", "off" );
5651  
5652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._on( this.element, {
5653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only keydown: function( event ) {
5654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.element.prop( "readOnly" ) ) {
5655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressKeyPress = true;
5656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressInput = true;
5657 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressKeyPressRepeat = true;
5658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5660  
5661 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressKeyPress = false;
5662 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressInput = false;
5663 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressKeyPressRepeat = false;
5664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var keyCode = $.ui.keyCode;
5665 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only switch ( event.keyCode ) {
5666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.PAGE_UP:
5667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressKeyPress = true;
5668 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._move( "previousPage", event );
5669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5670 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.PAGE_DOWN:
5671 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressKeyPress = true;
5672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._move( "nextPage", event );
5673 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5674 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.UP:
5675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressKeyPress = true;
5676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._keyEvent( "previous", event );
5677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5678 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.DOWN:
5679 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressKeyPress = true;
5680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._keyEvent( "next", event );
5681 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.ENTER:
5683  
5684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // when menu is open and has focus
5685 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.menu.active ) {
5686  
5687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // #6055 - Opera still allows the keypress to occur
5688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // which causes forms to submit
5689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressKeyPress = true;
5690 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.preventDefault();
5691 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.menu.select( event );
5692 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5694 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.TAB:
5695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.menu.active ) {
5696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.menu.select( event );
5697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5698 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.ESCAPE:
5700 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.menu.element.is( ":visible" ) ) {
5701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.isMultiLine ) {
5702 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._value( this.term );
5703 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.close( event );
5705  
5706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Different browsers have different default behavior for escape
5707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Single press can mean undo or clear
5708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Double press in IE means clear the whole form
5709 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.preventDefault();
5710 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5711 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5712 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only default:
5713 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressKeyPressRepeat = true;
5714  
5715 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // search timeout should be triggered before the input value is changed
5716 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._searchTimeout( event );
5717 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5718 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5720 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only keypress: function( event ) {
5721 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( suppressKeyPress ) {
5722 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressKeyPress = false;
5723 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.isMultiLine || this.menu.element.is( ":visible" ) ) {
5724 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.preventDefault();
5725 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5727 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5728 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( suppressKeyPressRepeat ) {
5729 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5731  
5732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Replicate some key handlers to allow them to repeat in Firefox and Opera
5733 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var keyCode = $.ui.keyCode;
5734 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only switch ( event.keyCode ) {
5735 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.PAGE_UP:
5736 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._move( "previousPage", event );
5737 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.PAGE_DOWN:
5739 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._move( "nextPage", event );
5740 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5741 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.UP:
5742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._keyEvent( "previous", event );
5743 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5744 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case keyCode.DOWN:
5745 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._keyEvent( "next", event );
5746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
5747 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5748 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only input: function( event ) {
5750 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( suppressInput ) {
5751 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only suppressInput = false;
5752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.preventDefault();
5753 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5754 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5755 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._searchTimeout( event );
5756 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only focus: function() {
5758 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.selectedItem = null;
5759 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.previous = this._value();
5760 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5761 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only blur: function( event ) {
5762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.cancelBlur ) {
5763 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only delete this.cancelBlur;
5764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5765 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5766  
5767 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only clearTimeout( this.searching );
5768 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.close( event );
5769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._change( event );
5770 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5772  
5773 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._initSource();
5774 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.menu = $( "<ul>" )
5775 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .appendTo( this._appendTo() )
5776 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .menu( {
5777  
5778 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // disable ARIA support, the live region takes care of that
5779 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only role: null
5780 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } )
5781 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .hide()
5782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .menu( "instance" );
5783  
5784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.menu.element, "ui-autocomplete", "ui-front" );
5785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._on( this.menu.element, {
5786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only mousedown: function( event ) {
5787  
5788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // prevent moving focus out of the text field
5789 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.preventDefault();
5790  
5791 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // IE doesn't prevent moving focus even with event.preventDefault()
5792 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // so we set a flag to know when we should ignore the blur event
5793 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.cancelBlur = true;
5794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._delay( function() {
5795 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only delete this.cancelBlur;
5796  
5797 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Support: IE 8 only
5798 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Right clicking a menu item or selecting text from the menu items will
5799 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // result in focus moving out of the input. However, we've already received
5800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // and ignored the blur event because of the cancelBlur flag set above. So
5801 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // we restore focus to ensure that the menu closes properly based on the user's
5802 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // next actions.
5803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.element[ 0 ] !== $.ui.safeActiveElement( this.document[ 0 ] ) ) {
5804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.trigger( "focus" );
5805 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5806 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5807 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5808 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only menufocus: function( event, ui ) {
5809 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var label, item;
5810  
5811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // support: Firefox
5812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Prevent accidental activation of menu items in Firefox (#7024 #9118)
5813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.isNewMenu ) {
5814 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.isNewMenu = false;
5815 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( event.originalEvent && /^mouse/.test( event.originalEvent.type ) ) {
5816 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.menu.blur();
5817  
5818 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.document.one( "mousemove", function() {
5819 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( event.target ).trigger( event.originalEvent );
5820 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5821  
5822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
5823 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5825  
5826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only item = ui.item.data( "ui-autocomplete-item" );
5827 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( false !== this._trigger( "focus", event, { item: item } ) ) {
5828  
5829 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // use value to match what will end up in the input, if it was a key event
5830 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( event.originalEvent && /^key/.test( event.originalEvent.type ) ) {
5831 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._value( item.value );
5832 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5834  
5835 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Announce the value in the liveRegion
5836 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only label = ui.item.attr( "aria-label" ) || item.value;
5837 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( label && $.trim( label ).length ) {
5838 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.liveRegion.children().hide();
5839 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( "<div>" ).text( label ).appendTo( this.liveRegion );
5840 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5842 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only menuselect: function( event, ui ) {
5843 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var item = ui.item.data( "ui-autocomplete-item" ),
5844 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only previous = this.previous;
5845  
5846 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Only trigger when focus was lost (click on menu)
5847 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.element[ 0 ] !== $.ui.safeActiveElement( this.document[ 0 ] ) ) {
5848 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.trigger( "focus" );
5849 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.previous = previous;
5850  
5851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // #6109 - IE triggers two focus events and the second
5852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // is asynchronous, so we need to reset the previous
5853 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // term synchronously and asynchronously :-(
5854 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._delay( function() {
5855 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.previous = previous;
5856 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.selectedItem = item;
5857 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5858 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5859  
5860 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( false !== this._trigger( "select", event, { item: item } ) ) {
5861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._value( item.value );
5862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5863  
5864 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // reset the term after the select event
5865 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // this allows custom select handling to work properly
5866 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.term = this._value();
5867  
5868 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.close( event );
5869 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.selectedItem = item;
5870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5871 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5872  
5873 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.liveRegion = $( "<div>", {
5874 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only role: "status",
5875 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-live": "assertive",
5876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "aria-relevant": "additions"
5877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } )
5878 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .appendTo( this.document[ 0 ].body );
5879  
5880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.liveRegion, null, "ui-helper-hidden-accessible" );
5881  
5882 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Turning off autocomplete prevents the browser from remembering the
5883 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // value when navigating through history, so we re-enable autocomplete
5884 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // if the page is unloaded before the widget is destroyed. #7790
5885 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._on( this.window, {
5886 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only beforeunload: function() {
5887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.removeAttr( "autocomplete" );
5888 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5890 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5891  
5892 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _destroy: function() {
5893 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only clearTimeout( this.searching );
5894 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.removeAttr( "autocomplete" );
5895 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.menu.element.remove();
5896 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.liveRegion.remove();
5897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5898  
5899 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _setOption: function( key, value ) {
5900 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( key, value );
5901 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "source" ) {
5902 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._initSource();
5903 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5904 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "appendTo" ) {
5905 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.menu.element.appendTo( this._appendTo() );
5906 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5907 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "disabled" && value && this.xhr ) {
5908 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.xhr.abort();
5909 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5911  
5912 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _isEventTargetInWidget: function( event ) {
5913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var menuElement = this.menu.element[ 0 ];
5914  
5915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return event.target === this.element[ 0 ] ||
5916 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.target === menuElement ||
5917 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.contains( menuElement, event.target );
5918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5919  
5920 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _closeOnClickOutside: function( event ) {
5921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this._isEventTargetInWidget( event ) ) {
5922 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.close();
5923 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5925  
5926 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _appendTo: function() {
5927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var element = this.options.appendTo;
5928  
5929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( element ) {
5930 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only element = element.jquery || element.nodeType ?
5931 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( element ) :
5932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.document.find( element ).eq( 0 );
5933 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5934  
5935 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !element || !element[ 0 ] ) {
5936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only element = this.element.closest( ".ui-front, dialog" );
5937 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5938  
5939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !element.length ) {
5940 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only element = this.document[ 0 ].body;
5941 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5942  
5943 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return element;
5944 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5945  
5946 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _initSource: function() {
5947 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var array, url,
5948 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that = this;
5949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( $.isArray( this.options.source ) ) {
5950 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only array = this.options.source;
5951 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.source = function( request, response ) {
5952 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only response( $.ui.autocomplete.filter( array, request.term ) );
5953 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
5954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( typeof this.options.source === "string" ) {
5955 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only url = this.options.source;
5956 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.source = function( request, response ) {
5957 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( that.xhr ) {
5958 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that.xhr.abort();
5959 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5960 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that.xhr = $.ajax( {
5961 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only url: url,
5962 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only data: request,
5963 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only dataType: "json",
5964 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only success: function( data ) {
5965 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only response( data );
5966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5967 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only error: function() {
5968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only response( [] );
5969 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5970 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
5971 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
5972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
5973 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.source = this.options.source;
5974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5975 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5976  
5977 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _searchTimeout: function( event ) {
5978 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only clearTimeout( this.searching );
5979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.searching = this._delay( function() {
5980  
5981 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Search if the value has changed, or if the user retypes the same value (see #7434)
5982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var equalValues = this.term === this._value(),
5983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only menuVisible = this.menu.element.is( ":visible" ),
5984 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only modifierKey = event.altKey || event.ctrlKey || event.metaKey || event.shiftKey;
5985  
5986 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !equalValues || ( equalValues && !menuVisible && !modifierKey ) ) {
5987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.selectedItem = null;
5988 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.search( null, event );
5989 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
5990 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }, this.options.delay );
5991 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
5992  
5993 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only search: function( value, event ) {
5994 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only value = value != null ? value : this._value();
5995  
5996 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Always save the actual value, not the one passed as an argument
5997 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.term = this._value();
5998  
5999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( value.length < this.options.minLength ) {
6000 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.close( event );
6001 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6002  
6003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this._trigger( "search", event ) === false ) {
6004 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
6005 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6006  
6007 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this._search( value );
6008 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6009  
6010 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _search: function( value ) {
6011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.pending++;
6012 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( "ui-autocomplete-loading" );
6013 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.cancelSearch = false;
6014  
6015 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.source( { term: value }, this._response() );
6016 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6017  
6018 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _response: function() {
6019 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var index = ++this.requestIndex;
6020  
6021 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return $.proxy( function( content ) {
6022 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( index === this.requestIndex ) {
6023 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.__response( content );
6024 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6025  
6026 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.pending--;
6027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.pending ) {
6028 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( "ui-autocomplete-loading" );
6029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6030 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }, this );
6031 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6032  
6033 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only __response: function( content ) {
6034 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( content ) {
6035 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only content = this._normalize( content );
6036 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._trigger( "response", null, { content: content } );
6038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.options.disabled && content && content.length && !this.cancelSearch ) {
6039 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._suggest( content );
6040 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._trigger( "open" );
6041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
6042  
6043 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // use ._close() instead of .close() so we don't cancel future searches
6044 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._close();
6045 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6047  
6048 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only close: function( event ) {
6049 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.cancelSearch = true;
6050 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._close( event );
6051 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6052  
6053 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _close: function( event ) {
6054  
6055 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Remove the handler that closes the menu on outside clicks
6056 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._off( this.document, "mousedown" );
6057  
6058 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.menu.element.is( ":visible" ) ) {
6059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.menu.element.hide();
6060 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.menu.blur();
6061 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.isNewMenu = true;
6062 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._trigger( "close", event );
6063 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6064 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6065  
6066 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _change: function( event ) {
6067 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.previous !== this._value() ) {
6068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._trigger( "change", event, { item: this.selectedItem } );
6069 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6070 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6071  
6072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _normalize: function( items ) {
6073  
6074 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // assume all items have the right format when the first item is complete
6075 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( items.length && items[ 0 ].label && items[ 0 ].value ) {
6076 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return items;
6077 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6078 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return $.map( items, function( item ) {
6079 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( typeof item === "string" ) {
6080 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return {
6081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only label: item,
6082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only value: item
6083 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
6084 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6085 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return $.extend( {}, item, {
6086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only label: item.label || item.value,
6087 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only value: item.value || item.label
6088 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6089 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6090 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6091  
6092 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _suggest: function( items ) {
6093 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var ul = this.menu.element.empty();
6094 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._renderMenu( ul, items );
6095 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.isNewMenu = true;
6096 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.menu.refresh();
6097  
6098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Size and position menu
6099 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ul.show();
6100 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._resizeMenu();
6101 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ul.position( $.extend( {
6102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only of: this.element
6103 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }, this.options.position ) );
6104  
6105 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.autoFocus ) {
6106 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.menu.next();
6107 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6108  
6109 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Listen for interactions outside of the widget (#6642)
6110 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._on( this.document, {
6111 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only mousedown: "_closeOnClickOutside"
6112 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6114  
6115 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _resizeMenu: function() {
6116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var ul = this.menu.element;
6117 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ul.outerWidth( Math.max(
6118  
6119 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Firefox wraps long text (possibly a rounding bug)
6120 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // so we add 1px to avoid the wrapping (#7513)
6121 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ul.width( "" ).outerWidth() + 1,
6122 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.outerWidth()
6123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ) );
6124 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6125  
6126 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _renderMenu: function( ul, items ) {
6127 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var that = this;
6128 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.each( items, function( index, item ) {
6129 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that._renderItemData( ul, item );
6130 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6132  
6133 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _renderItemData: function( ul, item ) {
6134 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this._renderItem( ul, item ).data( "ui-autocomplete-item", item );
6135 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6136  
6137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _renderItem: function( ul, item ) {
6138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return $( "<li>" )
6139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .append( $( "<div>" ).text( item.label ) )
6140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .appendTo( ul );
6141 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6142  
6143 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _move: function( direction, event ) {
6144 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.menu.element.is( ":visible" ) ) {
6145 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.search( null, event );
6146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
6147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6148 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.menu.isFirstItem() && /^previous/.test( direction ) ||
6149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.menu.isLastItem() && /^next/.test( direction ) ) {
6150  
6151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.isMultiLine ) {
6152 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._value( this.term );
6153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6154  
6155 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.menu.blur();
6156 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
6157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6158 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.menu[ direction ]( event );
6159 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6160  
6161 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only widget: function() {
6162 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.menu.element;
6163 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6164  
6165 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _value: function() {
6166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.valueMethod.apply( this.element, arguments );
6167 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6168  
6169 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _keyEvent: function( keyEvent, event ) {
6170 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.isMultiLine || this.menu.element.is( ":visible" ) ) {
6171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._move( keyEvent, event );
6172  
6173 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Prevents moving cursor to beginning/end of the text field in some browsers
6174 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.preventDefault();
6175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6177  
6178 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Support: Chrome <=50
6179 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // We should be able to just use this.element.prop( "isContentEditable" )
6180 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // but hidden elements always report false in Chrome.
6181 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // https://code.google.com/p/chromium/issues/detail?id=313082
6182 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _isContentEditable: function( element ) {
6183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !element.length ) {
6184 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return false;
6185 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6186  
6187 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var editable = element.prop( "contentEditable" );
6188  
6189 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( editable === "inherit" ) {
6190 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this._isContentEditable( element.parent() );
6191 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6192  
6193 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return editable === "true";
6194 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6195 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only} );
6196  
6197 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only$.extend( $.ui.autocomplete, {
6198 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only escapeRegex: function( value ) {
6199 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return value.replace( /[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&" );
6200 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6201 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only filter: function( array, term ) {
6202 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var matcher = new RegExp( $.ui.autocomplete.escapeRegex( term ), "i" );
6203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return $.grep( array, function( value ) {
6204 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return matcher.test( value.label || value.value || value );
6205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6206 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only} );
6208  
6209 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only// Live region extension, adding a `messages` option
6210 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only// NOTE: This is an experimental API. We are still investigating
6211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only// a full solution for string manipulation and internationalization.
6212 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only$.widget( "ui.autocomplete", $.ui.autocomplete, {
6213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options: {
6214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only messages: {
6215 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only noResults: "No search results.",
6216 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only results: function( amount ) {
6217 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return amount + ( amount > 1 ? " results are" : " result is" ) +
6218 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only " available, use up and down arrow keys to navigate.";
6219 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6221 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6222  
6223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only __response: function( content ) {
6224 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var message;
6225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._superApply( arguments );
6226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.disabled || this.cancelSearch ) {
6227 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
6228 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( content && content.length ) {
6230 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only message = this.options.messages.results( content.length );
6231 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
6232 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only message = this.options.messages.noResults;
6233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.liveRegion.children().hide();
6235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( "<div>" ).text( message ).appendTo( this.liveRegion );
6236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only} );
6238  
6239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyvar widgetsAutocomplete = $.ui.autocomplete;
6240  
6241  
6242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only/*!
6243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * jQuery UI Controlgroup 1.12.1
6244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jqueryui.com
6245 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only *
6246 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Copyright jQuery Foundation and other contributors
6247 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Released under the MIT license.
6248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jquery.org/license
6249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
6250  
6251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>label: Controlgroup
6252 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>group: Widgets
6253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>description: Visually groups form control widgets
6254 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>docs: http://api.jqueryui.com/controlgroup/
6255 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>demos: http://jqueryui.com/controlgroup/
6256 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/core.css
6257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/controlgroup.css
6258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.theme: ../../themes/base/theme.css
6259  
6260  
6261 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyvar controlgroupCornerRegex = /ui-corner-([a-z]){2,6}/g;
6262  
6263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyvar widgetsControlgroup = $.widget( "ui.controlgroup", {
6264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only version: "1.12.1",
6265 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only defaultElement: "<div>",
6266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options: {
6267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only direction: "horizontal",
6268 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only disabled: null,
6269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only onlyVisible: true,
6270 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only items: {
6271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "button": "input[type=button], input[type=submit], input[type=reset], button, a",
6272 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "controlgroupLabel": ".ui-controlgroup-label",
6273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "checkboxradio": "input[type='checkbox'], input[type='radio']",
6274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "selectmenu": "select",
6275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "spinner": ".ui-spinner-input"
6276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6277 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6278  
6279 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _create: function() {
6280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._enhance();
6281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6282  
6283 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // To support the enhanced option in jQuery Mobile, we isolate DOM manipulation
6284 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _enhance: function() {
6285 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.attr( "role", "toolbar" );
6286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.refresh();
6287 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6288  
6289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _destroy: function() {
6290 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._callChildMethod( "destroy" );
6291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.childWidgets.removeData( "ui-controlgroup-data" );
6292 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.removeAttr( "role" );
6293 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.items.controlgroupLabel ) {
6294 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element
6295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .find( this.options.items.controlgroupLabel )
6296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .find( ".ui-controlgroup-label-contents" )
6297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .contents().unwrap();
6298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6300  
6301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _initWidgets: function() {
6302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var that = this,
6303 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only childWidgets = [];
6304  
6305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // First we iterate over each of the items options
6306 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.each( this.options.items, function( widget, selector ) {
6307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var labels;
6308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var options = {};
6309  
6310 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Make sure the widget has a selector set
6311 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !selector ) {
6312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
6313 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6314  
6315 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( widget === "controlgroupLabel" ) {
6316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only labels = that.element.find( selector );
6317 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only labels.each( function() {
6318 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var element = $( this );
6319  
6320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( element.children( ".ui-controlgroup-label-contents" ).length ) {
6321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
6322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only element.contents()
6324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .wrapAll( "<span class='ui-controlgroup-label-contents'></span>" );
6325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6326 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that._addClass( labels, null, "ui-widget ui-widget-content ui-state-default" );
6327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only childWidgets = childWidgets.concat( labels.get() );
6328 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
6329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6330  
6331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Make sure the widget actually exists
6332 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !$.fn[ widget ] ) {
6333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
6334 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6335  
6336 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // We assume everything is in the middle to start because we can't determine
6337 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // first / last elements until all enhancments are done.
6338 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( that[ "_" + widget + "Options" ] ) {
6339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options = that[ "_" + widget + "Options" ]( "middle" );
6340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
6341 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options = { classes: {} };
6342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6343  
6344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Find instances of this widget inside controlgroup and init them
6345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that.element
6346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .find( selector )
6347 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .each( function() {
6348 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var element = $( this );
6349 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var instance = element[ widget ]( "instance" );
6350  
6351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // We need to clone the default options for this type of widget to avoid
6352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // polluting the variable options which has a wider scope than a single widget.
6353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var instanceOptions = $.widget.extend( {}, options );
6354  
6355 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If the button is the child of a spinner ignore it
6356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // TODO: Find a more generic solution
6357 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( widget === "button" && element.parent( ".ui-spinner" ).length ) {
6358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
6359 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6360  
6361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Create the widget if it doesn't exist
6362 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !instance ) {
6363 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only instance = element[ widget ]()[ widget ]( "instance" );
6364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( instance ) {
6366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only instanceOptions.classes =
6367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that._resolveClassesValues( instanceOptions.classes, instance );
6368 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only element[ widget ]( instanceOptions );
6370  
6371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Store an instance of the controlgroup to be able to reference
6372 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // from the outermost element for changing options and refresh
6373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var widgetElement = element[ widget ]( "widget" );
6374 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.data( widgetElement[ 0 ], "ui-controlgroup-data",
6375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only instance ? instance : element[ widget ]( "instance" ) );
6376  
6377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only childWidgets.push( widgetElement[ 0 ] );
6378 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6379 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6380  
6381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.childWidgets = $( $.unique( childWidgets ) );
6382 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.childWidgets, "ui-controlgroup-item" );
6383 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6384  
6385 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _callChildMethod: function( method ) {
6386 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.childWidgets.each( function() {
6387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var element = $( this ),
6388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only data = element.data( "ui-controlgroup-data" );
6389 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( data && data[ method ] ) {
6390 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only data[ method ]();
6391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6393 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6394  
6395 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _updateCornerClass: function( element, position ) {
6396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var remove = "ui-corner-top ui-corner-bottom ui-corner-left ui-corner-right ui-corner-all";
6397 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var add = this._buildSimpleOptions( position, "label" ).classes.label;
6398  
6399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( element, null, remove );
6400 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( element, null, add );
6401 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6402  
6403 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _buildSimpleOptions: function( position, key ) {
6404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var direction = this.options.direction === "vertical";
6405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var result = {
6406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only classes: {}
6407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
6408 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only result.classes[ key ] = {
6409 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "middle": "",
6410 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "first": "ui-corner-" + ( direction ? "top" : "left" ),
6411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "last": "ui-corner-" + ( direction ? "bottom" : "right" ),
6412 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "only": "ui-corner-all"
6413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }[ position ];
6414  
6415 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return result;
6416 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6417  
6418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _spinnerOptions: function( position ) {
6419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var options = this._buildSimpleOptions( position, "ui-spinner" );
6420  
6421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.classes[ "ui-spinner-up" ] = "";
6422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.classes[ "ui-spinner-down" ] = "";
6423  
6424 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return options;
6425 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6426  
6427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _buttonOptions: function( position ) {
6428 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this._buildSimpleOptions( position, "ui-button" );
6429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6430  
6431 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _checkboxradioOptions: function( position ) {
6432 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this._buildSimpleOptions( position, "ui-checkboxradio-label" );
6433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6434  
6435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _selectmenuOptions: function( position ) {
6436 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var direction = this.options.direction === "vertical";
6437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return {
6438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only width: direction ? "auto" : false,
6439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only classes: {
6440 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only middle: {
6441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-selectmenu-button-open": "",
6442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-selectmenu-button-closed": ""
6443 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6444 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only first: {
6445 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-selectmenu-button-open": "ui-corner-" + ( direction ? "top" : "tl" ),
6446 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-selectmenu-button-closed": "ui-corner-" + ( direction ? "top" : "left" )
6447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6448 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only last: {
6449 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-selectmenu-button-open": direction ? "" : "ui-corner-tr",
6450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-selectmenu-button-closed": "ui-corner-" + ( direction ? "bottom" : "right" )
6451 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only only: {
6453 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-selectmenu-button-open": "ui-corner-top",
6454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-selectmenu-button-closed": "ui-corner-all"
6455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6456  
6457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }[ position ]
6458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
6459 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6460  
6461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _resolveClassesValues: function( classes, instance ) {
6462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var result = {};
6463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.each( classes, function( key ) {
6464 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var current = instance.options.classes[ key ] || "";
6465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only current = $.trim( current.replace( controlgroupCornerRegex, "" ) );
6466 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only result[ key ] = ( current + " " + classes[ key ] ).replace( /\s+/g, " " );
6467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6468 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return result;
6469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6470  
6471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _setOption: function( key, value ) {
6472 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "direction" ) {
6473 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( "ui-controlgroup-" + this.options.direction );
6474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6475  
6476 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( key, value );
6477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "disabled" ) {
6478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._callChildMethod( value ? "disable" : "enable" );
6479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
6480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6481  
6482 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.refresh();
6483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6484  
6485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only refresh: function() {
6486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var children,
6487 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that = this;
6488  
6489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( "ui-controlgroup ui-controlgroup-" + this.options.direction );
6490  
6491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.direction === "horizontal" ) {
6492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( null, "ui-helper-clearfix" );
6493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6494 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._initWidgets();
6495  
6496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only children = this.childWidgets;
6497  
6498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // We filter here because we need to track all childWidgets not just the visible ones
6499 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.onlyVisible ) {
6500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only children = children.filter( ":visible" );
6501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6502  
6503 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( children.length ) {
6504  
6505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // We do this last because we need to make sure all enhancment is done
6506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // before determining first and last
6507 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.each( [ "first", "last" ], function( index, value ) {
6508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var instance = children[ value ]().data( "ui-controlgroup-data" );
6509  
6510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( instance && that[ "_" + instance.widgetName + "Options" ] ) {
6511 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var options = that[ "_" + instance.widgetName + "Options" ](
6512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only children.length === 1 ? "only" : value
6513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only );
6514 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.classes = that._resolveClassesValues( options.classes, instance );
6515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only instance.element[ instance.widgetName ]( options );
6516 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
6517 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that._updateCornerClass( children[ value ](), value );
6518 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6519 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6520  
6521 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Finally call the refresh method on each of the child widgets.
6522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._callChildMethod( "refresh" );
6523 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only} );
6526  
6527 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only/*!
6528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * jQuery UI Checkboxradio 1.12.1
6529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jqueryui.com
6530 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only *
6531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Copyright jQuery Foundation and other contributors
6532 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Released under the MIT license.
6533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jquery.org/license
6534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
6535  
6536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>label: Checkboxradio
6537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>group: Widgets
6538 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>description: Enhances a form with multiple themeable checkboxes or radio buttons.
6539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>docs: http://api.jqueryui.com/checkboxradio/
6540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>demos: http://jqueryui.com/checkboxradio/
6541 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/core.css
6542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/button.css
6543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/checkboxradio.css
6544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.theme: ../../themes/base/theme.css
6545  
6546  
6547  
6548 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only$.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
6549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only version: "1.12.1",
6550 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options: {
6551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only disabled: null,
6552 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only label: null,
6553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only icon: true,
6554 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only classes: {
6555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-checkboxradio-label": "ui-corner-all",
6556 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-checkboxradio-icon": "ui-corner-all"
6557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6559  
6560 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _getCreateOptions: function() {
6561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var disabled, labels;
6562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var that = this;
6563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var options = this._super() || {};
6564  
6565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // We read the type here, because it makes more sense to throw a element type error first,
6566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // rather then the error for lack of a label. Often if its the wrong type, it
6567 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // won't have a label (e.g. calling on a div, btn, etc)
6568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._readType();
6569  
6570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only labels = this.element.labels();
6571  
6572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If there are multiple labels, use the last one
6573 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.label = $( labels[ labels.length - 1 ] );
6574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.label.length ) {
6575 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.error( "No label found for checkboxradio widget" );
6576 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6577  
6578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.originalLabel = "";
6579  
6580 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // We need to get the label text but this may also need to make sure it does not contain the
6581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // input itself.
6582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.label.contents().not( this.element[ 0 ] ).each( function() {
6583  
6584 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // The label contents could be text, html, or a mix. We concat each element to get a
6585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // string representation of the label, without the input as part of it.
6586 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only that.originalLabel += this.nodeType === 3 ? $( this ).text() : this.outerHTML;
6587 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6588  
6589 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Set the label option if we found label text
6590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.originalLabel ) {
6591 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.label = this.originalLabel;
6592 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6593  
6594 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only disabled = this.element[ 0 ].disabled;
6595 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( disabled != null ) {
6596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.disabled = disabled;
6597 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return options;
6599 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6600  
6601 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _create: function() {
6602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var checked = this.element[ 0 ].checked;
6603  
6604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._bindFormResetHandler();
6605  
6606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.disabled == null ) {
6607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.disabled = this.element[ 0 ].disabled;
6608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6609  
6610 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._setOption( "disabled", this.options.disabled );
6611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( "ui-checkboxradio", "ui-helper-hidden-accessible" );
6612 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.label, "ui-checkboxradio-label", "ui-button ui-widget" );
6613  
6614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.type === "radio" ) {
6615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.label, "ui-checkboxradio-radio-label" );
6616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6617  
6618 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.label && this.options.label !== this.originalLabel ) {
6619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateLabel();
6620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( this.originalLabel ) {
6621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.label = this.originalLabel;
6622 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6623  
6624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._enhance();
6625  
6626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( checked ) {
6627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.label, "ui-checkboxradio-checked", "ui-state-active" );
6628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.icon ) {
6629 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.icon, null, "ui-state-hover" );
6630 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6631 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6632  
6633 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._on( {
6634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only change: "_toggleClasses",
6635 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only focus: function() {
6636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.label, null, "ui-state-focus ui-visual-focus" );
6637 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6638 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only blur: function() {
6639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( this.label, null, "ui-state-focus ui-visual-focus" );
6640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6643  
6644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _readType: function() {
6645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var nodeName = this.element[ 0 ].nodeName.toLowerCase();
6646 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.type = this.element[ 0 ].type;
6647 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( nodeName !== "input" || !/radio|checkbox/.test( this.type ) ) {
6648 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.error( "Can't create checkboxradio on element.nodeName=" + nodeName +
6649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only " and element.type=" + this.type );
6650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6651 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6652  
6653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Support jQuery Mobile enhanced option
6654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _enhance: function() {
6655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateIcon( this.element[ 0 ].checked );
6656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6657  
6658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only widget: function() {
6659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.label;
6660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6661  
6662 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _getRadioGroup: function() {
6663 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var group;
6664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var name = this.element[ 0 ].name;
6665 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var nameSelector = "input[name='" + $.ui.escapeSelector( name ) + "']";
6666  
6667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !name ) {
6668 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return $( [] );
6669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6670  
6671 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.form.length ) {
6672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only group = $( this.form[ 0 ].elements ).filter( nameSelector );
6673 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
6674  
6675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Not inside a form, check all inputs that also are not inside a form
6676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only group = $( nameSelector ).filter( function() {
6677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return $( this ).form().length === 0;
6678 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6679 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6680  
6681 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return group.not( this.element );
6682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6683  
6684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _toggleClasses: function() {
6685 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var checked = this.element[ 0 ].checked;
6686 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._toggleClass( this.label, "ui-checkboxradio-checked", "ui-state-active", checked );
6687  
6688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.icon && this.type === "checkbox" ) {
6689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._toggleClass( this.icon, null, "ui-icon-check ui-state-checked", checked )
6690 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ._toggleClass( this.icon, null, "ui-icon-blank", !checked );
6691 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6692  
6693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.type === "radio" ) {
6694 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._getRadioGroup()
6695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only .each( function() {
6696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var instance = $( this ).checkboxradio( "instance" );
6697  
6698 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( instance ) {
6699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only instance._removeClass( instance.label,
6700 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-checkboxradio-checked", "ui-state-active" );
6701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6702 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6703 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6705  
6706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _destroy: function() {
6707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._unbindFormResetHandler();
6708  
6709 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.icon ) {
6710 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.icon.remove();
6711 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.iconSpace.remove();
6712 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6713 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6714  
6715 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _setOption: function( key, value ) {
6716  
6717 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // We don't allow the value to be set to nothing
6718 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "label" && !value ) {
6719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
6720 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6721  
6722 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( key, value );
6723  
6724 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "disabled" ) {
6725 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._toggleClass( this.label, null, "ui-state-disabled", value );
6726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element[ 0 ].disabled = value;
6727  
6728 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Don't refresh when setting disabled
6729 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
6730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6731 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.refresh();
6732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6733  
6734 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _updateIcon: function( checked ) {
6735 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var toAdd = "ui-icon ui-icon-background ";
6736  
6737 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.icon ) {
6738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.icon ) {
6739 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.icon = $( "<span>" );
6740 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.iconSpace = $( "<span> </span>" );
6741 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.iconSpace, "ui-checkboxradio-icon-space" );
6742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6743  
6744 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.type === "checkbox" ) {
6745 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toAdd += checked ? "ui-icon-check ui-state-checked" : "ui-icon-blank";
6746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( this.icon, null, checked ? "ui-icon-blank" : "ui-icon-check" );
6747 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
6748 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only toAdd += "ui-icon-blank";
6749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6750 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.icon, "ui-checkboxradio-icon", toAdd );
6751 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !checked ) {
6752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( this.icon, null, "ui-icon-check ui-state-checked" );
6753 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6754 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.icon.prependTo( this.label ).after( this.iconSpace );
6755 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( this.icon !== undefined ) {
6756 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.icon.remove();
6757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.iconSpace.remove();
6758 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only delete this.icon;
6759 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6760 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6761  
6762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _updateLabel: function() {
6763  
6764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Remove the contents of the label ( minus the icon, icon space, and input )
6765 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var contents = this.label.contents().not( this.element[ 0 ] );
6766 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.icon ) {
6767 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only contents = contents.not( this.icon[ 0 ] );
6768 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.iconSpace ) {
6770 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only contents = contents.not( this.iconSpace[ 0 ] );
6771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6772 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only contents.remove();
6773  
6774 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.label.append( this.options.label );
6775 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6776  
6777 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only refresh: function() {
6778 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var checked = this.element[ 0 ].checked,
6779 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only isDisabled = this.element[ 0 ].disabled;
6780  
6781 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateIcon( checked );
6782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._toggleClass( this.label, "ui-checkboxradio-checked", "ui-state-active", checked );
6783 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.label !== null ) {
6784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateLabel();
6785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6786  
6787 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( isDisabled !== this.options.disabled ) {
6788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._setOptions( { "disabled": isDisabled } );
6789 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6790 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6791  
6792 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only} ] );
6793  
6794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyvar widgetsCheckboxradio = $.ui.checkboxradio;
6795  
6796  
6797 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only/*!
6798 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * jQuery UI Button 1.12.1
6799 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jqueryui.com
6800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only *
6801 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Copyright jQuery Foundation and other contributors
6802 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Released under the MIT license.
6803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jquery.org/license
6804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
6805  
6806 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>label: Button
6807 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>group: Widgets
6808 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>description: Enhances a form with themeable buttons.
6809 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>docs: http://api.jqueryui.com/button/
6810 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>demos: http://jqueryui.com/button/
6811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/core.css
6812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/button.css
6813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.theme: ../../themes/base/theme.css
6814  
6815  
6816  
6817 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only$.widget( "ui.button", {
6818 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only version: "1.12.1",
6819 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only defaultElement: "<button>",
6820 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options: {
6821 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only classes: {
6822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "ui-button": "ui-corner-all"
6823 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only disabled: null,
6825 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only icon: null,
6826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only iconPosition: "beginning",
6827 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only label: null,
6828 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only showLabel: true
6829 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6830  
6831 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _getCreateOptions: function() {
6832 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var disabled,
6833  
6834 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // This is to support cases like in jQuery Mobile where the base widget does have
6835 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // an implementation of _getCreateOptions
6836 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options = this._super() || {};
6837  
6838 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.isInput = this.element.is( "input" );
6839  
6840 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only disabled = this.element[ 0 ].disabled;
6841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( disabled != null ) {
6842 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.disabled = disabled;
6843 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6844  
6845 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.originalLabel = this.isInput ? this.element.val() : this.element.html();
6846 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.originalLabel ) {
6847 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.label = this.originalLabel;
6848 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6849  
6850 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return options;
6851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6852  
6853 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _create: function() {
6854 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.option.showLabel & !this.options.icon ) {
6855 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.showLabel = true;
6856 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6857  
6858 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // We have to check the option again here even though we did in _getCreateOptions,
6859 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // because null may have been passed on init which would override what was set in
6860 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // _getCreateOptions
6861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.disabled == null ) {
6862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.disabled = this.element[ 0 ].disabled || false;
6863 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6864  
6865 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.hasTitle = !!this.element.attr( "title" );
6866  
6867 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Check to see if the label needs to be set or if its already correct
6868 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.label && this.options.label !== this.originalLabel ) {
6869 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.isInput ) {
6870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.val( this.options.label );
6871 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
6872 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.html( this.options.label );
6873 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6874 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6875 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( "ui-button", "ui-widget" );
6876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._setOption( "disabled", this.options.disabled );
6877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._enhance();
6878  
6879 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.element.is( "a" ) ) {
6880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._on( {
6881 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "keyup": function( event ) {
6882 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( event.keyCode === $.ui.keyCode.SPACE ) {
6883 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.preventDefault();
6884  
6885 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Support: PhantomJS <= 1.9, IE 8 Only
6886 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If a native click is available use it so we actually cause navigation
6887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // otherwise just trigger a click event
6888 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.element[ 0 ].click ) {
6889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element[ 0 ].click();
6890 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
6891 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.trigger( "click" );
6892 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6893 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6894 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6895 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
6896 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6898  
6899 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _enhance: function() {
6900 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.element.is( "button" ) ) {
6901 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.attr( "role", "button" );
6902 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6903  
6904 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.icon ) {
6905 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateIcon( "icon", this.options.icon );
6906 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateTooltip();
6907 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6908 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6909  
6910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _updateTooltip: function() {
6911 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.title = this.element.attr( "title" );
6912  
6913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.options.showLabel && !this.title ) {
6914 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.attr( "title", this.options.label );
6915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6916 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6917  
6918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _updateIcon: function( option, value ) {
6919 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var icon = option !== "iconPosition",
6920 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only position = icon ? this.options.iconPosition : value,
6921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only displayBlock = position === "top" || position === "bottom";
6922  
6923 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Create icon
6924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.icon ) {
6925 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.icon = $( "<span>" );
6926  
6927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.icon, "ui-button-icon", "ui-icon" );
6928  
6929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.options.showLabel ) {
6930 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( "ui-button-icon-only" );
6931 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( icon ) {
6933  
6934 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If we are updating the icon remove the old icon class
6935 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( this.icon, null, this.options.icon );
6936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6937  
6938 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If we are updating the icon add the new icon class
6939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( icon ) {
6940 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.icon, null, value );
6941 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6942  
6943 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._attachIcon( position );
6944  
6945 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If the icon is on top or bottom we need to add the ui-widget-icon-block class and remove
6946 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // the iconSpace if there is one.
6947 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( displayBlock ) {
6948 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.icon, null, "ui-widget-icon-block" );
6949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.iconSpace ) {
6950 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.iconSpace.remove();
6951 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6952 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
6953  
6954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Position is beginning or end so remove the ui-widget-icon-block class and add the
6955 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // space if it does not exist
6956 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.iconSpace ) {
6957 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.iconSpace = $( "<span> </span>" );
6958 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._addClass( this.iconSpace, "ui-button-icon-space" );
6959 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6960 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._removeClass( this.icon, null, "ui-wiget-icon-block" );
6961 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._attachIconSpace( position );
6962 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6963 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6964  
6965 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _destroy: function() {
6966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.removeAttr( "role" );
6967  
6968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.icon ) {
6969 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.icon.remove();
6970 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6971 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.iconSpace ) {
6972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.iconSpace.remove();
6973 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.hasTitle ) {
6975 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.removeAttr( "title" );
6976 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6977 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6978  
6979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _attachIconSpace: function( iconPosition ) {
6980 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.icon[ /^(?:end|bottom)/.test( iconPosition ) ? "before" : "after" ]( this.iconSpace );
6981 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6982  
6983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _attachIcon: function( iconPosition ) {
6984 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element[ /^(?:end|bottom)/.test( iconPosition ) ? "append" : "prepend" ]( this.icon );
6985 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6986  
6987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _setOptions: function( options ) {
6988 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var newShowLabel = options.showLabel === undefined ?
6989 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.showLabel :
6990 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.showLabel,
6991 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only newIcon = options.icon === undefined ? this.options.icon : options.icon;
6992  
6993 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !newShowLabel && !newIcon ) {
6994 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options.showLabel = true;
6995 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
6996 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( options );
6997 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
6998  
6999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _setOption: function( key, value ) {
7000 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "icon" ) {
7001 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( value ) {
7002 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateIcon( key, value );
7003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( this.icon ) {
7004 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.icon.remove();
7005 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.iconSpace ) {
7006 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.iconSpace.remove();
7007 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7008 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7009 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7010  
7011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "iconPosition" ) {
7012 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateIcon( key, value );
7013 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7014  
7015 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Make sure we can't end up with a button that has neither text nor icon
7016 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "showLabel" ) {
7017 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._toggleClass( "ui-button-icon-only", null, !value );
7018 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateTooltip();
7019 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7020  
7021 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "label" ) {
7022 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.isInput ) {
7023 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.val( value );
7024 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
7025  
7026 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // If there is an icon, append it, else nothing then append the value
7027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // this avoids removal of the icon when setting label text
7028 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.html( value );
7029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.icon ) {
7030 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._attachIcon( this.options.iconPosition );
7031 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._attachIconSpace( this.options.iconPosition );
7032 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7033 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7034 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7035  
7036 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( key, value );
7037  
7038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "disabled" ) {
7039 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._toggleClass( null, "ui-state-disabled", value );
7040 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element[ 0 ].disabled = value;
7041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( value ) {
7042 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element.blur();
7043 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7044 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7045 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7046  
7047 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only refresh: function() {
7048  
7049 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Make sure to only check disabled if its an element that supports this otherwise
7050 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // check for the disabled class to determine state
7051 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var isDisabled = this.element.is( "input, button" ) ?
7052 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.element[ 0 ].disabled : this.element.hasClass( "ui-button-disabled" );
7053  
7054 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( isDisabled !== this.options.disabled ) {
7055 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._setOptions( { disabled: isDisabled } );
7056 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7057  
7058 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateTooltip();
7059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7060 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only} );
7061  
7062 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only// DEPRECATED
7063 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyif ( $.uiBackCompat !== false ) {
7064  
7065 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Text and Icons options
7066 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.widget( "ui.button", $.ui.button, {
7067 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only options: {
7068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only text: true,
7069 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only icons: {
7070 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only primary: null,
7071 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only secondary: null
7072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7073 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7074  
7075 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _create: function() {
7076 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.showLabel && !this.options.text ) {
7077 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.showLabel = this.options.text;
7078 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7079 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.options.showLabel && this.options.text ) {
7080 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.text = this.options.showLabel;
7081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.options.icon && ( this.options.icons.primary ||
7083 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.icons.secondary ) ) {
7084 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this.options.icons.primary ) {
7085 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.icon = this.options.icons.primary;
7086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
7087 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.icon = this.options.icons.secondary;
7088 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.iconPosition = "end";
7089 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7090 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( this.options.icon ) {
7091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.icons.primary = this.options.icon;
7092 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7093 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super();
7094 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7095  
7096 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _setOption: function( key, value ) {
7097 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "text" ) {
7098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( "showLabel", value );
7099 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
7100 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7101 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "showLabel" ) {
7102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.text = value;
7103 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7104 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "icon" ) {
7105 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.options.icons.primary = value;
7106 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7107 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( key === "icons" ) {
7108 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( value.primary ) {
7109 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( "icon", value.primary );
7110 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( "iconPosition", "beginning" );
7111 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( value.secondary ) {
7112 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( "icon", value.secondary );
7113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._super( "iconPosition", "end" );
7114 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7115 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._superApply( arguments );
7117 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7118 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
7119  
7120 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.fn.button = ( function( orig ) {
7121 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return function() {
7122 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this.length || ( this.length && this[ 0 ].tagName !== "INPUT" ) ||
7123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ( this.length && this[ 0 ].tagName === "INPUT" && (
7124 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.attr( "type" ) !== "checkbox" && this.attr( "type" ) !== "radio"
7125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ) ) ) {
7126 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return orig.apply( this, arguments );
7127 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7128 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !$.ui.checkboxradio ) {
7129 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.error( "Checkboxradio widget missing" );
7130 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( arguments.length === 0 ) {
7132 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.checkboxradio( {
7133 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "icon": false
7134 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
7135 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7136 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.checkboxradio.apply( this, arguments );
7137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
7138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } )( $.fn.button );
7139  
7140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.fn.buttonset = function() {
7141 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !$.ui.controlgroup ) {
7142 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.error( "Controlgroup widget missing" );
7143 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7144 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( arguments[ 0 ] === "option" && arguments[ 1 ] === "items" && arguments[ 2 ] ) {
7145 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.controlgroup.apply( this,
7146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only [ arguments[ 0 ], "items.button", arguments[ 2 ] ] );
7147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7148 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( arguments[ 0 ] === "option" && arguments[ 1 ] === "items" ) {
7149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.controlgroup.apply( this, [ arguments[ 0 ], "items.button" ] );
7150 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( typeof arguments[ 0 ] === "object" && arguments[ 0 ].items ) {
7152 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only arguments[ 0 ].items = {
7153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only button: arguments[ 0 ].items
7154 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
7155 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7156 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.controlgroup.apply( this, arguments );
7157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
7158 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only}
7159  
7160 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyvar widgetsButton = $.ui.button;
7161  
7162  
7163 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only// jscs:disable maximumLineLength
7164 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only/* jscs:disable requireCamelCaseOrUpperCaseIdentifiers */
7165 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only/*!
7166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * jQuery UI Datepicker 1.12.1
7167 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jqueryui.com
7168 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only *
7169 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Copyright jQuery Foundation and other contributors
7170 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * Released under the MIT license.
7171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * http://jquery.org/license
7172 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7173  
7174 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>label: Datepicker
7175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>group: Widgets
7176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>description: Displays a calendar from an input or inline for selecting dates.
7177 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>docs: http://api.jqueryui.com/datepicker/
7178 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>demos: http://jqueryui.com/datepicker/
7179 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/core.css
7180 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.structure: ../../themes/base/datepicker.css
7181 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only//>>css.theme: ../../themes/base/theme.css
7182  
7183  
7184  
7185 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only$.extend( $.ui, { datepicker: { version: "1.12.1" } } );
7186  
7187 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyvar datepicker_instActive;
7188  
7189 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyfunction datepicker_getZindex( elem ) {
7190 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var position, value;
7191 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only while ( elem.length && elem[ 0 ] !== document ) {
7192  
7193 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Ignore z-index if position is set to a value where z-index is ignored by the browser
7194 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // This makes behavior of this function consistent across browsers
7195 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // WebKit always returns auto if the element is positioned
7196 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only position = elem.css( "position" );
7197 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( position === "absolute" || position === "relative" || position === "fixed" ) {
7198  
7199 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // IE returns 0 when zIndex is not specified
7200 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // other browsers return a string
7201 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // we ignore the case of nested elements with an explicit value of 0
7202 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // <div style="z-index: -10;"><div style="z-index: 0;"></div></div>
7203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only value = parseInt( elem.css( "zIndex" ), 10 );
7204 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !isNaN( value ) && value !== 0 ) {
7205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return value;
7206 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only elem = elem.parent();
7209 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7210  
7211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return 0;
7212 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only}
7213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only/* Date picker manager.
7214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only Use the singleton instance of this class, $.datepicker, to interact with the date picker.
7215 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only Settings for (groups of) date pickers are maintained in an instance object,
7216 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only allowing multiple different settings on the same page. */
7217  
7218 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 onlyfunction Datepicker() {
7219 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._curInst = null; // The current instance in use
7220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._keyEvent = false; // If the last event was a key event
7221 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._disabledInputs = []; // List of date picker inputs that have been disabled
7222 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._datepickerShowing = false; // True if the popup picker is showing , false if not
7223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._inDialog = false; // True if showing within a "dialog", false if not
7224 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._mainDivId = "ui-datepicker-div"; // The ID of the main datepicker division
7225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._inlineClass = "ui-datepicker-inline"; // The name of the inline marker class
7226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._appendClass = "ui-datepicker-append"; // The name of the append marker class
7227 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._triggerClass = "ui-datepicker-trigger"; // The name of the trigger marker class
7228 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._dialogClass = "ui-datepicker-dialog"; // The name of the dialog marker class
7229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._disableClass = "ui-datepicker-disabled"; // The name of the disabled covering marker class
7230 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._unselectableClass = "ui-datepicker-unselectable"; // The name of the unselectable cell marker class
7231 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._currentClass = "ui-datepicker-current-day"; // The name of the current day marker class
7232 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._dayOverClass = "ui-datepicker-days-cell-over"; // The name of the day hover marker class
7233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.regional = []; // Available regional settings, indexed by language code
7234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.regional[ "" ] = { // Default regional settings
7235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only closeText: "Done", // Display text for close link
7236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only prevText: "Prev", // Display text for previous month link
7237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only nextText: "Next", // Display text for next month link
7238 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only currentText: "Today", // Display text for current month link
7239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only monthNames: [ "January","February","March","April","May","June",
7240 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "July","August","September","October","November","December" ], // Names of months for drop-down and formatting
7241 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ], // For formatting
7242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only dayNames: [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ], // For formatting
7243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only dayNamesShort: [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ], // For formatting
7244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only dayNamesMin: [ "Su","Mo","Tu","We","Th","Fr","Sa" ], // Column headings for days starting at Sunday
7245 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only weekHeader: "Wk", // Column header for week of the year
7246 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only dateFormat: "mm/dd/yy", // See format options on parseDate
7247 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only firstDay: 0, // The first day of the week, Sun = 0, Mon = 1, ...
7248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only isRTL: false, // True if right-to-left language, false if left-to-right
7249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only showMonthAfterYear: false, // True if the year select precedes month, false for month then year
7250 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only yearSuffix: "" // Additional text to append to the year in the month headers
7251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
7252 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._defaults = { // Global defaults for all the date picker instances
7253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only showOn: "focus", // "focus" for popup on focus,
7254 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // "button" for trigger button, or "both" for either
7255 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only showAnim: "fadeIn", // Name of jQuery animation for popup
7256 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only showOptions: {}, // Options for enhanced animations
7257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only defaultDate: null, // Used when field is blank: actual date,
7258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // +/-number for offset from today, null for today
7259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only appendText: "", // Display text following the input box, e.g. showing the format
7260 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only buttonText: "...", // Text for trigger button
7261 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only buttonImage: "", // URL for trigger button image
7262 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only buttonImageOnly: false, // True if the image appears alone, false if it appears on a button
7263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only hideIfNoPrevNext: false, // True to hide next/previous month links
7264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // if not applicable, false to just disable them
7265 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only navigationAsDateFormat: false, // True if date formatting applied to prev/today/next links
7266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only gotoCurrent: false, // True if today link goes back to current selection instead
7267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only changeMonth: false, // True if month can be selected directly, false if only prev/next
7268 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only changeYear: false, // True if year can be selected directly, false if only prev/next
7269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only yearRange: "c-10:c+10", // Range of years to display in drop-down,
7270 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // either relative to today's year (-nn:+nn), relative to currently displayed year
7271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // (c-nn:c+nn), absolute (nnnn:nnnn), or a combination of the above (nnnn:-n)
7272 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only showOtherMonths: false, // True to show dates in other months, false to leave blank
7273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only selectOtherMonths: false, // True to allow selection of dates in other months, false for unselectable
7274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only showWeek: false, // True to show week of the year, false to not show it
7275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only calculateWeek: this.iso8601Week, // How to calculate the week of the year,
7276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // takes a Date and returns the number of the week for it
7277 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only shortYearCutoff: "+10", // Short year values < this are in the current century,
7278 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // > this are in the previous century,
7279 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // string value starting with "+" for current year + value
7280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only minDate: null, // The earliest selectable date, or null for no limit
7281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only maxDate: null, // The latest selectable date, or null for no limit
7282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only duration: "fast", // Duration of display/closure
7283 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only beforeShowDay: null, // Function that takes a date and returns an array with
7284 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // [0] = true if selectable, false if not, [1] = custom CSS class name(s) or "",
7285 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // [2] = cell title (optional), e.g. $.datepicker.noWeekends
7286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only beforeShow: null, // Function that takes an input field and
7287 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // returns a set of custom settings for the date picker
7288 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only onSelect: null, // Define a callback function when a date is selected
7289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only onChangeMonthYear: null, // Define a callback function when the month or year is changed
7290 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only onClose: null, // Define a callback function when the datepicker is closed
7291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only numberOfMonths: 1, // Number of months to show at a time
7292 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only showCurrentAtPos: 0, // The position in multipe months at which to show the current month (starting at 0)
7293 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only stepMonths: 1, // Number of months to step back/forward
7294 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only stepBigMonths: 12, // Number of months to step back/forward for the big links
7295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only altField: "", // Selector for an alternate field to store selected dates into
7296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only altFormat: "", // The date format to use for the alternate field
7297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only constrainInput: true, // The input is constrained by the current date format
7298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only showButtonPanel: false, // True to show button panel, false to not show it
7299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only autoSize: false, // True to size the input for the date format, false to leave as is
7300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only disabled: false // The initial disabled state
7301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
7302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.extend( this._defaults, this.regional[ "" ] );
7303 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.regional.en = $.extend( true, {}, this.regional[ "" ] );
7304 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.regional[ "en-US" ] = $.extend( true, {}, this.regional.en );
7305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.dpDiv = datepicker_bindHover( $( "<div id='" + this._mainDivId + "' class='ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>" ) );
7306 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only}
7307  
7308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only$.extend( Datepicker.prototype, {
7309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Class name added to elements to indicate already configured with a date picker. */
7310 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only markerClassName: "hasDatepicker",
7311  
7312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only //Keep track of the maximum number of rows displayed (see #7043)
7313 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only maxRows: 4,
7314  
7315 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // TODO rename to "widget" when switching to widget factory
7316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _widgetDatepicker: function() {
7317 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this.dpDiv;
7318 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7319  
7320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Override the default settings for all instances of the date picker.
7321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param settings object - the new settings to use as defaults (anonymous object)
7322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @return the manager object
7323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only setDefaults: function( settings ) {
7325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only datepicker_extendRemove( this._defaults, settings || {} );
7326 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this;
7327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7328  
7329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Attach the date picker to a jQuery selection.
7330 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param target element - the target input field or division or span
7331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param settings object - the new settings to use for this date picker instance (anonymous)
7332 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _attachDatepicker: function( target, settings ) {
7334 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var nodeName, inline, inst;
7335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only nodeName = target.nodeName.toLowerCase();
7336 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inline = ( nodeName === "div" || nodeName === "span" );
7337 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !target.id ) {
7338 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.uuid += 1;
7339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only target.id = "dp" + this.uuid;
7340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7341 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = this._newInst( $( target ), inline );
7342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.settings = $.extend( {}, settings || {} );
7343 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( nodeName === "input" ) {
7344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._connectDatepicker( target, inst );
7345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( inline ) {
7346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._inlineDatepicker( target, inst );
7347 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7348 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7349  
7350 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Create a new instance object. */
7351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _newInst: function( target, inline ) {
7352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var id = target[ 0 ].id.replace( /([^A-Za-z0-9_\-])/g, "\\\\$1" ); // escape jQuery meta chars
7353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return { id: id, input: target, // associated target
7354 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only selectedDay: 0, selectedMonth: 0, selectedYear: 0, // current selection
7355 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only drawMonth: 0, drawYear: 0, // month being drawn
7356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inline: inline, // is datepicker inline or not
7357 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only dpDiv: ( !inline ? this.dpDiv : // presentation div
7358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only datepicker_bindHover( $( "<div class='" + this._inlineClass + " ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>" ) ) ) };
7359 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7360  
7361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Attach the date picker to an input field. */
7362 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _connectDatepicker: function( target, inst ) {
7363 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var input = $( target );
7364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.append = $( [] );
7365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.trigger = $( [] );
7366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( input.hasClass( this.markerClassName ) ) {
7367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
7368 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._attachments( input, inst );
7370 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only input.addClass( this.markerClassName ).on( "keydown", this._doKeyDown ).
7371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only on( "keypress", this._doKeyPress ).on( "keyup", this._doKeyUp );
7372 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._autoSize( inst );
7373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.data( target, "datepicker", inst );
7374  
7375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only //If disabled option is true, disable the datepicker once it has been attached to the input (see ticket #5665)
7376 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst.settings.disabled ) {
7377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._disableDatepicker( target );
7378 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7379 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7380  
7381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Make attachments based on settings. */
7382 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _attachments: function( input, inst ) {
7383 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var showOn, buttonText, buttonImage,
7384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only appendText = this._get( inst, "appendText" ),
7385 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only isRTL = this._get( inst, "isRTL" );
7386  
7387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst.append ) {
7388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.append.remove();
7389 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7390 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( appendText ) {
7391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.append = $( "<span class='" + this._appendClass + "'>" + appendText + "</span>" );
7392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only input[ isRTL ? "before" : "after" ]( inst.append );
7393 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7394  
7395 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only input.off( "focus", this._showDatepicker );
7396  
7397 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst.trigger ) {
7398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.trigger.remove();
7399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7400  
7401 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only showOn = this._get( inst, "showOn" );
7402 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( showOn === "focus" || showOn === "both" ) { // pop-up date picker when in the marked field
7403 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only input.on( "focus", this._showDatepicker );
7404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( showOn === "button" || showOn === "both" ) { // pop-up date picker when button clicked
7406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only buttonText = this._get( inst, "buttonText" );
7407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only buttonImage = this._get( inst, "buttonImage" );
7408 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.trigger = $( this._get( inst, "buttonImageOnly" ) ?
7409 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( "<img/>" ).addClass( this._triggerClass ).
7410 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only attr( { src: buttonImage, alt: buttonText, title: buttonText } ) :
7411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( "<button type='button'></button>" ).addClass( this._triggerClass ).
7412 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only html( !buttonImage ? buttonText : $( "<img/>" ).attr(
7413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only { src:buttonImage, alt:buttonText, title:buttonText } ) ) );
7414 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only input[ isRTL ? "before" : "after" ]( inst.trigger );
7415 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.trigger.on( "click", function() {
7416 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( $.datepicker._datepickerShowing && $.datepicker._lastInput === input[ 0 ] ) {
7417 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._hideDatepicker();
7418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( $.datepicker._datepickerShowing && $.datepicker._lastInput !== input[ 0 ] ) {
7419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._hideDatepicker();
7420 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._showDatepicker( input[ 0 ] );
7421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
7422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._showDatepicker( input[ 0 ] );
7423 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7424 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return false;
7425 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
7426 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7428  
7429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Apply the maximum length for the date format. */
7430 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _autoSize: function( inst ) {
7431 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this._get( inst, "autoSize" ) && !inst.inline ) {
7432 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var findMax, max, maxI, i,
7433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only date = new Date( 2009, 12 - 1, 20 ), // Ensure double digits
7434 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only dateFormat = this._get( inst, "dateFormat" );
7435  
7436 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( dateFormat.match( /[DM]/ ) ) {
7437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only findMax = function( names ) {
7438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only max = 0;
7439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only maxI = 0;
7440 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only for ( i = 0; i < names.length; i++ ) {
7441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( names[ i ].length > max ) {
7442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only max = names[ i ].length;
7443 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only maxI = i;
7444 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7445 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7446 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return maxI;
7447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
7448 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only date.setMonth( findMax( this._get( inst, ( dateFormat.match( /MM/ ) ?
7449 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "monthNames" : "monthNamesShort" ) ) ) );
7450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only date.setDate( findMax( this._get( inst, ( dateFormat.match( /DD/ ) ?
7451 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "dayNames" : "dayNamesShort" ) ) ) + 20 - date.getDay() );
7452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7453 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.input.attr( "size", this._formatDate( inst, date ).length );
7454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7456  
7457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Attach an inline date picker to a div. */
7458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _inlineDatepicker: function( target, inst ) {
7459 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var divSpan = $( target );
7460 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( divSpan.hasClass( this.markerClassName ) ) {
7461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
7462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only divSpan.addClass( this.markerClassName ).append( inst.dpDiv );
7464 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.data( target, "datepicker", inst );
7465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._setDate( inst, this._getDefaultDate( inst ), true );
7466 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateDatepicker( inst );
7467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateAlternate( inst );
7468  
7469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only //If disabled option is true, disable the datepicker before showing it (see ticket #5665)
7470 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst.settings.disabled ) {
7471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._disableDatepicker( target );
7472 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7473  
7474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Set display:block in place of inst.dpDiv.show() which won't work on disconnected elements
7475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // http://bugs.jqueryui.com/ticket/7552 - A Datepicker created on a detached div has zero height
7476 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv.css( "display", "block" );
7477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7478  
7479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Pop-up the date picker in a "dialog" box.
7480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param input element - ignored
7481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param date string or Date - the initial date to display
7482 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param onSelect function - the function to call when a date is selected
7483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param settings object - update the dialog date picker instance's settings (anonymous object)
7484 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param pos int[2] - coordinates for the dialog's position within the screen or
7485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * event - with x/y coordinates or
7486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * leave empty for default (screen centre)
7487 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @return the manager object
7488 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _dialogDatepicker: function( input, date, onSelect, settings, pos ) {
7490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var id, browserWidth, browserHeight, scrollX, scrollY,
7491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = this._dialogInst; // internal instance
7492  
7493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !inst ) {
7494 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.uuid += 1;
7495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only id = "dp" + this.uuid;
7496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._dialogInput = $( "<input type='text' id='" + id +
7497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "' style='position: absolute; top: -100px; width: 0px;'/>" );
7498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._dialogInput.on( "keydown", this._doKeyDown );
7499 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( "body" ).append( this._dialogInput );
7500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = this._dialogInst = this._newInst( this._dialogInput, false );
7501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.settings = {};
7502 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.data( this._dialogInput[ 0 ], "datepicker", inst );
7503 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7504 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only datepicker_extendRemove( inst.settings, settings || {} );
7505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only date = ( date && date.constructor === Date ? this._formatDate( inst, date ) : date );
7506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._dialogInput.val( date );
7507  
7508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._pos = ( pos ? ( pos.length ? pos : [ pos.pageX, pos.pageY ] ) : null );
7509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !this._pos ) {
7510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only browserWidth = document.documentElement.clientWidth;
7511 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only browserHeight = document.documentElement.clientHeight;
7512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only scrollX = document.documentElement.scrollLeft || document.body.scrollLeft;
7513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only scrollY = document.documentElement.scrollTop || document.body.scrollTop;
7514 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._pos = // should use actual width/height below
7515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only [ ( browserWidth / 2 ) - 100 + scrollX, ( browserHeight / 2 ) - 150 + scrollY ];
7516 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7517  
7518 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Move input on screen for focus, but hidden behind dialog
7519 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._dialogInput.css( "left", ( this._pos[ 0 ] + 20 ) + "px" ).css( "top", this._pos[ 1 ] + "px" );
7520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.settings.onSelect = onSelect;
7521 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._inDialog = true;
7522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.dpDiv.addClass( this._dialogClass );
7523 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._showDatepicker( this._dialogInput[ 0 ] );
7524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( $.blockUI ) {
7525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.blockUI( this.dpDiv );
7526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7527 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.data( this._dialogInput[ 0 ], "datepicker", inst );
7528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return this;
7529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7530  
7531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Detach a datepicker from its control.
7532 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param target element - the target input field or division or span
7533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _destroyDatepicker: function( target ) {
7535 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var nodeName,
7536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $target = $( target ),
7537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = $.data( target, "datepicker" );
7538  
7539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !$target.hasClass( this.markerClassName ) ) {
7540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
7541 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7542  
7543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only nodeName = target.nodeName.toLowerCase();
7544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.removeData( target, "datepicker" );
7545 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( nodeName === "input" ) {
7546 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.append.remove();
7547 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.trigger.remove();
7548 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $target.removeClass( this.markerClassName ).
7549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only off( "focus", this._showDatepicker ).
7550 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only off( "keydown", this._doKeyDown ).
7551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only off( "keypress", this._doKeyPress ).
7552 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only off( "keyup", this._doKeyUp );
7553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( nodeName === "div" || nodeName === "span" ) {
7554 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $target.removeClass( this.markerClassName ).empty();
7555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7556  
7557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( datepicker_instActive === inst ) {
7558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only datepicker_instActive = null;
7559 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7560 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7561  
7562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Enable the date picker to a jQuery selection.
7563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param target element - the target input field or division or span
7564 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _enableDatepicker: function( target ) {
7566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var nodeName, inline,
7567 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $target = $( target ),
7568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = $.data( target, "datepicker" );
7569  
7570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !$target.hasClass( this.markerClassName ) ) {
7571 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
7572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7573  
7574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only nodeName = target.nodeName.toLowerCase();
7575 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( nodeName === "input" ) {
7576 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only target.disabled = false;
7577 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.trigger.filter( "button" ).
7578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only each( function() { this.disabled = false; } ).end().
7579 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only filter( "img" ).css( { opacity: "1.0", cursor: "" } );
7580 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( nodeName === "div" || nodeName === "span" ) {
7581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inline = $target.children( "." + this._inlineClass );
7582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inline.children().removeClass( "ui-state-disabled" );
7583 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inline.find( "select.ui-datepicker-month, select.ui-datepicker-year" ).
7584 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only prop( "disabled", false );
7585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7586 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._disabledInputs = $.map( this._disabledInputs,
7587 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only function( value ) { return ( value === target ? null : value ); } ); // delete entry
7588 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7589  
7590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Disable the date picker to a jQuery selection.
7591 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param target element - the target input field or division or span
7592 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _disableDatepicker: function( target ) {
7594 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var nodeName, inline,
7595 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $target = $( target ),
7596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = $.data( target, "datepicker" );
7597  
7598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !$target.hasClass( this.markerClassName ) ) {
7599 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
7600 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7601  
7602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only nodeName = target.nodeName.toLowerCase();
7603 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( nodeName === "input" ) {
7604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only target.disabled = true;
7605 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.trigger.filter( "button" ).
7606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only each( function() { this.disabled = true; } ).end().
7607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only filter( "img" ).css( { opacity: "0.5", cursor: "default" } );
7608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( nodeName === "div" || nodeName === "span" ) {
7609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inline = $target.children( "." + this._inlineClass );
7610 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inline.children().addClass( "ui-state-disabled" );
7611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inline.find( "select.ui-datepicker-month, select.ui-datepicker-year" ).
7612 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only prop( "disabled", true );
7613 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._disabledInputs = $.map( this._disabledInputs,
7615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only function( value ) { return ( value === target ? null : value ); } ); // delete entry
7616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._disabledInputs[ this._disabledInputs.length ] = target;
7617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7618  
7619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Is the first field in a jQuery collection disabled as a datepicker?
7620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param target element - the target input field or division or span
7621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @return boolean - true if disabled, false if enabled
7622 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7623 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _isDisabledDatepicker: function( target ) {
7624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !target ) {
7625 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return false;
7626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only for ( var i = 0; i < this._disabledInputs.length; i++ ) {
7628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this._disabledInputs[ i ] === target ) {
7629 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return true;
7630 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7631 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return false;
7633 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7634  
7635 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Retrieve the instance data for the target control.
7636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param target element - the target input field or division or span
7637 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @return object - the associated instance data
7638 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @throws error if a jQuery problem getting data
7639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _getInst: function( target ) {
7641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only try {
7642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return $.data( target, "datepicker" );
7643 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only catch ( err ) {
7645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only throw "Missing instance data for this datepicker";
7646 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7647 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7648  
7649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Update or retrieve the settings for a date picker attached to an input field or division.
7650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param target element - the target input field or division or span
7651 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param name object - the new settings to update or
7652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * string - the name of the setting to change or retrieve,
7653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * when retrieving also "all" for all instance settings or
7654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * "defaults" for all global defaults
7655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param value any - the new value for the setting
7656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * (omit if above is an object or to retrieve a value)
7657 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _optionDatepicker: function( target, name, value ) {
7659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var settings, date, minDate, maxDate,
7660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = this._getInst( target );
7661  
7662 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( arguments.length === 2 && typeof name === "string" ) {
7663 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return ( name === "defaults" ? $.extend( {}, $.datepicker._defaults ) :
7664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ( inst ? ( name === "all" ? $.extend( {}, inst.settings ) :
7665 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._get( inst, name ) ) : null ) );
7666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7667  
7668 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only settings = name || {};
7669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( typeof name === "string" ) {
7670 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only settings = {};
7671 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only settings[ name ] = value;
7672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7673  
7674 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst ) {
7675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this._curInst === inst ) {
7676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._hideDatepicker();
7677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7678  
7679 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only date = this._getDateDatepicker( target, true );
7680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only minDate = this._getMinMaxDate( inst, "min" );
7681 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only maxDate = this._getMinMaxDate( inst, "max" );
7682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only datepicker_extendRemove( inst.settings, settings );
7683  
7684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // reformat the old minDate/maxDate values if dateFormat changes and a new minDate/maxDate isn't provided
7685 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( minDate !== null && settings.dateFormat !== undefined && settings.minDate === undefined ) {
7686 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.settings.minDate = this._formatDate( inst, minDate );
7687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( maxDate !== null && settings.dateFormat !== undefined && settings.maxDate === undefined ) {
7689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.settings.maxDate = this._formatDate( inst, maxDate );
7690 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7691 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( "disabled" in settings ) {
7692 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( settings.disabled ) {
7693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._disableDatepicker( target );
7694 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
7695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._enableDatepicker( target );
7696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7698 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._attachments( $( target ), inst );
7699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._autoSize( inst );
7700 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._setDate( inst, date );
7701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateAlternate( inst );
7702 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateDatepicker( inst );
7703 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7705  
7706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Change method deprecated
7707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _changeDatepicker: function( target, name, value ) {
7708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._optionDatepicker( target, name, value );
7709 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7710  
7711 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Redraw the date picker attached to an input field or division.
7712 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param target element - the target input field or division or span
7713 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7714 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _refreshDatepicker: function( target ) {
7715 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var inst = this._getInst( target );
7716 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst ) {
7717 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateDatepicker( inst );
7718 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7720  
7721 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Set the dates for a jQuery selection.
7722 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param target element - the target input field or division or span
7723 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param date Date - the new date
7724 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7725 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _setDateDatepicker: function( target, date ) {
7726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var inst = this._getInst( target );
7727 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst ) {
7728 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._setDate( inst, date );
7729 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateDatepicker( inst );
7730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateAlternate( inst );
7731 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7733  
7734 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Get the date(s) for the first entry in a jQuery selection.
7735 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param target element - the target input field or division or span
7736 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param noDefault boolean - true if no default date is to be used
7737 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @return Date - the current date
7738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7739 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _getDateDatepicker: function( target, noDefault ) {
7740 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var inst = this._getInst( target );
7741 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst && !inst.inline ) {
7742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._setDateFromField( inst, noDefault );
7743 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7744 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return ( inst ? this._getDate( inst ) : null );
7745 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7746  
7747 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Handle keystrokes. */
7748 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _doKeyDown: function( event ) {
7749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var onSelect, dateStr, sel,
7750 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = $.datepicker._getInst( event.target ),
7751 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only handled = true,
7752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only isRTL = inst.dpDiv.is( ".ui-datepicker-rtl" );
7753  
7754 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst._keyEvent = true;
7755 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( $.datepicker._datepickerShowing ) {
7756 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only switch ( event.keyCode ) {
7757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case 9: $.datepicker._hideDatepicker();
7758 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only handled = false;
7759 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break; // hide on tab out
7760 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case 13: sel = $( "td." + $.datepicker._dayOverClass + ":not(." +
7761 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._currentClass + ")", inst.dpDiv );
7762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( sel[ 0 ] ) {
7763 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._selectDay( event.target, inst.selectedMonth, inst.selectedYear, sel[ 0 ] );
7764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7765  
7766 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only onSelect = $.datepicker._get( inst, "onSelect" );
7767 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( onSelect ) {
7768 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only dateStr = $.datepicker._formatDate( inst );
7769  
7770 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Trigger custom callback
7771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only onSelect.apply( ( inst.input ? inst.input[ 0 ] : null ), [ dateStr, inst ] );
7772 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
7773 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._hideDatepicker();
7774 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7775  
7776 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return false; // don't submit the form
7777 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case 27: $.datepicker._hideDatepicker();
7778 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break; // hide on escape
7779 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case 33: $.datepicker._adjustDate( event.target, ( event.ctrlKey ?
7780 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only -$.datepicker._get( inst, "stepBigMonths" ) :
7781 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only -$.datepicker._get( inst, "stepMonths" ) ), "M" );
7782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break; // previous month/year on page up/+ ctrl
7783 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case 34: $.datepicker._adjustDate( event.target, ( event.ctrlKey ?
7784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only +$.datepicker._get( inst, "stepBigMonths" ) :
7785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only +$.datepicker._get( inst, "stepMonths" ) ), "M" );
7786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break; // next month/year on page down/+ ctrl
7787 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case 35: if ( event.ctrlKey || event.metaKey ) {
7788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._clearDate( event.target );
7789 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7790 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only handled = event.ctrlKey || event.metaKey;
7791 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break; // clear on ctrl or command +end
7792 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case 36: if ( event.ctrlKey || event.metaKey ) {
7793 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._gotoToday( event.target );
7794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7795 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only handled = event.ctrlKey || event.metaKey;
7796 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break; // current on ctrl or command +home
7797 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case 37: if ( event.ctrlKey || event.metaKey ) {
7798 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._adjustDate( event.target, ( isRTL ? +1 : -1 ), "D" );
7799 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only handled = event.ctrlKey || event.metaKey;
7801  
7802 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // -1 day on ctrl or command +left
7803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( event.originalEvent.altKey ) {
7804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._adjustDate( event.target, ( event.ctrlKey ?
7805 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only -$.datepicker._get( inst, "stepBigMonths" ) :
7806 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only -$.datepicker._get( inst, "stepMonths" ) ), "M" );
7807 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7808  
7809 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // next month/year on alt +left on Mac
7810 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
7811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case 38: if ( event.ctrlKey || event.metaKey ) {
7812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._adjustDate( event.target, -7, "D" );
7813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7814 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only handled = event.ctrlKey || event.metaKey;
7815 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break; // -1 week on ctrl or command +up
7816 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case 39: if ( event.ctrlKey || event.metaKey ) {
7817 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._adjustDate( event.target, ( isRTL ? -1 : +1 ), "D" );
7818 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7819 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only handled = event.ctrlKey || event.metaKey;
7820  
7821 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // +1 day on ctrl or command +right
7822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( event.originalEvent.altKey ) {
7823 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._adjustDate( event.target, ( event.ctrlKey ?
7824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only +$.datepicker._get( inst, "stepBigMonths" ) :
7825 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only +$.datepicker._get( inst, "stepMonths" ) ), "M" );
7826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7827  
7828 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // next month/year on alt +right
7829 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
7830 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case 40: if ( event.ctrlKey || event.metaKey ) {
7831 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._adjustDate( event.target, +7, "D" );
7832 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only handled = event.ctrlKey || event.metaKey;
7834 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break; // +1 week on ctrl or command +down
7835 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only default: handled = false;
7836 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7837 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( event.keyCode === 36 && event.ctrlKey ) { // display the date picker on ctrl+home
7838 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._showDatepicker( this );
7839 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
7840 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only handled = false;
7841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7842  
7843 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( handled ) {
7844 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.preventDefault();
7845 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only event.stopPropagation();
7846 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7847 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7848  
7849 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Filter entered characters - based on date format. */
7850 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _doKeyPress: function( event ) {
7851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var chars, chr,
7852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = $.datepicker._getInst( event.target );
7853  
7854 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( $.datepicker._get( inst, "constrainInput" ) ) {
7855 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only chars = $.datepicker._possibleChars( $.datepicker._get( inst, "dateFormat" ) );
7856 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only chr = String.fromCharCode( event.charCode == null ? event.keyCode : event.charCode );
7857 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return event.ctrlKey || event.metaKey || ( chr < " " || !chars || chars.indexOf( chr ) > -1 );
7858 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7859 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7860  
7861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Synchronise manual entry and field/alternate field. */
7862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _doKeyUp: function( event ) {
7863 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var date,
7864 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = $.datepicker._getInst( event.target );
7865  
7866 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst.input.val() !== inst.lastVal ) {
7867 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only try {
7868 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only date = $.datepicker.parseDate( $.datepicker._get( inst, "dateFormat" ),
7869 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ( inst.input ? inst.input.val() : null ),
7870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._getFormatConfig( inst ) );
7871  
7872 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( date ) { // only if valid
7873 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._setDateFromField( inst );
7874 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._updateAlternate( inst );
7875 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._updateDatepicker( inst );
7876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7878 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only catch ( err ) {
7879 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7881 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return true;
7882 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7883  
7884 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Pop-up the date picker for a given input field.
7885 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * If false returned from beforeShow event handler do not show.
7886 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param input element - the input field attached to the date picker or
7887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * event - if triggered by focus
7888 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
7889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _showDatepicker: function( input ) {
7890 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only input = input.target || input;
7891 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( input.nodeName.toLowerCase() !== "input" ) { // find from button/image trigger
7892 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only input = $( "input", input.parentNode )[ 0 ];
7893 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7894  
7895 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( $.datepicker._isDisabledDatepicker( input ) || $.datepicker._lastInput === input ) { // already here
7896 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
7897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7898  
7899 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var inst, beforeShow, beforeShowSettings, isFixed,
7900 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only offset, showAnim, duration;
7901  
7902 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = $.datepicker._getInst( input );
7903 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( $.datepicker._curInst && $.datepicker._curInst !== inst ) {
7904 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._curInst.dpDiv.stop( true, true );
7905 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst && $.datepicker._datepickerShowing ) {
7906 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._hideDatepicker( $.datepicker._curInst.input[ 0 ] );
7907 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7908 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7909  
7910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only beforeShow = $.datepicker._get( inst, "beforeShow" );
7911 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only beforeShowSettings = beforeShow ? beforeShow.apply( input, [ input, inst ] ) : {};
7912 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( beforeShowSettings === false ) {
7913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
7914 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only datepicker_extendRemove( inst.settings, beforeShowSettings );
7916  
7917 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.lastVal = null;
7918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._lastInput = input;
7919 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._setDateFromField( inst );
7920  
7921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( $.datepicker._inDialog ) { // hide cursor
7922 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only input.value = "";
7923 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !$.datepicker._pos ) { // position below input
7925 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._pos = $.datepicker._findPos( input );
7926 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._pos[ 1 ] += input.offsetHeight; // add the height
7927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7928  
7929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only isFixed = false;
7930 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( input ).parents().each( function() {
7931 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only isFixed |= $( this ).css( "position" ) === "fixed";
7932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return !isFixed;
7933 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
7934  
7935 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only offset = { left: $.datepicker._pos[ 0 ], top: $.datepicker._pos[ 1 ] };
7936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._pos = null;
7937  
7938 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only //to avoid flashes on Firefox
7939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv.empty();
7940  
7941 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // determine sizing offscreen
7942 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv.css( { position: "absolute", display: "block", top: "-1000px" } );
7943 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._updateDatepicker( inst );
7944  
7945 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // fix width for dynamic number of date pickers
7946 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // and adjust position before showing
7947 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only offset = $.datepicker._checkOffset( inst, offset, isFixed );
7948 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv.css( { position: ( $.datepicker._inDialog && $.blockUI ?
7949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "static" : ( isFixed ? "fixed" : "absolute" ) ), display: "none",
7950 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only left: offset.left + "px", top: offset.top + "px" } );
7951  
7952 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !inst.inline ) {
7953 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only showAnim = $.datepicker._get( inst, "showAnim" );
7954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only duration = $.datepicker._get( inst, "duration" );
7955 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv.css( "z-index", datepicker_getZindex( $( input ) ) + 1 );
7956 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._datepickerShowing = true;
7957  
7958 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( $.effects && $.effects.effect[ showAnim ] ) {
7959 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv.show( showAnim, $.datepicker._get( inst, "showOptions" ), duration );
7960 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
7961 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv[ showAnim || "show" ]( showAnim ? duration : null );
7962 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7963  
7964 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( $.datepicker._shouldFocusInput( inst ) ) {
7965 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.input.trigger( "focus" );
7966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7967  
7968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._curInst = inst;
7969 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7970 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
7971  
7972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Generate the date picker content. */
7973 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _updateDatepicker: function( inst ) {
7974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this.maxRows = 4; //Reset the max number of rows being displayed (see #7043)
7975 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only datepicker_instActive = inst; // for delegate hover events
7976 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv.empty().append( this._generateHTML( inst ) );
7977 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._attachHandlers( inst );
7978  
7979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var origyearshtml,
7980 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only numMonths = this._getNumberOfMonths( inst ),
7981 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only cols = numMonths[ 1 ],
7982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only width = 17,
7983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only activeCell = inst.dpDiv.find( "." + this._dayOverClass + " a" );
7984  
7985 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( activeCell.length > 0 ) {
7986 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only datepicker_handleMouseover.apply( activeCell.get( 0 ) );
7987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7988  
7989 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv.removeClass( "ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4" ).width( "" );
7990 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( cols > 1 ) {
7991 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv.addClass( "ui-datepicker-multi-" + cols ).css( "width", ( width * cols ) + "em" );
7992 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
7993 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv[ ( numMonths[ 0 ] !== 1 || numMonths[ 1 ] !== 1 ? "add" : "remove" ) +
7994 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "Class" ]( "ui-datepicker-multi" );
7995 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv[ ( this._get( inst, "isRTL" ) ? "add" : "remove" ) +
7996 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only "Class" ]( "ui-datepicker-rtl" );
7997  
7998 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst === $.datepicker._curInst && $.datepicker._datepickerShowing && $.datepicker._shouldFocusInput( inst ) ) {
7999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.input.trigger( "focus" );
8000 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8001  
8002 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Deffered render of the years select (to avoid flashes on Firefox)
8003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst.yearshtml ) {
8004 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only origyearshtml = inst.yearshtml;
8005 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only setTimeout( function() {
8006  
8007 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only //assure that inst.yearshtml didn't change.
8008 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( origyearshtml === inst.yearshtml && inst.yearshtml ) {
8009 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv.find( "select.ui-datepicker-year:first" ).replaceWith( inst.yearshtml );
8010 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only origyearshtml = inst.yearshtml = null;
8012 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }, 0 );
8013 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8014 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8015  
8016 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // #6694 - don't focus the input if it's already focused
8017 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // this breaks the change event in IE
8018 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Support: IE and jQuery <1.9
8019 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _shouldFocusInput: function( inst ) {
8020 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return inst.input && inst.input.is( ":visible" ) && !inst.input.is( ":disabled" ) && !inst.input.is( ":focus" );
8021 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8022  
8023 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Check positioning to remain on screen. */
8024 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _checkOffset: function( inst, offset, isFixed ) {
8025 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var dpWidth = inst.dpDiv.outerWidth(),
8026 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only dpHeight = inst.dpDiv.outerHeight(),
8027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inputWidth = inst.input ? inst.input.outerWidth() : 0,
8028 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inputHeight = inst.input ? inst.input.outerHeight() : 0,
8029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only viewWidth = document.documentElement.clientWidth + ( isFixed ? 0 : $( document ).scrollLeft() ),
8030 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only viewHeight = document.documentElement.clientHeight + ( isFixed ? 0 : $( document ).scrollTop() );
8031  
8032 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only offset.left -= ( this._get( inst, "isRTL" ) ? ( dpWidth - inputWidth ) : 0 );
8033 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only offset.left -= ( isFixed && offset.left === inst.input.offset().left ) ? $( document ).scrollLeft() : 0;
8034 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only offset.top -= ( isFixed && offset.top === ( inst.input.offset().top + inputHeight ) ) ? $( document ).scrollTop() : 0;
8035  
8036 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Now check if datepicker is showing outside window viewport - move to a better place if so.
8037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only offset.left -= Math.min( offset.left, ( offset.left + dpWidth > viewWidth && viewWidth > dpWidth ) ?
8038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only Math.abs( offset.left + dpWidth - viewWidth ) : 0 );
8039 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only offset.top -= Math.min( offset.top, ( offset.top + dpHeight > viewHeight && viewHeight > dpHeight ) ?
8040 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only Math.abs( dpHeight + inputHeight ) : 0 );
8041  
8042 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return offset;
8043 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8044  
8045 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Find an object's position on the screen. */
8046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _findPos: function( obj ) {
8047 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var position,
8048 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = this._getInst( obj ),
8049 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only isRTL = this._get( inst, "isRTL" );
8050  
8051 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only while ( obj && ( obj.type === "hidden" || obj.nodeType !== 1 || $.expr.filters.hidden( obj ) ) ) {
8052 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only obj = obj[ isRTL ? "previousSibling" : "nextSibling" ];
8053 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8054  
8055 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only position = $( obj ).offset();
8056 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return [ position.left, position.top ];
8057 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8058  
8059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Hide the date picker from view.
8060 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param input element - the input field attached to the date picker
8061 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
8062 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _hideDatepicker: function( input ) {
8063 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var showAnim, duration, postProcess, onClose,
8064 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = this._curInst;
8065  
8066 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !inst || ( input && inst !== $.data( input, "datepicker" ) ) ) {
8067 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
8068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8069  
8070 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this._datepickerShowing ) {
8071 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only showAnim = this._get( inst, "showAnim" );
8072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only duration = this._get( inst, "duration" );
8073 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only postProcess = function() {
8074 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._tidyDialog( inst );
8075 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
8076  
8077 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // DEPRECATED: after BC for 1.8.x $.effects[ showAnim ] is not needed
8078 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( $.effects && ( $.effects.effect[ showAnim ] || $.effects[ showAnim ] ) ) {
8079 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv.hide( showAnim, $.datepicker._get( inst, "showOptions" ), duration, postProcess );
8080 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
8081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv[ ( showAnim === "slideDown" ? "slideUp" :
8082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ( showAnim === "fadeIn" ? "fadeOut" : "hide" ) ) ]( ( showAnim ? duration : null ), postProcess );
8083 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8084  
8085 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !showAnim ) {
8086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only postProcess();
8087 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8088 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._datepickerShowing = false;
8089  
8090 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only onClose = this._get( inst, "onClose" );
8091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( onClose ) {
8092 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only onClose.apply( ( inst.input ? inst.input[ 0 ] : null ), [ ( inst.input ? inst.input.val() : "" ), inst ] );
8093 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8094  
8095 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._lastInput = null;
8096 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this._inDialog ) {
8097 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._dialogInput.css( { position: "absolute", left: "0", top: "-100px" } );
8098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( $.blockUI ) {
8099 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.unblockUI();
8100 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( "body" ).append( this.dpDiv );
8101 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8103 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._inDialog = false;
8104 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8105 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8106  
8107 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Tidy up after a dialog display. */
8108 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _tidyDialog: function( inst ) {
8109 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.dpDiv.removeClass( this._dialogClass ).off( ".ui-datepicker-calendar" );
8110 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8111  
8112 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Close date picker if clicked elsewhere. */
8113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _checkExternalClick: function( event ) {
8114 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !$.datepicker._curInst ) {
8115 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
8116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8117  
8118 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var $target = $( event.target ),
8119 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = $.datepicker._getInst( $target[ 0 ] );
8120  
8121 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( ( ( $target[ 0 ].id !== $.datepicker._mainDivId &&
8122 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $target.parents( "#" + $.datepicker._mainDivId ).length === 0 &&
8123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only !$target.hasClass( $.datepicker.markerClassName ) &&
8124 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only !$target.closest( "." + $.datepicker._triggerClass ).length &&
8125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._datepickerShowing && !( $.datepicker._inDialog && $.blockUI ) ) ) ||
8126 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ( $target.hasClass( $.datepicker.markerClassName ) && $.datepicker._curInst !== inst ) ) {
8127 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.datepicker._hideDatepicker();
8128 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8129 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8130  
8131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Adjust one of the date sub-fields. */
8132 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _adjustDate: function( id, offset, period ) {
8133 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var target = $( id ),
8134 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = this._getInst( target[ 0 ] );
8135  
8136 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this._isDisabledDatepicker( target[ 0 ] ) ) {
8137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
8138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._adjustInstDate( inst, offset +
8140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ( period === "M" ? this._get( inst, "showCurrentAtPos" ) : 0 ), // undo positioning
8141 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only period );
8142 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateDatepicker( inst );
8143 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8144  
8145 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Action for current link. */
8146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _gotoToday: function( id ) {
8147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var date,
8148 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only target = $( id ),
8149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = this._getInst( target[ 0 ] );
8150  
8151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( this._get( inst, "gotoCurrent" ) && inst.currentDay ) {
8152 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.selectedDay = inst.currentDay;
8153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.drawMonth = inst.selectedMonth = inst.currentMonth;
8154 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.drawYear = inst.selectedYear = inst.currentYear;
8155 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
8156 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only date = new Date();
8157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.selectedDay = date.getDate();
8158 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.drawMonth = inst.selectedMonth = date.getMonth();
8159 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.drawYear = inst.selectedYear = date.getFullYear();
8160 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8161 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._notifyChange( inst );
8162 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._adjustDate( target );
8163 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8164  
8165 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Action for selecting a new month/year. */
8166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _selectMonthYear: function( id, select, period ) {
8167 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var target = $( id ),
8168 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = this._getInst( target[ 0 ] );
8169  
8170 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst[ "selected" + ( period === "M" ? "Month" : "Year" ) ] =
8171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst[ "draw" + ( period === "M" ? "Month" : "Year" ) ] =
8172 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only parseInt( select.options[ select.selectedIndex ].value, 10 );
8173  
8174 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._notifyChange( inst );
8175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._adjustDate( target );
8176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8177  
8178 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Action for selecting a day. */
8179 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _selectDay: function( id, month, year, td ) {
8180 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var inst,
8181 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only target = $( id );
8182  
8183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( $( td ).hasClass( this._unselectableClass ) || this._isDisabledDatepicker( target[ 0 ] ) ) {
8184 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return;
8185 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8186  
8187 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = this._getInst( target[ 0 ] );
8188 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.selectedDay = inst.currentDay = $( "a", td ).html();
8189 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.selectedMonth = inst.currentMonth = month;
8190 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.selectedYear = inst.currentYear = year;
8191 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._selectDate( id, this._formatDate( inst,
8192 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.currentDay, inst.currentMonth, inst.currentYear ) );
8193 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8194  
8195 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Erase the input field and hide the date picker. */
8196 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _clearDate: function( id ) {
8197 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var target = $( id );
8198 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._selectDate( target, "" );
8199 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8200  
8201 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Update the input field with the selected date. */
8202 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _selectDate: function( id, dateStr ) {
8203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var onSelect,
8204 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only target = $( id ),
8205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst = this._getInst( target[ 0 ] );
8206  
8207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only dateStr = ( dateStr != null ? dateStr : this._formatDate( inst ) );
8208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst.input ) {
8209 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.input.val( dateStr );
8210 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateAlternate( inst );
8212  
8213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only onSelect = this._get( inst, "onSelect" );
8214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( onSelect ) {
8215 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only onSelect.apply( ( inst.input ? inst.input[ 0 ] : null ), [ dateStr, inst ] ); // trigger custom callback
8216 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else if ( inst.input ) {
8217 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.input.trigger( "change" ); // fire the change event
8218 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8219  
8220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( inst.inline ) {
8221 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._updateDatepicker( inst );
8222 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
8223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._hideDatepicker();
8224 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._lastInput = inst.input[ 0 ];
8225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( typeof( inst.input[ 0 ] ) !== "object" ) {
8226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only inst.input.trigger( "focus" ); // restore focus
8227 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8228 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only this._lastInput = null;
8229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8230 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8231  
8232 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Update any alternate field to synchronise with the main field. */
8233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only _updateAlternate: function( inst ) {
8234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var altFormat, date, dateStr,
8235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only altField = this._get( inst, "altField" );
8236  
8237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( altField ) { // update alternate field too
8238 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only altFormat = this._get( inst, "altFormat" ) || this._get( inst, "dateFormat" );
8239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only date = this._getDate( inst );
8240 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only dateStr = this.formatDate( altFormat, date, this._getFormatConfig( inst ) );
8241 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $( altField ).val( dateStr );
8242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8244  
8245 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Set as beforeShowDay function to prevent selection of weekends.
8246 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param date Date - the date to customise
8247 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @return [boolean, string] - is this date selectable?, what is its CSS class?
8248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
8249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only noWeekends: function( date ) {
8250 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var day = date.getDay();
8251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return [ ( day > 0 && day < 6 ), "" ];
8252 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8253  
8254 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Set as calculateWeek to determine the week of the year based on the ISO 8601 definition.
8255 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param date Date - the date to get the week for
8256 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @return number - the number of the week within the year that contains this date
8257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
8258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only iso8601Week: function( date ) {
8259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var time,
8260 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only checkDate = new Date( date.getTime() );
8261  
8262 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Find Thursday of this week starting on Monday
8263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only checkDate.setDate( checkDate.getDate() + 4 - ( checkDate.getDay() || 7 ) );
8264  
8265 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only time = checkDate.getTime();
8266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only checkDate.setMonth( 0 ); // Compare with Jan 1
8267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only checkDate.setDate( 1 );
8268 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return Math.floor( Math.round( ( time - checkDate ) / 86400000 ) / 7 ) + 1;
8269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8270  
8271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only /* Parse a string value into a date object.
8272 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * See formatDate below for the possible formats.
8273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only *
8274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param format string - the expected format of the date
8275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param value string - the date in the above format
8276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @param settings Object - attributes include:
8277 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * shortYearCutoff number - the cutoff year for determining the century (optional)
8278 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * dayNamesShort string[7] - abbreviated names of the days from Sunday (optional)
8279 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * dayNames string[7] - names of the days from Sunday (optional)
8280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * monthNamesShort string[12] - abbreviated names of the months (optional)
8281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * monthNames string[12] - names of the months (optional)
8282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only * @return Date - the extracted date value or null if value is blank
8283 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only */
8284 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only parseDate: function( format, value, settings ) {
8285 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( format == null || value == null ) {
8286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only throw "Invalid arguments";
8287 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8288  
8289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only value = ( typeof value === "object" ? value.toString() : value + "" );
8290 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( value === "" ) {
8291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return null;
8292 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8293  
8294 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var iFormat, dim, extra,
8295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only iValue = 0,
8296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only shortYearCutoffTemp = ( settings ? settings.shortYearCutoff : null ) || this._defaults.shortYearCutoff,
8297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only shortYearCutoff = ( typeof shortYearCutoffTemp !== "string" ? shortYearCutoffTemp :
8298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only new Date().getFullYear() % 100 + parseInt( shortYearCutoffTemp, 10 ) ),
8299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only dayNamesShort = ( settings ? settings.dayNamesShort : null ) || this._defaults.dayNamesShort,
8300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only dayNames = ( settings ? settings.dayNames : null ) || this._defaults.dayNames,
8301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only monthNamesShort = ( settings ? settings.monthNamesShort : null ) || this._defaults.monthNamesShort,
8302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only monthNames = ( settings ? settings.monthNames : null ) || this._defaults.monthNames,
8303 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only year = -1,
8304 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only month = -1,
8305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only day = -1,
8306 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only doy = -1,
8307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only literal = false,
8308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only date,
8309  
8310 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Check whether a format character is doubled
8311 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only lookAhead = function( match ) {
8312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var matches = ( iFormat + 1 < format.length && format.charAt( iFormat + 1 ) === match );
8313 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( matches ) {
8314 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only iFormat++;
8315 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return matches;
8317 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8318  
8319 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Extract a number from the string value
8320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only getNumber = function( match ) {
8321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var isDoubled = lookAhead( match ),
8322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only size = ( match === "@" ? 14 : ( match === "!" ? 20 :
8323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only ( match === "y" && isDoubled ? 4 : ( match === "o" ? 3 : 2 ) ) ) ),
8324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only minSize = ( match === "y" ? size : 1 ),
8325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only digits = new RegExp( "^\\d{" + minSize + "," + size + "}" ),
8326 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only num = value.substring( iValue ).match( digits );
8327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( !num ) {
8328 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only throw "Missing number at position " + iValue;
8329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8330 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only iValue += num[ 0 ].length;
8331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return parseInt( num[ 0 ], 10 );
8332 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8333  
8334 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Extract a name from the string value and convert to an index
8335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only getName = function( match, shortNames, longNames ) {
8336 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var index = -1,
8337 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only names = $.map( lookAhead( match ) ? longNames : shortNames, function( v, k ) {
8338 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return [ [ k, v ] ];
8339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } ).sort( function( a, b ) {
8340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return -( a[ 1 ].length - b[ 1 ].length );
8341 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
8342  
8343 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only $.each( names, function( i, pair ) {
8344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only var name = pair[ 1 ];
8345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( value.substr( iValue, name.length ).toLowerCase() === name.toLowerCase() ) {
8346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only index = pair[ 0 ];
8347 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only iValue += name.length;
8348 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return false;
8349 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8350 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } );
8351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( index !== -1 ) {
8352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only return index + 1;
8353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
8354 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only throw "Unknown name at position " + iValue;
8355 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only },
8357  
8358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only // Confirm that a literal character matches the string value
8359 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only checkLiteral = function() {
8360 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( value.charAt( iValue ) !== format.charAt( iFormat ) ) {
8361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only throw "Unexpected literal at position " + iValue;
8362 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8363 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only iValue++;
8364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only };
8365  
8366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only for ( iFormat = 0; iFormat < format.length; iFormat++ ) {
8367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( literal ) {
8368 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( format.charAt( iFormat ) === "'" && !lookAhead( "'" ) ) {
8369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only literal = false;
8370 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
8371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only checkLiteral();
8372 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
8374 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only switch ( format.charAt( iFormat ) ) {
8375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case "d":
8376 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only day = getNumber( "d" );
8377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
8378 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case "D":
8379 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only getName( "D", dayNamesShort, dayNames );
8380 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
8381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case "o":
8382 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only doy = getNumber( "o" );
8383 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
8384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case "m":
8385 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only month = getNumber( "m" );
8386 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
8387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case "M":
8388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only month = getName( "M", monthNamesShort, monthNames );
8389 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
8390 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case "y":
8391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only year = getNumber( "y" );
8392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
8393 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case "@":
8394 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only date = new Date( getNumber( "@" ) );
8395 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only year = date.getFullYear();
8396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only month = date.getMonth() + 1;
8397 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only day = date.getDate();
8398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
8399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case "!":
8400 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only date = new Date( ( getNumber( "!" ) - this._ticksTo1970 ) / 10000 );
8401 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only year = date.getFullYear();
8402 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only month = date.getMonth() + 1;
8403 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only day = date.getDate();
8404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
8405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only case "'":
8406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( lookAhead( "'" ) ) {
8407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only checkLiteral();
8408 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only } else {
8409 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only literal = true;
8410 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only break;
8412 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only default:
8413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only checkLiteral();
8414 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8415 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8416 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only }
8417  
8418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only if ( iValue < value.length ) {
8419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { extra = value.substr( iValue );
8420 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( !/^\s+/.test( extra ) ) {
8421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { throw "Extra/unparsed characters found in date: " + extra;
8422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8423 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8424  
8425 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( year === -1 ) {
8426 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { year = new Date().getFullYear();
8427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { } else if ( year < 100 ) {
8428 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { year += new Date().getFullYear() - new Date().getFullYear() % 100 +
8429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { ( year <= shortYearCutoff ? 0 : -100 );
8430 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8431  
8432 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( doy > -1 ) {
8433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { month = 1;
8434 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { day = doy;
8435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { do {
8436 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { dim = this._getDaysInMonth( year, month - 1 );
8437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( day <= dim ) {
8438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8440 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { month++;
8441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { day -= dim;
8442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { } while ( true );
8443 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8444  
8445 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { date = this._daylightSavingAdjust( new Date( year, month - 1, day ) );
8446 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( date.getFullYear() !== year || date.getMonth() + 1 !== month || date.getDate() !== day ) {
8447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { throw "Invalid date"; // E.g. 31/02/00
8448 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8449 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return date;
8450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8451  
8452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { /* Standard date formats. */
8453 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { ATOM: "yy-mm-dd", // RFC 3339 (ISO 8601)
8454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { COOKIE: "D, dd M yy",
8455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { ISO_8601: "yy-mm-dd",
8456 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { RFC_822: "D, d M y",
8457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { RFC_850: "DD, dd-M-y",
8458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { RFC_1036: "D, d M y",
8459 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { RFC_1123: "D, d M yy",
8460 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { RFC_2822: "D, d M yy",
8461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { RSS: "D, d M y", // RFC 822
8462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { TICKS: "!",
8463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { TIMESTAMP: "@",
8464 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { W3C: "yy-mm-dd", // ISO 8601
8465  
8466 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { _ticksTo1970: ( ( ( 1970 - 1 ) * 365 + Math.floor( 1970 / 4 ) - Math.floor( 1970 / 100 ) +
8467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { Math.floor( 1970 / 400 ) ) * 24 * 60 * 60 * 10000000 ),
8468  
8469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { /* Format a date object into a string value.
8470 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * The format can be combinations of the following:
8471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * d - day of month (no leading zero)
8472 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * dd - day of month (two digit)
8473 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * o - day of year (no leading zeros)
8474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * oo - day of year (three digit)
8475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * D - day name short
8476 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * DD - day name long
8477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * m - month of year (no leading zero)
8478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * mm - month of year (two digit)
8479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * M - month name short
8480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * MM - month name long
8481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * y - year (two digit)
8482 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * yy - year (four digit)
8483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * @ - Unix timestamp (ms since 01/01/1970)
8484 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * ! - Windows ticks (100ns since 01/01/0001)
8485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * "..." - literal text
8486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * '' - single quote
8487 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { *
8488 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * @param format string - the desired format of the date
8489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * @param date Date - the date value to format
8490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * @param settings Object - attributes include:
8491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * dayNamesShort string[7] - abbreviated names of the days from Sunday (optional)
8492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * dayNames string[7] - names of the days from Sunday (optional)
8493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * monthNamesShort string[12] - abbreviated names of the months (optional)
8494 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * monthNames string[12] - names of the months (optional)
8495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * @return string - the date in the above format
8496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { */
8497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { formatDate: function( format, date, settings ) {
8498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( !date ) {
8499 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return "";
8500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8501  
8502 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var iFormat,
8503 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { dayNamesShort = ( settings ? settings.dayNamesShort : null ) || this._defaults.dayNamesShort,
8504 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { dayNames = ( settings ? settings.dayNames : null ) || this._defaults.dayNames,
8505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { monthNamesShort = ( settings ? settings.monthNamesShort : null ) || this._defaults.monthNamesShort,
8506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { monthNames = ( settings ? settings.monthNames : null ) || this._defaults.monthNames,
8507  
8508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { // Check whether a format character is doubled
8509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { lookAhead = function( match ) {
8510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var matches = ( iFormat + 1 < format.length && format.charAt( iFormat + 1 ) === match );
8511 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( matches ) {
8512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { iFormat++;
8513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8514 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return matches;
8515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8516  
8517 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { // Format a number, with leading zero if necessary
8518 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { formatNumber = function( match, value, len ) {
8519 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var num = "" + value;
8520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( lookAhead( match ) ) {
8521 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { while ( num.length < len ) {
8522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { num = "0" + num;
8523 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return num;
8526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8527  
8528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { // Format a name, short or long as requested
8529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { formatName = function( match, value, shortNames, longNames ) {
8530 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return ( lookAhead( match ) ? longNames[ value ] : shortNames[ value ] );
8531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8532 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { output = "",
8533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { literal = false;
8534  
8535 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( date ) {
8536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { for ( iFormat = 0; iFormat < format.length; iFormat++ ) {
8537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( literal ) {
8538 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( format.charAt( iFormat ) === "'" && !lookAhead( "'" ) ) {
8539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { literal = false;
8540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { } else {
8541 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { output += format.charAt( iFormat );
8542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { } else {
8544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { switch ( format.charAt( iFormat ) ) {
8545 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "d":
8546 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { output += formatNumber( "d", date.getDate(), 2 );
8547 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8548 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "D":
8549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { output += formatName( "D", date.getDay(), dayNamesShort, dayNames );
8550 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "o":
8552 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { output += formatNumber( "o",
8553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { Math.round( ( new Date( date.getFullYear(), date.getMonth(), date.getDate() ).getTime() - new Date( date.getFullYear(), 0, 0 ).getTime() ) / 86400000 ), 3 );
8554 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "m":
8556 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { output += formatNumber( "m", date.getMonth() + 1, 2 );
8557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "M":
8559 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { output += formatName( "M", date.getMonth(), monthNamesShort, monthNames );
8560 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "y":
8562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { output += ( lookAhead( "y" ) ? date.getFullYear() :
8563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { ( date.getFullYear() % 100 < 10 ? "0" : "" ) + date.getFullYear() % 100 );
8564 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "@":
8566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { output += date.getTime();
8567 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "!":
8569 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { output += date.getTime() * 10000 + this._ticksTo1970;
8570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8571 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "'":
8572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( lookAhead( "'" ) ) {
8573 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { output += "'";
8574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { } else {
8575 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { literal = true;
8576 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8577 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { default:
8579 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { output += format.charAt( iFormat );
8580 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8583 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8584 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return output;
8585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8586  
8587 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { /* Extract all possible characters from the date format. */
8588 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { _possibleChars: function( format ) {
8589 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var iFormat,
8590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { chars = "",
8591 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { literal = false,
8592  
8593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { // Check whether a format character is doubled
8594 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { lookAhead = function( match ) {
8595 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var matches = ( iFormat + 1 < format.length && format.charAt( iFormat + 1 ) === match );
8596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( matches ) {
8597 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { iFormat++;
8598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8599 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return matches;
8600 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { };
8601  
8602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { for ( iFormat = 0; iFormat < format.length; iFormat++ ) {
8603 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( literal ) {
8604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( format.charAt( iFormat ) === "'" && !lookAhead( "'" ) ) {
8605 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { literal = false;
8606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { } else {
8607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { chars += format.charAt( iFormat );
8608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { } else {
8610 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { switch ( format.charAt( iFormat ) ) {
8611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "d": case "m": case "y": case "@":
8612 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { chars += "0123456789";
8613 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "D": case "M":
8615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return null; // Accept anything
8616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "'":
8617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( lookAhead( "'" ) ) {
8618 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { chars += "'";
8619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { } else {
8620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { literal = true;
8621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8622 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8623 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { default:
8624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { chars += format.charAt( iFormat );
8625 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return chars;
8629 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8630  
8631 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { /* Get a setting value, defaulting if necessary. */
8632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { _get: function( inst, name ) {
8633 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return inst.settings[ name ] !== undefined ?
8634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.settings[ name ] : this._defaults[ name ];
8635 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8636  
8637 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { /* Parse existing date and initialise date picker. */
8638 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { _setDateFromField: function( inst, noDefault ) {
8639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( inst.input.val() === inst.lastVal ) {
8640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return;
8641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8642  
8643 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var dateFormat = this._get( inst, "dateFormat" ),
8644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { dates = inst.lastVal = inst.input ? inst.input.val() : null,
8645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { defaultDate = this._getDefaultDate( inst ),
8646 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { date = defaultDate,
8647 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { settings = this._getFormatConfig( inst );
8648  
8649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { try {
8650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { date = this.parseDate( dateFormat, dates, settings ) || defaultDate;
8651 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { } catch ( event ) {
8652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { dates = ( noDefault ? "" : dates );
8653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.selectedDay = date.getDate();
8655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.drawMonth = inst.selectedMonth = date.getMonth();
8656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.drawYear = inst.selectedYear = date.getFullYear();
8657 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.currentDay = ( dates ? date.getDate() : 0 );
8658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.currentMonth = ( dates ? date.getMonth() : 0 );
8659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.currentYear = ( dates ? date.getFullYear() : 0 );
8660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { this._adjustInstDate( inst );
8661 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8662  
8663 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { /* Retrieve the default date shown on opening. */
8664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { _getDefaultDate: function( inst ) {
8665 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return this._restrictMinMax( inst,
8666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { this._determineDate( inst, this._get( inst, "defaultDate" ), new Date() ) );
8667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8668  
8669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { /* A date may be specified as an exact value or a relative one. */
8670 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { _determineDate: function( inst, date, defaultDate ) {
8671 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var offsetNumeric = function( offset ) {
8672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var date = new Date();
8673 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { date.setDate( date.getDate() + offset );
8674 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return date;
8675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { offsetString = function( offset ) {
8677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { try {
8678 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return $.datepicker.parseDate( $.datepicker._get( inst, "dateFormat" ),
8679 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { offset, $.datepicker._getFormatConfig( inst ) );
8680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8681 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { catch ( e ) {
8682  
8683 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { // Ignore
8684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8685  
8686 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var date = ( offset.toLowerCase().match( /^c/ ) ?
8687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { $.datepicker._getDate( inst ) : null ) || new Date(),
8688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { year = date.getFullYear(),
8689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { month = date.getMonth(),
8690 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { day = date.getDate(),
8691 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { pattern = /([+\-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,
8692 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { matches = pattern.exec( offset );
8693  
8694 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { while ( matches ) {
8695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { switch ( matches[ 2 ] || "d" ) {
8696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "d" : case "D" :
8697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { day += parseInt( matches[ 1 ], 10 ); break;
8698 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "w" : case "W" :
8699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { day += parseInt( matches[ 1 ], 10 ) * 7; break;
8700 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "m" : case "M" :
8701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { month += parseInt( matches[ 1 ], 10 );
8702 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { day = Math.min( day, $.datepicker._getDaysInMonth( year, month ) );
8703 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { case "y": case "Y" :
8705 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { year += parseInt( matches[ 1 ], 10 );
8706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { day = Math.min( day, $.datepicker._getDaysInMonth( year, month ) );
8707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { break;
8708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8709 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { matches = pattern.exec( offset );
8710 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8711 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return new Date( year, month, day );
8712 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8713 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { newDate = ( date == null || date === "" ? defaultDate : ( typeof date === "string" ? offsetString( date ) :
8714 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { ( typeof date === "number" ? ( isNaN( date ) ? defaultDate : offsetNumeric( date ) ) : new Date( date.getTime() ) ) ) );
8715  
8716 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { newDate = ( newDate && newDate.toString() === "Invalid Date" ? defaultDate : newDate );
8717 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( newDate ) {
8718 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { newDate.setHours( 0 );
8719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { newDate.setMinutes( 0 );
8720 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { newDate.setSeconds( 0 );
8721 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { newDate.setMilliseconds( 0 );
8722 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8723 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return this._daylightSavingAdjust( newDate );
8724 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8725  
8726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { /* Handle switch to/from daylight saving.
8727 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * Hours may be non-zero on daylight saving cut-over:
8728 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * > 12 when midnight changeover, but then cannot generate
8729 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * midnight datetime, so jump to 1AM, otherwise reset.
8730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * @param date (Date) the date to check
8731 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * @return (Date) the corrected date
8732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { */
8733 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { _daylightSavingAdjust: function( date ) {
8734 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( !date ) {
8735 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return null;
8736 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8737 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { date.setHours( date.getHours() > 12 ? date.getHours() + 2 : 0 );
8738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return date;
8739 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8740  
8741 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { /* Set the date(s) directly. */
8742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { _setDate: function( inst, date, noChange ) {
8743 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var clear = !date,
8744 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { origMonth = inst.selectedMonth,
8745 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { origYear = inst.selectedYear,
8746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { newDate = this._restrictMinMax( inst, this._determineDate( inst, date, new Date() ) );
8747  
8748 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.selectedDay = inst.currentDay = newDate.getDate();
8749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.drawMonth = inst.selectedMonth = inst.currentMonth = newDate.getMonth();
8750 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.drawYear = inst.selectedYear = inst.currentYear = newDate.getFullYear();
8751 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( ( origMonth !== inst.selectedMonth || origYear !== inst.selectedYear ) && !noChange ) {
8752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { this._notifyChange( inst );
8753 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8754 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { this._adjustInstDate( inst );
8755 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( inst.input ) {
8756 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.input.val( clear ? "" : this._formatDate( inst ) );
8757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8758 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8759  
8760 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { /* Retrieve the date(s) directly. */
8761 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { _getDate: function( inst ) {
8762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var startDate = ( !inst.currentYear || ( inst.input && inst.input.val() === "" ) ? null :
8763 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { this._daylightSavingAdjust( new Date(
8764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.currentYear, inst.currentMonth, inst.currentDay ) ) );
8765 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return startDate;
8766 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8767  
8768 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { /* Attach the onxxx handlers. These are declared statically so
8769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { * they work with static code transformers like Caja.
8770 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { */
8771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { _attachHandlers: function( inst ) {
8772 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var stepMonths = this._get( inst, "stepMonths" ),
8773 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { id = "#" + inst.id.replace( /\\\\/g, "\\" );
8774 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.dpDiv.find( "[data-handler]" ).map( function() {
8775 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var handler = {
8776 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { prev: function() {
8777 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { $.datepicker._adjustDate( id, -stepMonths, "M" );
8778 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8779 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { next: function() {
8780 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { $.datepicker._adjustDate( id, +stepMonths, "M" );
8781 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { hide: function() {
8783 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { $.datepicker._hideDatepicker();
8784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { today: function() {
8786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { $.datepicker._gotoToday( id );
8787 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { selectDay: function() {
8789 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { $.datepicker._selectDay( id, +this.getAttribute( "data-month" ), +this.getAttribute( "data-year" ), this );
8790 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return false;
8791 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8792 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { selectMonth: function() {
8793 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { $.datepicker._selectMonthYear( id, this, "M" );
8794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return false;
8795 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8796 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { selectYear: function() {
8797 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { $.datepicker._selectMonthYear( id, this, "Y" );
8798 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { return false;
8799 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { };
8801 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { $( this ).on( this.getAttribute( "data-event" ), handler[ this.getAttribute( "data-handler" ) ] );
8802 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { } );
8803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { },
8804  
8805 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { /* Generate the HTML for the current state of the date picker. */
8806 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { _generateHTML: function( inst ) {
8807 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { var maxDraw, prevText, prev, nextText, next, currentText, gotoDate,
8808 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { controls, buttonPanel, firstDay, showWeek, dayNames, dayNamesMin,
8809 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { monthNames, monthNamesShort, beforeShowDay, showOtherMonths,
8810 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { selectOtherMonths, defaultDate, html, dow, row, group, col, selectedDate,
8811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { cornerClass, calender, thead, day, daysInMonth, leadDays, curRows, numRows,
8812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { printDate, dRow, tbody, daySettings, otherMonth, unselectable,
8813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { tempDate = new Date(),
8814 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { today = this._daylightSavingAdjust(
8815 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { new Date( tempDate.getFullYear(), tempDate.getMonth(), tempDate.getDate() ) ), // clear time
8816 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { isRTL = this._get( inst, "isRTL" ),
8817 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { showButtonPanel = this._get( inst, "showButtonPanel" ),
8818 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { hideIfNoPrevNext = this._get( inst, "hideIfNoPrevNext" ),
8819 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { navigationAsDateFormat = this._get( inst, "navigationAsDateFormat" ),
8820 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { numMonths = this._getNumberOfMonths( inst ),
8821 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { showCurrentAtPos = this._get( inst, "showCurrentAtPos" ),
8822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { stepMonths = this._get( inst, "stepMonths" ),
8823 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { isMultiMonth = ( numMonths[ 0 ] !== 1 || numMonths[ 1 ] !== 1 ),
8824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { currentDate = this._daylightSavingAdjust( ( !inst.currentDay ? new Date( 9999, 9, 9 ) :
8825 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { new Date( inst.currentYear, inst.currentMonth, inst.currentDay ) ) ),
8826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { minDate = this._getMinMaxDate( inst, "min" ),
8827 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { maxDate = this._getMinMaxDate( inst, "max" ),
8828 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { drawMonth = inst.drawMonth - showCurrentAtPos,
8829 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { drawYear = inst.drawYear;
8830  
8831 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( drawMonth < 0 ) {
8832 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { drawMonth += 12;
8833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { drawYear--;
8834 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8835 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( maxDate ) {
8836 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { maxDraw = this._daylightSavingAdjust( new Date( maxDate.getFullYear(),
8837 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { maxDate.getMonth() - ( numMonths[ 0 ] * numMonths[ 1 ] ) + 1, maxDate.getDate() ) );
8838 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { maxDraw = ( minDate && maxDraw < minDate ? minDate : maxDraw );
8839 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { while ( this._daylightSavingAdjust( new Date( drawYear, drawMonth, 1 ) ) > maxDraw ) {
8840 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { drawMonth--;
8841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { if ( drawMonth < 0 ) {
8842 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { drawMonth = 11;
8843 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { drawYear--;
8844 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8845 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8846 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { }
8847 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.drawMonth = drawMonth;
8848 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { inst.drawYear = drawYear;
8849  
8850 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { prevText = this._get( inst, "prevText" );
8851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { prevText = ( !navigationAsDateFormat ? prevText : this.formatDate( prevText,
8852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { this._daylightSavingAdjust( new Date( drawYear, drawMonth - stepMonths, 1 ) ),
8853 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { this._getFormatConfig( inst ) ) );
8854  
8855 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { prev = ( this._canAdjustMonth( inst, -1, drawYear, drawMonth ) ?
8856 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { "<a class='ui-datepicker-prev ui-corner-all' data-handler='prev' data-event='click'" +
8857 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { " title='" + prevText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "e" : "w" ) + "'>" + prevText + "</span>a>" :
8858 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { ( hideIfNoPrevNext ? "" : "<a class='ui-datepicker-prev ui-corner-all ui-state-disabled' title='" + prevText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "e" : "w" ) + "'>" + prevText + "</span>a>" ) );
8859  
8860 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { nextText = this._get( inst, "nextText" );
8861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { nextText = ( !navigationAsDateFormat ? nextText : this.formatDate( nextText,
8862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { this._daylightSavingAdjust( new Date( drawYear, drawMonth + stepMonths, 1 ) ),
8863 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { this._getFormatConfig( inst ) ) );
8864  
8865 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { next = ( this._canAdjustMonth( inst, +1, drawYear, drawMonth ) ?
8866 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { "<a class='ui-datepicker-next ui-corner-all' data-handler='next' data-event='click'" +
8867 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { " title='" + nextText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "w" : "e" ) + "'>" + nextText + "</span>a>" :
8868 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { ( hideIfNoPrevNext ? "" : "<a class='ui-datepicker-next ui-corner-all ui-state-disabled' title='" + nextText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "w" : "e" ) + "'>" + nextText + "</span>a>" ) );
8869  
8870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { currentText = this._get( inst, "currentText" );
8871 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { gotoDate = ( this._get( inst, "gotoCurrent" ) && inst.currentDay ? currentDate : today );
8872 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { currentText = ( !navigationAsDateFormat ? currentText :
8873 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { this.formatDate( currentText, gotoDate, this._getFormatConfig( inst ) ) );
8874  
8875 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { controls = ( !inst.inline ? "<button type='button' class='ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all' data-handler='hide' data-event='click'>" +
8876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { this._get( inst, "closeText" ) + "</button>" : "" );
8877  
8878 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) { buttonPanel = ( showButtonPanel ) ? "
" + ( isRTL ? controls : "" ) +
8879 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
( this._isInRange( inst, gotoDate ) ? "
8880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8881  
8882 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8883 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8884  
8885 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8886 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8888 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8890 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8891 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8892 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8893 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8894 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8895  
8896 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8898 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8899 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8900 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8901 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8902 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8903 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8904 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8917 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8919 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8920 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8922 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8923 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8925 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8926 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
= 5 ? " class='ui-datepicker-week-end'" : "" ) + ">" +
8927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
"" + dayNamesMin[ day ] + "span></th>";
8928 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
}
8929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
calender += thead + "tr></thead>
8930 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8931 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8933 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8934 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8935 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8937 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8938 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8940 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8941 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8942 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8943 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8944 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8945 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8946 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8947 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8948 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8950 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8951 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8952 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8953 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8954  
8955 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8956 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8957 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8958 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8959 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8960 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8961 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8962 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8963 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8964 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8965 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8967 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8969 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8970 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8971 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8973 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8975 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8976 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8977 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8978 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8980 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8981 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8984 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8985 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8986 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8988 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8989  
8990 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8991 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8992 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8993  
8994 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8995 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8996 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8997 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8998 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
8999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9000  
9001 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9002 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9004 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9005 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9006 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9007 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9008 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9009 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9010 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9012 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9013 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9014 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9015 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9016 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9017  
9018 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9019 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9020 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9021  
9022 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9023 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9024 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9025 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9026 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9028  
9029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9030 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9031 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9032 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9033 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9034 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9035 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9036 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9039 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9040 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9042 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9043 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9044 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9045 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9047 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9048 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9049  
9050 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9051 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9052 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9053 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9054  
9055 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9056 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9057 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9058 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9060 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9061 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9062  
9063 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9064 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9065 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9066 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9067 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9069  
9070 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9071 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9073 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9074 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9075 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9076 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9077  
9078 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9079 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9080 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9083 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9084 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9085  
9086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9087 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9088 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9089 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9090 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9092 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9093 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9094  
9095 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9096 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9097 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9099 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9100  
9101 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9103 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9104 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9105  
9106 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9107 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9108 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9109 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9110  
9111 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9112 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9114 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9115  
9116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9117 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9118 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9119 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9120 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9121  
9122 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9124 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9126 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9127  
9128 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9129 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9130 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9132 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9133 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9134 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9135 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9136 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9141 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9142 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9143 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9144 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9145 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9148  
9149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9150 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9152 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9154  
9155 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9156 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9158 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9159 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9160 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9161 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9162 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9163 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9164  
9165 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9167 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9168 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9169 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9170 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9172 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9173 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9174 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9177 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9178  
9179 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9180 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9181 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9182 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9184 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9185 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9186 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9187 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9188 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9189 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9190 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9191 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9192 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9193 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9194 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9195 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9196 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9197  
9198 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9199 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9200 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9201 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9202 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9204 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9206 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9209 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9210  
9211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9212 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9215 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9216 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9217 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9218 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9219 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9221  
9222 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9224 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9227  
9228 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9230 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9231 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9232  
9233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9238  
9239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9240 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9241 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9243  
9244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9245 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9246 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9247 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9250 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9252 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9254 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9255 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9256 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9260  
9261 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9262 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9265  
9266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9267  
9268  
9269  
9270  
9271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9272 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9273  
9274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9277 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9278 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9279 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9282  
9283 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9284 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9285 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9287  
9288  
9289  
9290 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9292 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9293 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9294  
9295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9303 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9304  
9305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9306 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9310 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9311 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9313 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9314 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9315 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9316  
9317 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9318 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9319  
9320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9326 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9328 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9330  
9331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9332  
9333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9334 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9336 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9337  
9338 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9339  
9340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9341 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9342  
9343 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9344  
9345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9347  
9348 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9349 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9350 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9354 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9355  
9356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9357 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9359 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9360 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9362  
9363 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9368 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9370  
9371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9372 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9374 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9375  
9376 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9378 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9379 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9380 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9382 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9383  
9384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9385 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9386 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9387  
9388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9389  
9390 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9393  
9394 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9395  
9396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9397 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9400 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9401  
9402 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9403 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9406  
9407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9408 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9409  
9410 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9412 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9414 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9415 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9416 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9417 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9420 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9421  
9422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9423 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9424 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9425  
9426 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9428 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9430  
9431 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9432 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9434 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9436  
9437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9439  
9440 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9443 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9444  
9445 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9446 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9447  
9448 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9449 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9451  
9452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9453 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9454  
9455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9456 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9459  
9460 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9464  
9465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9466 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9468 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9470 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9472  
9473 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9476  
9477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9482 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9483  
9484  
9485  
9486  
9487 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9488 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9494 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9499 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9500  
9501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9502 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9503 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9504  
9505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9507 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9509  
9510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9511 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9514 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9516 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9517  
9518  
9519  
9520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9521  
9522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9523 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9527 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9528  
9529  
9530 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9532 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9535 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9538  
9539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9541 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9545  
9546  
9547  
9548 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9550 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9552 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9554 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9556 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9559 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9560 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9564 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9567 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9569 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9571 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9573 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9575 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9576  
9577 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9579 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9580 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9583  
9584 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9586 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9587 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9588 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9589 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9591  
9592 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9594  
9595 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9597 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9599 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9600 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9601 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9602  
9603 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9605 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9610 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9611  
9612 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9613 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9614  
9615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9618 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9620  
9621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9622 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9623 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9625 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9626  
9627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9628  
9629 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9630  
9631 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9632  
9633 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9634  
9635 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9637 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9638  
9639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9643 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9646 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9647  
9648 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9651 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9654  
9655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9657 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9658  
9659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9661 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9662 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9663 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9665  
9666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9668 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9669  
9670 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9671  
9672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9673  
9674 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9676  
9677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9678  
9679 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9681  
9682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9683 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9685 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9686  
9687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9690 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9691  
9692 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9694  
9695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9698 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9700 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9702  
9703 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9705 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9706  
9707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9709 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9710 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9711  
9712 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9713 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9714  
9715 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9716 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9717  
9718 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9720 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9721 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9722 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9723  
9724 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9725 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9726  
9727 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9728 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9729 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9731  
9732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9733 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9734 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9735  
9736 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9737 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9739 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9740 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9741  
9742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9743 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9744  
9745 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9747 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9748 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9750 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9751 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9753  
9754 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9755 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9756 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9758 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9759  
9760 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9761  
9762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9763 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9765 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9766  
9767 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9768 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9770  
9771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9772 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9773 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9774 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9775 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9776 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9777 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9778 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9779 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9780  
9781 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9783  
9784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9787  
9788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9789 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9790  
9791 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9792  
9793 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9795 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9796 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9797 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9798 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9799  
9800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9801 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9802 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9805  
9806 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9807 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9808 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9809 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9810 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9814 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9815 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9816 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9817 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9818 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9819 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9820 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9821 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9823 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9825  
9826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9827 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9828  
9829 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9830 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9831  
9832 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9834 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9835 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9836 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9837  
9838 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9839 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9840  
9841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9842 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9843 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9844 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9845  
9846 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9847 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9848  
9849 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9850  
9851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9853 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9854 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9855 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9856  
9857 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9858  
9859 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9860  
9861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9863 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9864 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9865 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9866  
9867 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9868 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9869 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9871 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9872  
9873 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9874 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9875 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9876  
9877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9878  
9879 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9881 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9882 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9883 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9884 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9885 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9886  
9887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9888 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9890 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9891 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9892  
9893 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9894 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9895 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9896 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9898 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9899  
9900 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9901 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9902 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9903 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9904  
9905 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9906  
9907 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9908  
9909 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9911 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9912 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9914  
9915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9916 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9917 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9919 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9920 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9922 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9923 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9925 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9926 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9928 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9930 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9931 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9933 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9934 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9935  
9936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9937 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9938 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9939  
9940 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9941  
9942 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9943 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9944 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9945  
9946 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9947 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9948 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9950 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9951 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9952 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9953 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9955 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9956 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9957 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9958  
9959 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9960 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9961 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9962  
9963 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9964 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9965 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9967  
9968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9969  
9970 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9971 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9973 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9974  
9975 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9976 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9977  
9978 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9980 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9981 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9984  
9985 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9986  
9987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9988 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9989 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9990 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9991 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9992 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9993 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9994 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9995  
9996 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9997 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9998 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
9999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10000 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10001 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10002  
10003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10004  
10005 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10006 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10007 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10008  
10009 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10010  
10011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10012 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10013 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10014 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10015  
10016 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10017 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10018 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10019 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10020 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10021 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10022 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10023 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10024 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10025 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10026 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10028  
10029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10030 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10031 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10032 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10033 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10034 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10035 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10036 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10039  
10040 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10042 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10043 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10044  
10045 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10047 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10048  
10049 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10050 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10051  
10052 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10053 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10054 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10055  
10056 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10057  
10058 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10060 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10061 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10062 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10063 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10064 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10065 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10066 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10067 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10069 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10070 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10071 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10073 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10074 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10075 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10076 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10077 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10078  
10079 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10080  
10081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10083 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10084  
10085 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10087  
10088 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10089 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10090  
10091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10092 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10093  
10094 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10095 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10096  
10097 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10099 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10100 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10101 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10103 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10104  
10105 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10106 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10107  
10108 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10109 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10110  
10111 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10112 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10114 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10115 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10117 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10118  
10119 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10120  
10121 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10122  
10123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10124 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10126 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10127 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10128  
10129 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10130 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10132 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10133 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10134 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10135 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10136  
10137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10141  
10142 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10143 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10144 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10145 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10148 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10150 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10152 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10154 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10155 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10156  
10157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10158 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10159 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10160 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10161 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10162 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10163 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10164 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10165 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10167 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10168 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10169 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10170  
10171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10172  
10173 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10174 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10177 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10178 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10179 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10180 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10181 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10182  
10183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10184 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10185 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10186 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10187 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10188 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10189 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10190 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10191 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10192  
10193 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10194 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10195 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10196  
10197 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10198 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10199 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10200 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10201  
10202 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10204  
10205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10206 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10207  
10208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10209 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10210  
10211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10212 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10213  
10214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10215 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10216 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10217 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10218 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10219 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10221  
10222 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10224  
10225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10227  
10228 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10230  
10231 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10232 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10238  
10239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10240  
10241 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10245 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10246 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10247 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10250 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10252  
10253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10254  
10255 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10256 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10258  
10259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10260 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10261 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10262 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10265 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10266  
10267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10268  
10269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10270 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10272 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10277  
10278 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10279  
10280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10283 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10284 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10285  
10286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10287 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10288 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10289  
10290 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10292  
10293 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10294 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10303 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10304 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10305  
10306 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10307  
10308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10310  
10311 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10313  
10314 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10315 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10317  
10318 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10319 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10326  
10327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10328  
10329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10330 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10332 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10333  
10334 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10336 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10337 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10338  
10339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10341 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10343 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10347  
10348 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10349 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10350 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10352  
10353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10354 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10355  
10356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10357  
10358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10359 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10360 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10362  
10363 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10368  
10369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10370 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10372  
10373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10374  
10375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10376 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10378 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10379  
10380 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10382  
10383 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10385 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10386  
10387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10389  
10390 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10393  
10394 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10395 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10397 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10399  
10400 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10401 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10402 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10403 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10408  
10409 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10410  
10411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10412 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10414  
10415 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10416 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10417 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10420  
10421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10423 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10424 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10425  
10426 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10428  
10429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10430 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10431 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10432 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10434 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10435  
10436 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10440  
10441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10443  
10444 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10445 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10446 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10448  
10449 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10451  
10452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10453 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10456  
10457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10459 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10460  
10461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10464 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10466  
10467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10468  
10469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10470 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10471  
10472 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10473 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10476 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10482  
10483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10484 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10487  
10488 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10494 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10499 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10500  
10501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10502 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10503 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10504 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10507 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10511 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10514 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10516 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10517  
10518 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10519 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10521 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10523  
10524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10527 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10530  
10531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10532 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10535  
10536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10538 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10541 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10545  
10546 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10547 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10548 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10550 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10552 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10554  
10555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10556  
10557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10559 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10560 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10564 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10565  
10566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10567 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10569 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10571 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10573 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10575 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10576 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10577 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10578  
10579 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10580  
10581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10583 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10584  
10585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10586 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10587  
10588 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10589 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10590  
10591 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10592  
10593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10594  
10595 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10597 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10599 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10600 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10601 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10603 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10605 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10607  
10608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10610  
10611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10612 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10613 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10616  
10617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10618  
10619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10622 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10623  
10624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10625 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10629 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10630 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10631 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10633 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10635 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10637 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10638  
10639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10643 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10646 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10647 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10648 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10651 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10657 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10661 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10662 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10663 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10665 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10668 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10669  
10670 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10671  
10672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10673 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10674 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10678 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10679 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10681 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10683 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10685 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10686 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10690 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10691 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10692 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10694 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10698 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10700 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10702  
10703 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10705 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10709 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10710 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10711 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10712 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10713  
10714 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10715  
10716 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10717 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10718  
10719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10720 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10721 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10722 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10723 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10724 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10725 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10727  
10728 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10729  
10730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10731 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10733 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10734 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10735 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10736 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10737  
10738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10739 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10740 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10741 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10742  
10743 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10744 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10745 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10747 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10748 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10750  
10751 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10753 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10754 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10755 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10756  
10757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10758  
10759  
10760 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10761 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10763 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10765 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10766 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10767 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10768  
10769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10770 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10772 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10773 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10774 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10775 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10776 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10777  
10778  
10779  
10780 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10781 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10783 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10787 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10789 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10790 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10791 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10792 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10793 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10795 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10796 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10797 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10798 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10799 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10801 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10802  
10803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10805  
10806 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10807 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10808 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10809 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10810 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10811  
10812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10814 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10815  
10816 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10817 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10818 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10819  
10820 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10821  
10822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10823 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10825  
10826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10827 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10828  
10829 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10830 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10831 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10832  
10833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10834 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10835 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10836 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10837 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10838 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10839 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10840 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10841  
10842 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10843  
10844 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10845 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10846 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10847 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10848  
10849 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10850 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10853 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10854 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10855 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10856  
10857 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10858 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10859  
10860 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10863 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10864 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10865 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10866 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10867 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10868 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10869  
10870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10871 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10872 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10873  
10874 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10875  
10876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10878 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10879 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10881 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10882  
10883 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10884 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10885  
10886 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10888 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10890  
10891 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10892 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10893 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10894 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10895 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10896  
10897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10898 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10899 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10900  
10901 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10902 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10903  
10904 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10905  
10906 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10907 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10908 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10909 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10911 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10912 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10914 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10916 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10917 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10919 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10920 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10922 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10923 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10925  
10926 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10928  
10929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10930  
10931 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10932  
10933 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10934 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10935 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10937 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10938 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10940 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10941 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10942  
10943 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10944 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10945 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10946 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10947 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10948 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10950 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10951 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10952 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10953 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10955 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10956  
10957 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10958 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10959  
10960 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10961 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10962  
10963 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10964 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10965  
10966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10967 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10969 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10970 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10971 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10973 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10975  
10976 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10977 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10978 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10980 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10981 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10984 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10985 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10986 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10988 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10989 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10990  
10991 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10992 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10993  
10994 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10995 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10996 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10997  
10998 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
10999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11000  
11001 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11002  
11003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11004 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11005 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11006 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11007  
11008 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11009  
11010 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11012 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11013  
11014 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11015  
11016 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11017  
11018 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11019  
11020 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11021  
11022 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11023  
11024 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11025 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11026 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11028 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11030  
11031 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11032 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11033 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11034 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11035 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11036  
11037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11039 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11040  
11041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11042 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11043 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11044 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11045  
11046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11047  
11048 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11049 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11050  
11051 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11052 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11053 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11054  
11055 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11056 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11057  
11058 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11060  
11061 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11062 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11063 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11064 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11065 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11066 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11067 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11069  
11070 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11071 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11073 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11074 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11075  
11076 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11077 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11078 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11079  
11080 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11083  
11084 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11085 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11087 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11088 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11089 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11090  
11091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11092 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11093  
11094 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11095  
11096 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11097 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11099  
11100 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11101  
11102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11103  
11104 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11105 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11106  
11107 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11108 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11109 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11110 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11111  
11112 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11114  
11115 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11117 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11118 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11119 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11120 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11121 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11122  
11123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11124 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11126 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11127 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11128 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11129 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11130  
11131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11132 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11133 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11134 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11135  
11136 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11138  
11139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11141 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11142  
11143 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11144 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11145  
11146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11148 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11150  
11151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11152  
11153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11154 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11155 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11156 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11158 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11159  
11160 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11161  
11162 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11163 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11164 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11165  
11166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11167  
11168 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11169 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11170 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11172  
11173 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11174  
11175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11176  
11177 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11178  
11179 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11180  
11181 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11182 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11184  
11185 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11186 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11187 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11188 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11189 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11190  
11191 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11192 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11193  
11194 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11195  
11196 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11197 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11198 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11199  
11200 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11201  
11202 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11204 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11206  
11207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11209 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11210 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11212 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11215  
11216 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11217 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11218 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11219  
11220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11221 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11222  
11223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11224 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11227  
11228 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11229  
11230 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11231  
11232 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11233  
11234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11237  
11238 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11239  
11240 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11241  
11242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11245 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11246 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11247 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11250 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11252  
11253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11254 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11255  
11256 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11260 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11261 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11262 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11265 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11268  
11269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11270  
11271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11272 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11273  
11274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11277  
11278 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11279 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11283 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11284  
11285 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11287 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11288 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11290  
11291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11292 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11293 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11294 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11303 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11304 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11306  
11307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11310 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11311 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11313 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11314 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11315 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11317 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11318 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11319 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11322  
11323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11324  
11325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11326 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11328  
11329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11330 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11332 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11334  
11335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11336 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11337 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11338 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11341 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11343  
11344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11346  
11347 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11348  
11349 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11350 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11354 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11355 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11357 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11359 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11360 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11362 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11363 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11368 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11370  
11371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11372 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11374 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11376 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11378 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11379 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11380 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11382 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11383  
11384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11385 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11386 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11389 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11390  
11391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11393  
11394 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11395 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11397 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11400 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11401 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11402 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11403 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11408 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11409  
11410 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11412 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11414  
11415 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11416 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11417 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11420  
11421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11422  
11423 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11424 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11425 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11426  
11427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11428 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11430  
11431 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11432  
11433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11434  
11435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11436 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11440  
11441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11443 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11444 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11445  
11446 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11447  
11448 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11449  
11450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11451  
11452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11453 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11454  
11455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11456  
11457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11458  
11459 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11460 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11464 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11466 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11468  
11469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11470 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11472  
11473 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11476  
11477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11478  
11479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11482 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11484 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11487 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11488 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11494 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11499 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11502 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11503 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11504 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11507 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11511  
11512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11514 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11516  
11517 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11518  
11519 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11521 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11523 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11527 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11530  
11531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11532  
11533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11535 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11536  
11537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11538  
11539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11541 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11545 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11546 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11547 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11548 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11550 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11552 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11554  
11555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11556 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11559 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11560  
11561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11564 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11567  
11568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11569 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11571  
11572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11573 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11575  
11576 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11577 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11579 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11580  
11581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11582  
11583 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11584  
11585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11586 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11587 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11588 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11589 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11591 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11592 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11594  
11595 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11597 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11598  
11599 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11600  
11601 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11603 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11605 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11610  
11611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11612 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11613 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11618 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11622 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11623 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11624  
11625 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11629 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11630 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11631  
11632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11633 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11635 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11637  
11638 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11643 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11646 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11647  
11648 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11651 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11657 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11661  
11662 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11663 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11665  
11666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11668 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11670 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11671  
11672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11673 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11674 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11678  
11679 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11681 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11683 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11684  
11685 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11686 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11690 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11691  
11692 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11694  
11695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11698 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11700 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11702  
11703 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11705 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11707  
11708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11709 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11710 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11711 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11712  
11713 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11714 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11715 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11716 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11717 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11718 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11720  
11721 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11722 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11723 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11724 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11725 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11727 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11728  
11729 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11731 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11733 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11734 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11735 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11736  
11737 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11739 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11740 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11741 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11743 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11744 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11745 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11747  
11748 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11750 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11751 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11753 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11754 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11755  
11756 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11758 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11759 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11760 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11761 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11763 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11765  
11766 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11767  
11768 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11770 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11771  
11772 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11773 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11774 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11775 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11776 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11777 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11778 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11779 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11780  
11781 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11783 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11787 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11789 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11790 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11791 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11792  
11793 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11795 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11796 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11797 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11798  
11799 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11801 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11802 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11805  
11806 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11807 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11808 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11809  
11810 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11814  
11815 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11816  
11817 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11818  
11819 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11820  
11821 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11823 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11825 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11827 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11828 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11829 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11830 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11831 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11832  
11833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11834  
11835 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11836 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11837 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11838  
11839 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11840 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11842  
11843 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11844  
11845 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11846  
11847 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11848 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11849 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11850 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11853 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11854 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11855 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11856 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11857  
11858 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11859 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11860 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11863 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11864  
11865 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11866  
11867 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11868  
11869 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11871 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11872 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11873 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11874 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11875 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11878 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11879 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11881 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11882 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11883 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11884 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11885 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11886 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11888  
11889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11890  
11891 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11892 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11893 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11894 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11895 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11896 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11898 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11899 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11900 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11901 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11902 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11903  
11904 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11905 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11906 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11907 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11908 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11909 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11911 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11912 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11914 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11916 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11917 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11919  
11920 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11922 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11923 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11925 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11926 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11928 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11930 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11931 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11933 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11934 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11935 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11937 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11938  
11939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11940  
11941 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11942  
11943  
11944 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11945 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11946 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11947 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11948 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11950 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11951 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11952  
11953 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11955 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11956 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11957 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11958 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11959 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11960 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11961  
11962  
11963  
11964 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11965 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11967 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11969 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11970 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11971 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11973 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11975 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11976 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11977 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11978 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11980 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11981 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11984 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11985 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11986 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11988 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11989  
11990 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11991 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11992 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11993 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11994 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11995 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11996 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11997 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11998 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
11999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12000 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12001 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12002  
12003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12004 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12005 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12006 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12007 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12008 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12009 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12010 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12012 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12013 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12014 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12015  
12016 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12017 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12018 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12019 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12020 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12021 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12022 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12023 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12024 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12025  
12026 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12028 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12030 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12031 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12032  
12033 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12034 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12035 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12036 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12039 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12040 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12042 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12043 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12044 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12045 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12047 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12048 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12049  
12050 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12051 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12052 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12053 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12054  
12055 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12056  
12057 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12058 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12060 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12061  
12062 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12063  
12064 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12065 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12066  
12067 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12069 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12070 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12071 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12073  
12074 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12075  
12076 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12077 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12078  
12079 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12080 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12083 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12084  
12085 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12087 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12088 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12089 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12090 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12092  
12093 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12094 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12095 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12096  
12097 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12099  
12100 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12101 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12103  
12104 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12105 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12106  
12107 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12108  
12109 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12110 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12111 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12112  
12113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12114  
12115 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12117 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12118 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12119 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12120 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12121 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12122  
12123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12124 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12126  
12127 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12128 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12129  
12130 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12132  
12133 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12134 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12135 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12136  
12137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12141  
12142 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12143  
12144 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12145 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12148 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12149  
12150 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12152 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12154  
12155 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12156 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12158  
12159 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12160 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12161 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12162  
12163 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12164 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12165 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12167 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12168 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12169  
12170 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12172 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12173 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12174  
12175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12177 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12178 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12179 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12180  
12181 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12182 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12184 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12185 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12186 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12187 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12188 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12189  
12190 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12191 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12192  
12193 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12194 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12195 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12196 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12197  
12198 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12199 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12200 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12201 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12202 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12204  
12205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12206 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12209  
12210 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12212 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12214  
12215 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12216 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12217  
12218 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12219  
12220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12221 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12222 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12224 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12227 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12228 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12230 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12231 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12232 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12238 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12240 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12241 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12245  
12246 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12247 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12250 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12252 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12254 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12255 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12256 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12257  
12258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12260 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12261 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12262 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12263  
12264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12265 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12268  
12269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12270 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12272 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12274  
12275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12277 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12278 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12279 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12283 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12284  
12285 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12287 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12288 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12290 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12292  
12293 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12294 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12303 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12304 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12306 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12310 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12311 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12313  
12314 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12315 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12317 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12318 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12319 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12323  
12324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12326  
12327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12328 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12330 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12332  
12333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12334 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12336 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12337  
12338 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12341 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12343  
12344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12347 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12348 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12349 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12350 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12354  
12355 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12357 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12359 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12360 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12362  
12363 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12366  
12367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12368  
12369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12370 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12372 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12373  
12374 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12376 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12378 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12379 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12380 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12381  
12382 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12383 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12385 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12386  
12387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12389 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12390  
12391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12393  
12394 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12395 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12397  
12398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12400 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12401  
12402 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12403 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12406  
12407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12408 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12409 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12410 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12412  
12413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12414 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12415  
12416 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12417 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12420 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12422  
12423 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12424 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12425 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12426 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12427  
12428 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12430 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12431 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12432  
12433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12434 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12436 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12438  
12439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12440 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12443 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12444 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12445 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12446 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12448 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12449  
12450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12451 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12453  
12454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12456 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12459 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12460  
12461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12464 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12466 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12468 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12470 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12472 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12473 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12476  
12477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12482 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12484 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12487 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12488 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12489  
12490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12494  
12495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12499 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12501  
12502 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12503 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12504 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12507 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12510  
12511 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12514 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12516 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12517 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12518 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12519 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12521 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12523 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12527 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12530 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12532  
12533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12535 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12538 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12541 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12545 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12546 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12547 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12548  
12549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12550 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12552 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12554 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12556 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12557  
12558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12559 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12560 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12562  
12563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12564 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12567 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12569 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12570  
12571 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12573 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12575 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12576 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12577 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12579  
12580 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12582  
12583 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12584 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12586 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12587  
12588 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12589  
12590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12591 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12592 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12594 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12595 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12597 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12599 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12600  
12601 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12603 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12605  
12606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12608  
12609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12610 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12612 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12613 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12616  
12617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12618 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12622 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12623 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12625  
12626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12629  
12630 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12631 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12633  
12634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12635  
12636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12637 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12638 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12639  
12640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12643  
12644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12646  
12647 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12648 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12651  
12652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12657  
12658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12661 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12662  
12663 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12665 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12666  
12667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12668  
12669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12670 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12671 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12673 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12674  
12675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12678 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12679  
12680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12681 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12683 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12685  
12686 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12690  
12691 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12692  
12693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12694 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12697  
12698 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12700 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12702 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12703 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12705  
12706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12709  
12710 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12711 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12712 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12713 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12714 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12715 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12716 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12717 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12718 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12720 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12721  
12722 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12723 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12724 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12725 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12727 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12728 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12729 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12731  
12732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12733 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12734 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12735 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12736  
12737 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12739 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12740  
12741 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12743 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12744 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12745 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12747 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12748 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12750 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12751  
12752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12753 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12754 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12755 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12756 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12758  
12759 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12760 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12761 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12763  
12764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12765 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12766 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12767 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12768  
12769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12770 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12772 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12773  
12774 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12775 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12776 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12777 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12778 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12779 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12780  
12781 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12782  
12783 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12787 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12789 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12790 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12791  
12792 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12793 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12795 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12796 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12797 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12798 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12799  
12800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12801 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12802  
12803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12805 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12806 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12807 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12808 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12809 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12810  
12811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12814 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12815  
12816 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12817 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12818  
12819 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12820 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12821 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12823 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12825  
12826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12827 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12828 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12829 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12830 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12831  
12832 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12834 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12835  
12836 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12837 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12838 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12839 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12840 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12842 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12843 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12844 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12845 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12846 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12847 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12848 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12849 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12850 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12853 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12854 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12855  
12856 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12857  
12858  
12859 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12860 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12863 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12864 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12865 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12866 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12867  
12868 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12869 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12871 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12872 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12873  
12874  
12875  
12876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12878 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12879 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12881 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12882 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12883 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12884 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12885  
12886 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12888 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12890 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12891 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12892 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12893 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12894  
12895 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12896 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12898  
12899 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12900 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12901  
12902 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12903 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12904 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12905  
12906 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12907 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12908  
12909 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12911 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12912  
12913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12914 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12916 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12917 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12919 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12920 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12922  
12923 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12924  
12925 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12926  
12927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12928  
12929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12930  
12931 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12933 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12934 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12935  
12936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12937 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12938 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12940 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12941 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12942 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12943 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12944  
12945 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12946 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12947  
12948 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12950  
12951 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12952  
12953 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12955 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12956 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12957 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12958 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12959  
12960 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12961 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12962 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12963  
12964 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12965 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12966  
12967 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12969  
12970 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12971 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12973 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12975  
12976 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12977 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12978  
12979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12980 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12981 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12984  
12985 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12986  
12987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12988  
12989 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12990 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12991 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12992 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12993 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12994  
12995 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12996 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12997 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12998 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
12999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13000  
13001 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13002  
13003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13004  
13005 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13006  
13007 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13008 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13009 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13010 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13012  
13013 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13014 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13015 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13016 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13017 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13018  
13019 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13020  
13021 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13022  
13023 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13024 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13025  
13026 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13028 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13030 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13031  
13032 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13033 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13034 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13035 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13036 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13039 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13040 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13042 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13043 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13044 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13045 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13047 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13048 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13049 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13050 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13051 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13052 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13053 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13054 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13055 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13056  
13057 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13058 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13060 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13061  
13062 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13063 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13064 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13065  
13066 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13067  
13068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13069  
13070 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13071 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13073 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13074 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13075 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13076 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13077 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13078  
13079 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13080 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13083 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13084  
13085 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13087 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13088  
13089 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13090 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13092  
13093 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13094 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13095 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13096 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13097  
13098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13099 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13100 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13101 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13102  
13103 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13104  
13105 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13106 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13107 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13108  
13109 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13110 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13111 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13112 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13114 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13115 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13117 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13118 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13119  
13120 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13121 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13122 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13124 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13126 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13127 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13128 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13129 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13130 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13132 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13133 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13134 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13135 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13136 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13141 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13142 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13143 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13144 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13145 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13146  
13147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13148 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13150 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13152 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13154  
13155 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13156 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13158 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13159  
13160 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13161  
13162 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13163 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13164 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13165 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13167  
13168 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13169 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13170 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13172 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13173 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13174 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13175  
13176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13177 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13178 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13179 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13180  
13181 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13182 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13184 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13185  
13186 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13187 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13188 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13189 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13190 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13191  
13192 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13193  
13194 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13195 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13196  
13197 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13198  
13199 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13200 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13201  
13202 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13204 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13206 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13209  
13210 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13212 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13215 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13216  
13217 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13218 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13219  
13220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13221 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13222  
13223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13224 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13227 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13228 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13230 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13231 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13232  
13233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13238  
13239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13240 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13241  
13242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13245  
13246 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13247 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13250 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13252 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13254  
13255 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13256  
13257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13260 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13261 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13262  
13263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13265 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13268  
13269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13270 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13272 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13275  
13276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13277 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13278 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13279  
13280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13283 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13284 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13285 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13287  
13288 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13290 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13291  
13292 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13293 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13294 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13299  
13300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13303  
13304 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13306 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13310 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13311 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13313 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13314 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13315 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13317 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13318 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13319 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13326 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13328 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13330 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13332 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13334 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13336  
13337 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13338  
13339  
13340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13341 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13343 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13347 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13348  
13349 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13350 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13354 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13355 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13357 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13359  
13360  
13361  
13362 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13363 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13368 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13370 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13372  
13373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13374 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13376  
13377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13378  
13379 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13380  
13381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13382 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13383  
13384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13385  
13386 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13389 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13390 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13392  
13393 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13394 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13395 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13397  
13398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13400  
13401 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13402 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13403  
13404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13408  
13409 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13410 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13412  
13413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13414 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13415 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13416 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13417  
13418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13419  
13420 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13423 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13424  
13425 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13426 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13428  
13429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13430  
13431 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13432 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13434  
13435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13436  
13437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13440  
13441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13443  
13444 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13445 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13446 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13448 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13449  
13450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13451 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13452  
13453 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13456  
13457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13459 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13460 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13462  
13463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13464 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13466  
13467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13468 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13470  
13471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13472 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13473 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13475  
13476 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13482 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13484 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13487 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13488 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13492  
13493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13494 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13499 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13502  
13503  
13504 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13507 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13511 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13512  
13513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13514 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13516 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13517 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13518 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13519  
13520  
13521  
13522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13523 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13527 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13530  
13531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13532 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13535 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13538 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13541  
13542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13543  
13544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13545  
13546 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13547 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13548 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13550 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13552 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13554 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13556 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13559 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13560 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13564 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13567 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13569 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13571 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13573  
13574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13575  
13576 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13577 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13579  
13580 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13583 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13584  
13585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13586 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13587 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13588  
13589 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13591  
13592 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13594 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13595  
13596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13597  
13598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13599  
13600 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13601  
13602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13603 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13605 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13609  
13610 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13612 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13613  
13614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13618 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13622  
13623 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13625 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13629  
13630 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13631 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13633 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13635 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13637 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13638 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13641  
13642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13643 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13646 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13647 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13648 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13651 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13655  
13656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13657  
13658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13659  
13660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13661  
13662 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13663 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13665  
13666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13668 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13670 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13671 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13673  
13674 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13677  
13678 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13679 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13681 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13682  
13683 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13685 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13686 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13687  
13688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13690 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13691 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13692  
13693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13694 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13698 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13700  
13701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13702  
13703 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13705 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13709 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13710 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13711 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13712 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13713 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13714 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13715  
13716 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13717 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13718 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13720 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13721 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13722  
13723 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13724 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13725 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13727 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13728 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13729 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13731 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13733 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13734 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13735 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13736 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13737  
13738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13739 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13740 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13741 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13743 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13744 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13745 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13747 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13748  
13749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13750 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13751  
13752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13753 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13754 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13755 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13756 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13758 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13759 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13760  
13761 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13763  
13764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13765 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13766  
13767 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13768  
13769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13770 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13772 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13773 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13774 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13775 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13776 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13777 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13778 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13779 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13780 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13781 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13783 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13787 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13789 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13790  
13791 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13792  
13793 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13795  
13796 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13797  
13798  
13799 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13801 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13802 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13805 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13806 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13807  
13808 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13809 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13810 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13814 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13815 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13816 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13817 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13818  
13819  
13820  
13821 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13823 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13825 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13827 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13828 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13829 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13830 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13831 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13832 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13834 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13835 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13836 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13837 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13838 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13839 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13840  
13841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13842 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13843 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13844 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13845 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13846 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13847 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13848  
13849 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13850 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13853 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13854 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13855 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13856  
13857 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13858 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13859 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13860  
13861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13863 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13864  
13865 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13866 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13867 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13868 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13869 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13871 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13872  
13873 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13874 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13875 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13878 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13879 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13881  
13882 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13883 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13884  
13885 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13886 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13888 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13890 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13891 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13892 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13893 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13894 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13895 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13896 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13897  
13898 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13899 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13900  
13901 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13902 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13903 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13904 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13905  
13906 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13907 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13908 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13909  
13910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13911 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13912  
13913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13914 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13916 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13917 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13919 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13920  
13921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13922 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13923  
13924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13925 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13926 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13928 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13930  
13931 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13933 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13934 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13935  
13936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13937 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13938 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13940 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13941 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13942 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13943 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13944 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13945  
13946 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13947 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13948 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13950  
13951 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13952 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13953 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13955  
13956 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13957 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13958 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13959 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13960 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13961 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13962 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13963 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13964  
13965 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13967 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13969 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13970  
13971 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13973  
13974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13975 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13976 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13977 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13978  
13979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13980 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13981 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13984  
13985 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13986 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13988 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13989  
13990 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13991 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13992 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13993 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13994 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13995 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13996 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13997 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
13998  
13999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14000 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14001 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14002  
14003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14004  
14005 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14006 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14007  
14008 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14009 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14010 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14012  
14013 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14014  
14015 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14016 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14017 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14018  
14019 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14020  
14021 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14022 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14023 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14024  
14025 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14026 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14028  
14029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14030 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14031 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14032 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14033  
14034 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14035 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14036 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14038  
14039 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14040 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14042 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14043  
14044 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14045 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14047 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14048  
14049 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14050 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14051 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14052 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14053  
14054 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14055  
14056 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14057 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14058  
14059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14060 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14061 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14062  
14063 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14064 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14065 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14066 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14067  
14068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14069 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14070  
14071 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14073  
14074 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14075 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14076  
14077 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14078 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14079 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14080  
14081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14083 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14084  
14085 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14087  
14088 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14089 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14090  
14091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14092 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14093  
14094 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14095 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14096 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14097  
14098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14099 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14100  
14101 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14103 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14104 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14105 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14106 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14107 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14108 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14109  
14110 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14111  
14112 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14114  
14115 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14117 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14118  
14119 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14120 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14121 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14122  
14123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14124 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14126 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14127 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14128  
14129 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14130 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14132 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14133  
14134 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14135 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14136  
14137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14141 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14142 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14143 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14144  
14145 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14148  
14149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14150 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14152 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14154 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14155  
14156 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14158 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14159 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14160 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14161  
14162 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14163 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14164 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14165 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14166  
14167 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14168 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14169 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14170  
14171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14172 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14173 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14174  
14175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14177  
14178 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14179 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14180 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14181  
14182 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14184 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14185 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14186  
14187 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14188 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14189 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14190 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14191  
14192 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14193 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14194 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14195 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14196 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14197  
14198 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14199 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14200 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14201 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14202 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14203  
14204 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14206 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14209 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14210  
14211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14212  
14213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14215 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14216  
14217 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14218 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14219 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14221 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14222  
14223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14224 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14227 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14228  
14229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14230 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14231 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14232 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14233  
14234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14238 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14240 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14241 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14245 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14246 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14247 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14250 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14252 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14254 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14255 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14256 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14260 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14261 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14262 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14265 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14268 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14270 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14272 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14277 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14278 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14279 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14283 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14284 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14285 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14286  
14287 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14288 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14290 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14292  
14293 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14294 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14299  
14300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14302  
14303 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14304 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14306 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14308  
14309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14310 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14311 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14312  
14313 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14314 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14315  
14316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14317 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14318  
14319 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14325  
14326 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14328 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14330 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14332  
14333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14334  
14335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14336 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14337 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14338  
14339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14341 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14343  
14344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14346  
14347 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14348 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14349 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14350  
14351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14354 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14355 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14357 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14359  
14360 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14362  
14363 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14368  
14369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14370 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14372  
14373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14374 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14376  
14377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14378 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14379  
14380 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14382  
14383 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14385 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14386 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14389 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14390 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14391  
14392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14393 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14394  
14395 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14397  
14398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14400 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14401 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14402 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14403  
14404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14408 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14409  
14410 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14412  
14413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14414 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14415 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14416  
14417 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14420 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14423  
14424 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14425 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14426  
14427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14428  
14429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14430 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14431  
14432 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14434 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14436 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14440  
14441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14443  
14444 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14445 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14446 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14448 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14449 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14451 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14453  
14454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14456 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14459 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14460 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14463  
14464  
14465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14466 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14468 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14470 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14472 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14473  
14474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14476 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14482  
14483  
14484  
14485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14487 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14488  
14489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14494  
14495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14499 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14502 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14503 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14504 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14507  
14508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14511 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14514  
14515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14516 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14517 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14518  
14519 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14521 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14523 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14527  
14528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14530  
14531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14532  
14533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14535  
14536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14538 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14541 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14542  
14543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14545 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14546 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14547 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14548 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14549  
14550 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14551  
14552 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14554 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14556  
14557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14559 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14560  
14561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14562  
14563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14564  
14565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14566  
14567 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14569 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14571 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14573  
14574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14575 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14576  
14577 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14579 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14580 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14583 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14584 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14586 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14587  
14588 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14589 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14591  
14592 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14594 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14595  
14596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14597 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14599 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14600 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14601 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14603 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14605 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14610 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14612  
14613 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14618 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14619  
14620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14622 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14623 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14625  
14626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14628  
14629 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14630 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14631 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14633  
14634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14635 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14637  
14638 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14643  
14644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14646 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14647 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14648 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14651 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14657  
14658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14661 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14662 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14663  
14664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14665  
14666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14668  
14669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14670 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14671 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14673 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14674 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14678 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14679  
14680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14681 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14683 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14685 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14686  
14687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14690  
14691 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14692 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14694  
14695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14696  
14697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14698 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14699  
14700 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14702 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14703  
14704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14705 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14706  
14707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14709 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14710  
14711 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14712 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14713  
14714 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14715 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14716 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14717  
14718 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14720 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14721 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14722 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14723 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14724  
14725 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14727 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14728 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14729 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14731 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14733 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14734  
14735 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14736 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14737 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14739 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14740 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14741 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14743 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14744 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14745  
14746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14747 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14748  
14749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14750 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14751  
14752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14753 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14754 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14755 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14756 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14758  
14759 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14760 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14761 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14763  
14764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14765 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14766  
14767 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14768 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14770  
14771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14772 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14773 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14774  
14775 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14776 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14777 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14778 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14779  
14780 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14781 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14783  
14784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14787  
14788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14789 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14790  
14791 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14792 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14793 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14794  
14795 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14796  
14797 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14798 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14799 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14801  
14802 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14805 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14806 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14807 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14808  
14809 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14810 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14812  
14813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14814 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14815  
14816 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14817 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14818 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14819 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14820 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14821  
14822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14823 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14825 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14827 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14828 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14829  
14830 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14831 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14832  
14833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14834 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14835 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14836 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14837  
14838 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14839 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14840 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14842 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14843 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14844  
14845 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14846 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14847 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14848 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14849 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14850 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14853 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14854 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14855 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14856 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14857 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14858 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14859 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14860 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14863 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14864 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14865  
14866 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14867 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14868 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14869  
14870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14871 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14872 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14873 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14874 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14875 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14878 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14879  
14880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14881 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14882 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14883  
14884 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14885  
14886 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14888 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14890 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14891 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14892 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14893 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14894 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14895  
14896 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14898 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14899 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14900 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14901 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14902 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14903 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14904 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14905 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14906 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14907 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14908  
14909 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14911 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14912 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14914 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14916 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14917 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14919 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14920 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14922 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14923 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14925 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14926 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14928 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14930  
14931 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14933  
14934 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14935 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14936  
14937 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14938 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14940 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14941 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14942  
14943 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14944 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14945  
14946 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14947 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14948 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14950 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14951 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14952 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14953  
14954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14955 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14956 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14957  
14958 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14959 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14960  
14961 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14962 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14963 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14964 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14965 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14967  
14968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14969 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14970 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14971 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14973  
14974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14975 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14976 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14977 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14978 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14980 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14981 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14984 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14985  
14986 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14988 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14989  
14990 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14991 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14992 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14993 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14994  
14995 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14996 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14997 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14998 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
14999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15000 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15001 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15002  
15003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15004 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15005 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15006 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15007 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15008  
15009 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15010 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15012 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15013 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15014 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15015 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15016  
15017 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15018 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15019 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15020 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15021 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15022  
15023 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15024 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15025 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15026  
15027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15028 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15030  
15031 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15032 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15033 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15034 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15035 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15036 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15039  
15040 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15042 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15043 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15044 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15045 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15047  
15048 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15049 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15050 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15051 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15052 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15053 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15054 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15055 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15056 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15057 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15058 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15060 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15061 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15062 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15063 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15064 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15065 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15066 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15067 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15069 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15070 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15071 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15073 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15074 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15075 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15076 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15077 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15078 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15079 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15080 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15083 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15084 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15085 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15087 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15088 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15089 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15090 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15092 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15093 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15094 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15095 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15096  
15097 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15099 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15100 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15101 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15103 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15104 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15105 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15106 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15107 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15108 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15109 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15110 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15111 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15112 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15114 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15115 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15117 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15118 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15119  
15120 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15121 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15122 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15124  
15125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15126 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15127 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15128 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15129 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15130 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15132 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15133 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15134 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15135 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15136 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15141 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15142 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15143 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15144 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15145  
15146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15148 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15150 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15152  
15153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15154 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15155 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15156 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15158 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15159 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15160 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15161 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15162 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15163 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15164 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15165 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15167 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15168 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15169 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15170 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15172 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15173 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15174 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15177 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15178 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15179 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15180 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15181 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15182 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15184  
15185 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15186 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15187 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15188 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15189  
15190 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15191 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15192 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15193 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15194 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15195 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15196 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15197 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15198 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15199  
15200  
15201 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15202 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15204 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15206 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15209  
15210 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15212 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15215 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15216  
15217  
15218  
15219 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15221 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15222 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15224 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15227 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15228 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15230 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15231 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15232 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15238 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15240 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15241 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15245 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15246  
15247 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15250 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15252 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15254 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15255 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15256 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15260 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15261  
15262 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15265  
15266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15268 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15270  
15271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15272 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15274  
15275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15277  
15278 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15279 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15280  
15281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15283  
15284 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15285  
15286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15287 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15288  
15289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15290  
15291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15292 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15293  
15294 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15298  
15299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15303 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15304 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15306 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15310 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15311  
15312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15313 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15314  
15315 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15317 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15318  
15319 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15321  
15322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15326  
15327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15328 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15330  
15331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15332 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15334  
15335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15336 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15337  
15338 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15341 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15343 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15347 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15348  
15349 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15350 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15354 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15355 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15357 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15359 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15360 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15362  
15363 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15366  
15367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15368  
15369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15370  
15371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15372 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15373  
15374 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15375  
15376 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15378 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15379  
15380 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15382  
15383 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15385  
15386 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15389 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15390  
15391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15393  
15394 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15395 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15396  
15397 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15400 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15401 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15402 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15403  
15404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15408 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15409 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15410  
15411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15412 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15414 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15415  
15416 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15417 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15420  
15421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15423 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15424 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15425  
15426 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15428  
15429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15430 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15431 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15432 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15434  
15435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15436 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15440  
15441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15443  
15444 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15445 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15446 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15448  
15449 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15451  
15452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15453 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15455  
15456 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15459  
15460 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15464 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15466  
15467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15468 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15470 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15472 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15473  
15474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15476 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15479  
15480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15482  
15483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15484 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15487  
15488 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15494  
15495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15499  
15500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15502 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15503  
15504 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15505  
15506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15507  
15508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15511 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15512  
15513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15514  
15515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15516 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15517 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15518 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15519  
15520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15521 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15523  
15524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15527  
15528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15530 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15532  
15533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15535 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15538 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15541  
15542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15545 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15546 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15547 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15548 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15550  
15551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15552  
15553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15554 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15556 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15559  
15560 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15564 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15567 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15569 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15570  
15571 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15572  
15573 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15575 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15576 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15577  
15578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15579 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15580  
15581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15583 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15584 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15586 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15587 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15588  
15589 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15591  
15592 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15594 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15595 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15597 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15599  
15600 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15601 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15603 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15605 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15610  
15611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15612 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15613 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15618 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15622  
15623 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15624  
15625 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15629 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15630  
15631 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15633 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15635  
15636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15637 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15638  
15639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15643  
15644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15646  
15647 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15648 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15649  
15650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15651  
15652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15653  
15654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15657  
15658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15661 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15662  
15663 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15665 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15668  
15669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15670 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15671 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15672  
15673 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15674 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15678 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15679  
15680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15681 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15683 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15685 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15686 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15690 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15691 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15692 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15694  
15695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15696  
15697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15698  
15699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15700  
15701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15702  
15703 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15704  
15705 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15709 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15710 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15711  
15712 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15713 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15714 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15715 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15716 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15717 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15718 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15720  
15721 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15722  
15723 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15724  
15725 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15727 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15728 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15729 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15731 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15733 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15734  
15735 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15736 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15737 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15739 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15740 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15741  
15742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15743 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15744 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15745 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15747 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15748  
15749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15750  
15751 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15752  
15753 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15754  
15755 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15756 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15758  
15759 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15760 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15761 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15763 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15765 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15766 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15767 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15768  
15769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15770 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15772  
15773 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15774  
15775 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15776  
15777 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15778  
15779 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15780 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15781  
15782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15783  
15784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15787 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15788  
15789 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15790  
15791 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15792 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15793  
15794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15795 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15796 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15797 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15798 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15799 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15801 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15802 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15805 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15806 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15807 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15808 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15809  
15810 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15814 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15815 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15816 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15817 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15818  
15819 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15820 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15821 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15823  
15824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15825 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15826  
15827 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15828 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15829 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15830 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15831 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15832 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15834 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15835 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15836  
15837 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15838 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15839 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15840  
15841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15842 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15843  
15844 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15845 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15846 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15847  
15848 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15849  
15850 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15851  
15852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15853 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15854 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15855 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15856 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15857 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15858  
15859 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15860 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15863 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15864 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15865 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15866  
15867 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15868  
15869 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15871 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15872 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15873  
15874 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15875 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15878  
15879 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15881 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15882 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15883 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15884 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15885  
15886 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15888 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15890 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15891 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15892  
15893 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15894  
15895 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15896 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15898 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15899  
15900 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15901 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15902 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15903 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15904 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15905 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15906 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15907 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15908 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15909 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15911 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15912 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15914 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15915  
15916 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15917 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15919 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15920 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15922  
15923 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15925 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15926 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15928 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15929  
15930 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15931  
15932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15933  
15934 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15935  
15936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15937  
15938 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15940 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15941 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15942 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15943 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15944 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15945 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15946  
15947 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15948  
15949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15950  
15951 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15952 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15953  
15954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15955 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15956 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15957 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15958 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15959 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15960  
15961 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15962 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15963 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15964 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15965 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15967 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15969 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15970 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15971 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15973 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15975 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15976 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15977  
15978 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15980 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15981  
15982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15984  
15985 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15986 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15987  
15988 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15989 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15990 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15991 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15992 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15993 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15994 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15995 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15996  
15997 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
15998  
15999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16000  
16001 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16002 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16004 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16005  
16006 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16007 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16008 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16009 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16010 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16011  
16012 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16013  
16014 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16015 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16016  
16017 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16018 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16019 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16020 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16021 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16022  
16023 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16024 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16025 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16026  
16027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16028 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16030 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16031  
16032 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16033 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16034 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16035 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16036  
16037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16039 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16040 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16042 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16043 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16044 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16045 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16047 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16048 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16049 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16050  
16051 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16052 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16053  
16054 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16055 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16056 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16057 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16058  
16059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16060 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16061 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16062 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16063  
16064 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16065 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16066  
16067 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16069 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16070  
16071 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16073 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16074 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16075 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16076 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16077 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16078 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16079 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16080 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16081  
16082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16083 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16084 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16085  
16086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16087 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16088 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16089  
16090 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16092 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16093 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16094 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16095 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16096 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16097  
16098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16099 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16100 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16101 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16103 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16104 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16105 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16106 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16107 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16108 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16109 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16110 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16111 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16112 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16114 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16115  
16116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16117 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16118  
16119 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16120 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16121  
16122 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16124  
16125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16126  
16127 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16128 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16129  
16130 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16132 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16133 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16134 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16135 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16136  
16137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16141 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16142  
16143 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16144 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16145  
16146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16148 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16150  
16151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16152  
16153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16154 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16155 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16156 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16158 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16159 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16160  
16161 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16162 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16163  
16164 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16165  
16166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16167 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16168 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16169 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16170 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16172  
16173 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16174  
16175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16177 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16178 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16179  
16180 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16181 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16182 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16184 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16185 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16186 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16187  
16188 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16189 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16190 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16191 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16192 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16193 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16194 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16195 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16196  
16197 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16198 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16199 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16200 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16201 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16202 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16204 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16206  
16207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16209 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16210 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16212  
16213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16215 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16216 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16217 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16218 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16219  
16220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16221 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16222 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16224  
16225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16227 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16228 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16230 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16231 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16232  
16233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16238 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16239  
16240 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16241 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16242  
16243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16245 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16246  
16247 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16248  
16249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16250  
16251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16252 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16254 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16255  
16256 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16260 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16261 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16262  
16263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16265 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16268 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16270 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16272  
16273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16277 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16278 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16279  
16280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16281  
16282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16283  
16284 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16285 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16287 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16288 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16290 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16292 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16293 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16294 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16303 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16304  
16305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16306  
16307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16310  
16311 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16313 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16314 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16315 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16317 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16318 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16319 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16323  
16324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16326 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16328 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16330 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16331  
16332 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16334 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16336  
16337 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16338  
16339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16340  
16341 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16343 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16347 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16348 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16349 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16350 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16352  
16353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16354  
16355 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16357 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16359 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16360 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16361  
16362 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16363 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16368  
16369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16370  
16371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16372 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16374 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16376 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16378  
16379  
16380 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16382 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16383 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16385 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16386 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16389  
16390 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16393 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16394  
16395 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16397 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16400 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16401 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16402 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16403 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16408 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16409 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16410  
16411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16412  
16413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16414  
16415 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16416 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16417 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16420 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16423 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16424 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16425  
16426 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16428  
16429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16430 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16431  
16432 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16434  
16435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16436 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16440 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16442  
16443 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16444 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16445  
16446 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16448  
16449 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16451 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16453 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16456  
16457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16458  
16459 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16460  
16461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16464 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16466 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16468 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16470 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16471  
16472 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16473 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16476 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16480  
16481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16482 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16484 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16485  
16486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16487  
16488 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16494 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16499 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16502  
16503 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16504 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16507 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16511 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16513  
16514 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16516 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16517 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16518 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16519 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16521 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16523 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16524  
16525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16526  
16527 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16529  
16530 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16532  
16533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16535  
16536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16538  
16539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16541 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16545 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16546  
16547 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16548 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16549  
16550 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16552  
16553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16554 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16555  
16556 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16559 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16560 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16563  
16564 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16565  
16566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16567  
16568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16569 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16571  
16572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16573 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16575 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16576 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16577 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16579 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16580  
16581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16583  
16584 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16586 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16587 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16588  
16589 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16590  
16591 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16592  
16593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16594  
16595 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16597 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16599  
16600 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16601 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16603 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16605 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16607  
16608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16610 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16612 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16613 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16618 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16619  
16620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16622 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16623 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16625 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16629  
16630 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16631 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16633 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16635  
16636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16637 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16638 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16643 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16646 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16647 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16648 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16651 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16655  
16656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16657 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16661 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16662 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16663 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16665 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16668 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16670 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16671  
16672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16673 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16674 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16678 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16679 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16681 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16683  
16684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16685  
16686 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16689  
16690 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16691 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16692 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16693  
16694 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16698 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16700  
16701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16702 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16703  
16704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16705 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16709  
16710 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16711 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16712  
16713 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16714  
16715 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16716 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16717 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16718 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16720  
16721 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16722 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16723 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16724 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16725 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16727 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16728 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16729 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16731 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16733  
16734 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16735  
16736  
16737 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16739 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16740 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16741 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16743 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16744 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16745  
16746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16747 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16748 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16750 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16751 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16753 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16754  
16755  
16756  
16757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16758 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16759 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16760 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16761 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16763 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16765 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16766 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16767  
16768 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16770 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16772 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16773 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16774 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16775 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16776 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16777 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16778 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16779 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16780 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16781 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16783 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16787 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16789  
16790 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16791 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16792 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16793 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16795  
16796 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16797  
16798 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16799 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16801 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16802  
16803 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16805 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16806  
16807 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16808 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16809 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16810  
16811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16814  
16815 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16816 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16817 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16818 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16819 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16820 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16821 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16823 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16824  
16825 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16827 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16828  
16829 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16830 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16831 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16832 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16834 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16835  
16836 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16837 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16838  
16839 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16840 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16842 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16843 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16844 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16845 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16846 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16847 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16848 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16849 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16850 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16853 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16854  
16855 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16856 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16857 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16858 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16859 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16860 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16863 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16864 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16865 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16866 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16867 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16868  
16869 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16871 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16872 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16873 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16874 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16875 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16878 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16879 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16880  
16881 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16882 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16883 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16884 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16885 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16886 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16888 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16889 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16890 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16891 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16892 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16893  
16894 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16895 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16896 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16898 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16899 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16900 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16901 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16902  
16903 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16904 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16905 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16906  
16907 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16908 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16909 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16911 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16912 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16914 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16916  
16917 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16919 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16920  
16921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16922 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16923 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16925 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16926  
16927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16928 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16930 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16931  
16932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16933 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16934 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16935 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16937 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16938  
16939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16940 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16941 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16942 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16943 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16944  
16945 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16946 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16947 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16948 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16950 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16951  
16952 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16953 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16955 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16956 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16957  
16958 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16959 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16960  
16961 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16962 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16963  
16964 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16965  
16966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16967 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16969 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16970 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16971 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16973 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16975  
16976 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16977 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16978  
16979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16980 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16981 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16984 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16985 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16986 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16988 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16989  
16990 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16991 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16992 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16993 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16994 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16995 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16996 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16997  
16998 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
16999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17000 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17001  
17002 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17003 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17004 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17005 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17006 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17007 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17008 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17009 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17010 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17012 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17013 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17014 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17015 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17016  
17017 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17018 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17019  
17020 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17021 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17022 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17023 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17024  
17025 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17026 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17027 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17028 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17030 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17031  
17032 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17033 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17034  
17035 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17036 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17039  
17040 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17042  
17043 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17044 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17045  
17046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17047 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17048 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17049  
17050 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17051  
17052 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17053 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17054 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17055 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17056 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17057  
17058 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17059 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17060  
17061 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17062 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17063 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17064 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17065 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17066  
17067 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17069  
17070 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17071 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17073 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17074 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17075 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17076 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17077  
17078 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17079 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17080 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17082 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17083  
17084 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17085 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17087  
17088 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17089 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17090 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17092  
17093 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17094 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17095  
17096 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17097 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17098  
17099 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17100 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17101  
17102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17103 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17104 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17105 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17106 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17107 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17108 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17109  
17110 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17111 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17112  
17113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17114 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17115 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17117  
17118 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17119 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17120 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17121 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17122 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17124  
17125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17126 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17127  
17128 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17129 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17130 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17132 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17133 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17134  
17135 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17136 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17141 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17142 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17143 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17144 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17145 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17148  
17149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17150 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17151  
17152 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17154  
17155 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17156 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17158 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17159  
17160 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17161 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17162 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17163  
17164 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17165 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17167 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17168 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17169 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17170 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17171  
17172 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17173 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17174 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17177 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17178 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17179 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17180  
17181 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17182 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17184 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17185  
17186 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17187 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17188 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17189 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17190  
17191 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17192 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17193  
17194 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17195 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17196 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17197 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17198  
17199 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17200 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17201 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17202  
17203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17204 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17206 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17209 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17210 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17212 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17215 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17216 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17217 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17218  
17219 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17220 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17221 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17222 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17223  
17224 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17226  
17227 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17228 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17230 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17231 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17232 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17236  
17237 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17238 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17240 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17241 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17245 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17246  
17247 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17250  
17251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17252 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17254  
17255 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17256 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17260 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17261  
17262 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17265 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17266  
17267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17268 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17269 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17270  
17271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17272 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17277 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17278  
17279 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17283 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17284 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17285  
17286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17287 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17288 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17290 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17291  
17292 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17293  
17294  
17295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17300 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17303  
17304 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17306 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17308 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17310 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17311 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17312  
17313  
17314  
17315 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17317 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17318 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17319 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17322 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17326 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17328 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17329 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17330 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17331  
17332 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17334 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17336 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17337 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17338  
17339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17341  
17342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17343 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17344  
17345 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17347  
17348 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17349 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17350 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17354 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17355  
17356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17357 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17359  
17360 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17362 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17363  
17364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17365  
17366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17368  
17369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17370 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17371  
17372 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17374 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17376 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17378 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17379 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17380 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17381  
17382 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17383 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17385 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17386 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17388  
17389 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17390  
17391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17393 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17394 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17395  
17396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17397 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17399 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17400  
17401 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17402  
17403 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17405 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17408 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17409 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17410 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17412  
17413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17414 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17415 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17416 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17417  
17418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17420 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17421 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17423  
17424 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17425 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17426 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17428 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17430 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17431  
17432 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17434 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17436  
17437 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17439  
17440 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17441 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17443 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17444 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17445 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17446  
17447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17448 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17449 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17451  
17452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17453 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17455  
17456 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17459 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17460 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17464 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17466 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17468 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17470 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17472 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17473  
17474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17476 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17480  
17481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17482 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17484  
17485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17487 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17488 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17491  
17492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17494 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17496  
17497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17499  
17500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17502 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17503 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17504 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17505  
17506 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17507 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17511  
17512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17514 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17516  
17517 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17518 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17519 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17521 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17522 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17523  
17524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17527 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17530 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17532 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17533 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17535  
17536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17538  
17539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17541 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17545 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17546 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17547 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17548  
17549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17550 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17552  
17553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17554 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17555  
17556 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17559 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17560 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17561  
17562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17564  
17565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17567 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17569  
17570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17571  
17572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17573 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17574  
17575 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17576 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17577 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17578 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17579 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17580  
17581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17583 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17584  
17585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17586 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17587 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17588 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17589  
17590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17591 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17592 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17593  
17594 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17595 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17597  
17598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17599 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17600 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17601 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17603  
17604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17605  
17606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17608 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17610  
17611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17612 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17613  
17614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17615 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17618  
17619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17620 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17622 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17623  
17624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17625 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17626  
17627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17629 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17630  
17631 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17633  
17634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17635 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17636 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17637 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17638  
17639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17641 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17643 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17644 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17646 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17647 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17648 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17649  
17650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17651 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17654 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17657 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17661 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17662 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17663 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17665 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17667 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17668  
17669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17670 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17671 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17673 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17674  
17675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17678  
17679 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17681 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17683 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17685 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17686  
17687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17690 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17691 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17692 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17694 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17698  
17699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17700 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17702 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17703 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17704 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17705  
17706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17707 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17708 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17709 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17710 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17711 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17712 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17713 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17714  
17715 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17716  
17717 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17718 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17719 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17720 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17721 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17722  
17723 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17724 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17725 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17726 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17727 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17728  
17729 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17730 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17731  
17732 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17733 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17734 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17735 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17736 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17737 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17738 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17739 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17740 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17741 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17742 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17743  
17744 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17745 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17746 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17747 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17748 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17749 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17750 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17751 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17752 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17753 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17754 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17755 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17756  
17757 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17758 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17759  
17760 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17761 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17762 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17763 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17764 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17765 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17766 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17767  
17768 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17769 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17770 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17771 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17772  
17773 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17774 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17775 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17776 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17777 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17778  
17779 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17780 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17781  
17782 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17783 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17784 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17785 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17786 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17787 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17788 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17789  
17790 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17791 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17792 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17793 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17794 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17795 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17796 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17797 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17798 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17799 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17800 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17801  
17802 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17803  
17804 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17805 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17806 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17807  
17808 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17809 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17810 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17811 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17812 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17813 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17814 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17815  
17816 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17817  
17818 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17819 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17820 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17821 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17822 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17823 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17824 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17825 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17826 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17827  
17828 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17829 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17830 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17831  
17832 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17833 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17834 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17835  
17836 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17837 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17838 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17839  
17840 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17841 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17842 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17843  
17844 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17845 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17846 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17847 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17848 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17849  
17850 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17851 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17852 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17853  
17854 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17855 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17856 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17857 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17858 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17859 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17860 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17861 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17862 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17863 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17864 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17865 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17866  
17867 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17868 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17869 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17870 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17871 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17872 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17873 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17874 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17875 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17876 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17877 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17878 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17879 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17880 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17881 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17882  
17883 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17884  
17885 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17886  
17887 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17888 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17889  
17890 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17891 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17892  
17893 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17894 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17895  
17896 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17897 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17898 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17899 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17900  
17901 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17902  
17903 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17904 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17905 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17906 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17907  
17908 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17909 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17910 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17911  
17912 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17913 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17914 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17915 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17916 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17917  
17918 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17919 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17920 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17921 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17922 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17923  
17924 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17925  
17926 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17927 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17928 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17929 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17930  
17931 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17932 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17933  
17934 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17935 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17936 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17937 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17938 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17939 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17940 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17941  
17942 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17943 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17944 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17945 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17946 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17947 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17948 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17949 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17950 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17951 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17952 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17953 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17954 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17955  
17956 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17957 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17958 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17959 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17960 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17961  
17962 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17963 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17964 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17965 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17966 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17967 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17968 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17969 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17970 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17971 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17972 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17973  
17974 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17975 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17976 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17977 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17978 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17979 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17980 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17981  
17982 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17983 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17984 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17985  
17986 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17987 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17988 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17989 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17990  
17991 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17992 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17993 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17994 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17995  
17996 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17997 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17998 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
17999 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18000 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18001 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18002 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18003  
18004 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18005 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18006 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18007  
18008 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18009  
18010 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18011 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18012 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18013 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18014 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18015  
18016 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18017 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18018  
18019 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18020 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18021 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18022 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18023  
18024 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18025 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18026 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18027  
18028 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18029 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18030 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18031  
18032 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18033 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18034 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18035 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18036 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18037 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18038 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18039 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18040  
18041 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18042 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18043 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18044 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18045 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18046 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18047 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18048 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18049 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18050 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18051 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18052  
18053 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18054  
18055 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18056 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18057 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18058 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18059  
18060 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18061 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18062 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18063 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18064 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18065  
18066 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18067 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18068 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18069 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18070 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18071 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18072 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18073 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18074 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18075 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18076 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18077 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18078 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18079 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18080 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18081 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18082  
18083 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18084 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18085 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18086 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18087 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18088  
18089 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18090 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18091 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18092 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18093 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18094 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18095 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18096 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18097 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18098 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18099 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18100 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18101 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18102 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18103 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18104  
18105 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18106 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18107 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18108 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18109 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18110 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18111 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18112 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18113 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18114 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18115 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18116 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18117 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18118 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18119  
18120 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18121 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18122  
18123 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18124 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18125 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18126 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18127  
18128 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18129 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18130 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18131 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18132  
18133 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18134  
18135 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18136 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18137 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18138 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18139 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18140 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18141  
18142 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18143 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18144  
18145 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18146 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18147 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18148 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18149 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18150  
18151 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18152 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18153 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18154 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18155  
18156 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18157 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18158 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18159 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18160 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18161 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18162 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18163 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18164  
18165 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18166 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18167 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18168  
18169 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18170 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18171 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18172 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18173 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18174 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18175 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18176 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18177 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18178  
18179 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18180 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18181 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18182 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18183 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18184  
18185 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18186 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18187 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18188  
18189 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18190 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18191 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18192 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18193 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18194 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18195 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18196 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18197  
18198 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18199  
18200  
18201 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18202 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18203 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18204 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18205 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18206 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18207 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18208 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18209  
18210 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18211 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18212 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18213 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18214 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18215 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18216 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18217 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18218  
18219  
18220  
18221 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18222 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18223 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18224 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18225 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18226 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18227 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18228  
18229 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18230 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18231 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18232  
18233 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18234 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18235 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18236 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18237  
18238 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18239 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18240 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18241 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18242 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18243 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18244 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18245 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18246 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18247  
18248 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18249 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18250 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18251 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18252  
18253 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18254 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18255 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18256 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18257 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18258 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18259 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18260  
18261 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18262 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18263 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18264 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18265  
18266 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18267 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18268 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18269  
18270 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18271 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18272 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18273 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18274 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18275 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18276 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18277 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18278  
18279 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18280 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18281 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18282 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18283 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18284  
18285 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18286 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18287  
18288 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18289 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18290  
18291 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18292 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18293 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18294 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18295 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18296 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18297 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18298 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18299 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18300  
18301 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18302 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18303  
18304 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18305 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18306  
18307 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18308  
18309 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18310 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18311 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18312 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18313 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18314 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18315  
18316 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18317 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18318 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18319  
18320 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18321 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18322  
18323 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18324 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18325 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18326 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18327 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18328 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18329  
18330 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18331 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18332 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18333 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18334 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18335 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18336 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18337 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18338 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18339 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18340 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18341 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18342 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18343  
18344 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18345  
18346 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18347 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18348 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18349 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18350 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18351 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18352 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18353 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18354 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18355  
18356 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18357 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18358 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18359  
18360 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18361 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18362 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18363  
18364 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18365 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18366 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18367 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18368  
18369 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18370 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18371 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18372  
18373 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18374  
18375 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18376 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18377 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18378 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18379 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18380 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18381 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18382 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18383 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18384 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18385 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18386 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18387 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18388 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18389 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18390 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18391 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18392 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18393 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18394 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18395  
18396 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18397 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18398 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18399  
18400 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18401 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18402 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18403 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18404 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18405  
18406 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18407 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18408 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18409 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18410  
18411 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18412  
18413 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18414 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18415 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18416  
18417 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18418 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18419 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18420 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18421  
18422 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18423 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18424 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18425 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18426 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18427 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18428 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18429 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18430 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18431 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18432 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18433 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18434 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18435 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18436 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18437  
18438 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18439 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18440 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18441  
18442 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18443 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18444 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18445  
18446 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18447 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18448 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18449 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18450 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18451 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18452 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18453  
18454 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18455 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18456 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18457 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18458 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18459 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18460 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18461 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18462 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18463 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18464 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18465 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18466 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18467 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18468  
18469 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18470 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18471 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18472 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18473  
18474 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18475 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18476 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18477 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18478 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18479 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18480 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18481 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18482  
18483 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18484 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18485 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18486 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18487 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18488 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18489 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18490 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18491 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18492 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18493 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18494  
18495 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18496 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18497 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18498 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18499 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18500 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18501 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18502  
18503 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18504  
18505 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18506  
18507 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18508 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18509 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18510 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18511 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18512 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18513 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18514 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18515 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18516 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18517 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18518 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18519  
18520 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18521 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18522  
18523 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18524 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18525 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18526 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18527 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18528 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18529 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18530 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18531 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18532 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18533  
18534 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18535 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18536 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18537 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18538 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18539 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18540 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18541  
18542 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18543 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18544 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18545 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18546 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18547 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18548 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18549 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18550  
18551 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18552 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18553 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18554 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18555 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18556  
18557 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18558 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18559  
18560 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18561 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18562 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18563 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18564 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18565 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18566 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18567  
18568 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18569  
18570 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18571 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18572 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18573 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18574 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18575  
18576 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18577 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18578  
18579 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18580 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18581 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18582 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18583 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18584  
18585 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18586  
18587 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18588 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18589 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18590 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18591 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18592  
18593 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18594 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18595  
18596 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18597 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18598 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18599 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18600 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18601  
18602 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18603 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18604 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18605 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18606 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18607 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18608  
18609 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18610 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18611 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18612 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18613 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18614 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18615  
18616 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18617 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18618 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18619 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18620  
18621 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18622 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18623  
18624 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18625  
18626 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18627 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18628 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18629 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18630 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18631  
18632 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18633 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18634 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18635 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18636  
18637 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18638 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18639 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18640 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18641  
18642 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18643 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18644  
18645 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18646 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18647 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18648  
18649 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18650 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18651  
18652 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18653 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18654  
18655 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18656 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18657  
18658 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18659 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18660 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18661 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18662 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18663  
18664 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18665 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18666 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18667  
18668 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18669 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18670  
18671 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18672 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18673 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18674 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18675 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18676 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18677 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18678 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18679 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18680 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18681  
18682 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18683 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18684 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18685  
18686 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18687 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18688 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18689 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18690 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18691 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18692 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18693 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18694 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18695 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18696 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18697 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18698 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18699 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18700  
18701 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {
18702  
18703  
18704  
18705  
18706 <= 0.5 ) {< 0.5 ?< cells; j++ ) { /< anims; i++ ) {<= 11, FF <= 37, Android <= 2.3 only<= 37, Android <= 2.3 only<= 2.3 only< value.length ) {