3v4l.org

run code in 300+ PHP versions simultaneously
<?php define( COL_MIN_AVG, 64 ); define( COL_MAX_AVG, 192 ); define( COL_STEP, 16 ); // (192 - 64) / 16 = 8 // 8 ^ 3 = 512 colors function usercolor( $username ) { $range = COL_MAX_AVG - COL_MIN_AVG; $factor = $range / 256; $offset = COL_MIN_AVG; $base_hash = substr(md5($username), 0, 6); $b_R = hexdec(substr($base_hash,0,2)); $b_G = hexdec(substr($base_hash,2,2)); $b_B = hexdec(substr($base_hash,4,2)); $f_R = floor((floor($b_R * $factor) + $offset) / COL_STEP) * COL_STEP; $f_G = floor((floor($b_G * $factor) + $offset) / COL_STEP) * COL_STEP; $f_B = floor((floor($b_B * $factor) + $offset) / COL_STEP) * COL_STEP; return printf('#%02x%02x%02x', $f_R, $f_G, $f_B); } for( $i=0; $i<30; $i++ ) { printf('<div style="height: 100px; width: 100px; background-color: %s">&nbsp;</div>'."\n", usercolor(rand())); }
Output for 7.4.0
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.3.12
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.3.11
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.3.10
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.3.9
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #a09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.3.8
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.3.7
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.3.6
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #709080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.3.5
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.3.4
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.3.3
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.3.2
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #604080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.3.1
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.3.0
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.25
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #806070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.24
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.23
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.22
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #704090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.21
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.20
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.19
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.18
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.17
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.13
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #605040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.12
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.11
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.10
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #a0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.9
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.8
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #90b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.7
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #505050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.6
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.5
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.4
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.3
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.2
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.1
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #70a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.2.0
Warning: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 2 Warning: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 3 Warning: Use of undefined constant COL_STEP - assumed 'COL_STEP' (this will throw an Error in a future version of PHP) in /in/rIvBX on line 4 #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.1.33
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.1.32
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.1.31
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #6070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.1.30
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.1.29
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.1.28
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #70a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.1.27
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.1.26
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.1.25
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.1.7
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.1.6
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #704040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.1.5
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.1.0
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.0.20
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.0.14
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #604050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.0.10
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.0.9
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.0.8
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.0.7
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.0.6
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #80b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.0.5
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.0.4
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.0.3
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #605090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.0.2
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.0.1
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 7.0.0
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.28
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.25
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.24
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.23
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #70a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.22
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.21
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #709080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.20
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #408080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.19
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.18
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.17
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.16
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.15
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #605060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.14
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.13
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.12
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.11
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.10
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.9
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.8
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #8070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.7
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.6
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.5
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.4
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #70b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.3
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #605060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.2
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.1
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #70b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.6.0
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.38
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #40a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.37
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #408080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.36
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.35
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.34
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.33
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.32
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.31
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.30
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.29
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.28
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #6040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.27
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.26
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.25
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #908060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.24
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.23
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.22
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.21
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.20
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #80b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.19
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.18
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #509070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.16
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.15
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.14
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.13
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.12
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.11
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.10
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.9
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.8
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.7
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #504070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.6
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.5
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.4
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.3
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.2
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.1
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.5.0
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.45
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.44
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.43
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.42
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.41
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.40
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.39
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.38
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #70a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.37
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.36
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.35
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.34
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.32
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.31
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.30
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.29
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.28
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.27
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #70b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.26
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.25
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.24
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.23
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.22
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.21
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.20
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #608050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.19
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.18
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #609050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.17
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #908080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.16
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.15
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.14
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.13
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.12
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.11
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #704040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.10
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.9
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.8
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #908060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.7
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.6
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.5
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.4
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.3
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.2
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.1
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.4.0
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.29
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #60b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.28
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.27
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.26
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.25
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #6050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.24
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.23
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.22
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.21
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.20
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #507070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.19
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.18
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #708090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.17
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.16
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.15
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #504060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.14
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.13
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.12
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.11
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.10
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.9
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.8
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.7
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #7080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.6
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.5
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.4
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.3
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.2
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #704090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.1
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.3.0
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.17
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.16
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.15
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.14
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #609070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.13
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #706070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.12
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.11
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.10
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.9
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #907090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.8
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #805040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.7
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.6
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.5
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.4
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.3
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #60b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.2
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.1
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.2.0
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.1.6
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.1.5
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.1.4
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.1.3
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.1.2
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #80a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.1.1
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #50b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.1.0
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #907090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.0.5
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.0.4
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.0.3
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.0.2
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.0.1
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #604080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 5.0.0
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.4.9
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.4.8
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #6040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.4.7
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #6070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.4.6
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.4.5
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.4.4
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #407040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #707070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.4.3
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #804070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.4.2
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.4.1
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b04040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #705080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a04090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a040a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #907090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.4.0
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a0b050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.3.11
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #907080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #807060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #508060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b08040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #804060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b06080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #608040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.3.10
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b08070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #604090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #406090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #904050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a09050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.3.9
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #706080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #409070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #404050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #609090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a05040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #405040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #906070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.3.8
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #606090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #704050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #70b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #808090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #80b080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #908090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #607050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #408070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6040b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b09080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b04050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #506060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #605080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.3.7
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #80a060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #805080<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #909090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a0a050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #509040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #9060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50b0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #6080b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5050a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #5090b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #50a090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #a06090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #505050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #b0a040<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #90a0a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #809050<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #4070b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #8090a0<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div> #40b090<div style="height: 100px; width: 100px; background-color: 7">&nbsp;</div>
Output for 4.3.6
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #50a0b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #90b050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #5090a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a08060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #804060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #606050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a0b070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #506060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a07040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b08090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #706090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #506050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a080a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a040b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #90b0a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #7060a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #7050b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b06070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #40b0b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #905050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #705060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #504070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #709060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div>
Output for 4.3.5
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #b05080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #604070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #508050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #605050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #705040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #80b050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #50b0b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #509070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #7080a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #407080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a09060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #70a050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #709080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #60b040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b07090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #5050b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #507040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a0b050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #506050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #805040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a07040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #7070b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #809070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #80b0a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #907050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #406090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div>
Output for 4.3.4
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #80b0b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #909070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #70a060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #70b090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #404060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #707090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #809060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #505050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #908070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #508090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #405080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #408060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #80a080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b05070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #906060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #80b060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a07080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #70b060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #704040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a0a080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a050b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a05060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b0b060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div>
Output for 4.3.3
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a0b0b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #4050b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #708080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b09060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #9070a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #40a040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #9090a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b06060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a08060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #608080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #605060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a07050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #50b040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #806040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #60b0b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #70a070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a0b080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a08080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a08070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #6060b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #50a060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #7040b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #408040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #709070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #507090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #508070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #90b080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div>
Output for 4.3.2
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a08040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #708050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #9080a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #505060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b0a050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b05040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #805070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #50b080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #904080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #505090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #90a090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #9040b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #407050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #6070a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b04080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #505040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #60b040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b0a060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b0a080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a060a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #606040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #7090b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #509090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a0b0b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #708060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #409050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a07070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #7060b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #7080b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div>
Output for 4.3.1
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #7040a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b0a090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #607070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #405070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a08060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #905080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #90b060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #406040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b09050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b06040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #706050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #505080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a04080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #808080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #904060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #60a080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a04060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a04040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #705040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #9050b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a09060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #809080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #9070b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b0a0b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #408080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #704070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #606060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #705050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #504090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #70a080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div>
Output for 4.3.0
Notice: Use of undefined constant COL_MIN_AVG - assumed 'COL_MIN_AVG' in /in/rIvBX on line 2 Notice: Use of undefined constant COL_MAX_AVG - assumed 'COL_MAX_AVG' in /in/rIvBX on line 3 Notice: Use of undefined constant COL_STEP - assumed 'COL_STEP' in /in/rIvBX on line 4 #a05080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #7080b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #808050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #8090a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #605090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #5080b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #604060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b08080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #6090b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b05080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #60a040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a09060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #40b0a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b0b0b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #7040b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #405060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #a04050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #508070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b07070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #806070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #80a090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #9090a0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #709050<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #50a0b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #506080<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #905060<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #b04070<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #9070b0<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #50a090<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div> #50a040<div style="height: 100px; width: 100px; background-color: ">&nbsp;</div>

preferences:
179.82 ms | 409 KiB | 261 Q