3v4l.org

run code in 300+ PHP versions simultaneously
<?php function utf8_to_latin1( $str ) { //Removing Invalid UTF-8 $str = utf8_clean( $str ); return $str; //Removing UTF-8 charactors that can not be accurately translated to Latin-1 $regx = '/[\xC4-\xDF][\x80-\xBF]|[\xE0-\xEF][\x80-\xBF]{2}|[\xF0-\xF7][\x80-\xBF]{3}/'; $str = preg_replace( $regx , '' , $str ); //Removing invalid Latin-1, if any $regx = '/([\x80-\x9F]+)/'; $str = preg_replace( $regx , '' , $str ); //Translating UTF-8 to Latin-1 $str = strtr( $str , utf8_latin1_table( ) ); return $str; //utf8_decode and utf8_encode take the code points 128 to 159 as valid Latin 1 characters. This is not standard practice. http://en.wikipedia.org/wiki/ISO/IEC_8859-1#Similar_character_sets } function utf8_latin1_table( ) { static $tbl = array( "\x0" => "\x0", "\x1" => "\x1", "\x2" => "\x2", "\x3" => "\x3", "\x4" => "\x4", "\x5" => "\x5", "\x6" => "\x6", "\x7" => "\x7", "\x8" => "\x8", "\x9" => "\x9", "\xa" => "\xa", "\xb" => "\xb", "\xc" => "\xc", "\xd" => "\xd", "\xe" => "\xe", "\xf" => "\xf", "\x10" => "\x10", "\x11" => "\x11", "\x12" => "\x12", "\x13" => "\x13", "\x14" => "\x14", "\x15" => "\x15", "\x16" => "\x16", "\x17" => "\x17", "\x18" => "\x18", "\x19" => "\x19", "\x1a" => "\x1a", "\x1b" => "\x1b", "\x1c" => "\x1c", "\x1d" => "\x1d", "\x1e" => "\x1e", "\x1f" => "\x1f", "\x20" => "\x20", "\x21" => "\x21", "\x22" => "\x22", "\x23" => "\x23", "\x24" => "\x24", "\x25" => "\x25", "\x26" => "\x26", "\x27" => "\x27", "\x28" => "\x28", "\x29" => "\x29", "\x2a" => "\x2a", "\x2b" => "\x2b", "\x2c" => "\x2c", "\x2d" => "\x2d", "\x2e" => "\x2e", "\x2f" => "\x2f", "\x30" => "\x30", "\x31" => "\x31", "\x32" => "\x32", "\x33" => "\x33", "\x34" => "\x34", "\x35" => "\x35", "\x36" => "\x36", "\x37" => "\x37", "\x38" => "\x38", "\x39" => "\x39", "\x3a" => "\x3a", "\x3b" => "\x3b", "\x3c" => "\x3c", "\x3d" => "\x3d", "\x3e" => "\x3e", "\x3f" => "\x3f", "\x40" => "\x40", "\x41" => "\x41", "\x42" => "\x42", "\x43" => "\x43", "\x44" => "\x44", "\x45" => "\x45", "\x46" => "\x46", "\x47" => "\x47", "\x48" => "\x48", "\x49" => "\x49", "\x4a" => "\x4a", "\x4b" => "\x4b", "\x4c" => "\x4c", "\x4d" => "\x4d", "\x4e" => "\x4e", "\x4f" => "\x4f", "\x50" => "\x50", "\x51" => "\x51", "\x52" => "\x52", "\x53" => "\x53", "\x54" => "\x54", "\x55" => "\x55", "\x56" => "\x56", "\x57" => "\x57", "\x58" => "\x58", "\x59" => "\x59", "\x5a" => "\x5a", "\x5b" => "\x5b", "\x5c" => "\x5c", "\x5d" => "\x5d", "\x5e" => "\x5e", "\x5f" => "\x5f", "\x60" => "\x60", "\x61" => "\x61", "\x62" => "\x62", "\x63" => "\x63", "\x64" => "\x64", "\x65" => "\x65", "\x66" => "\x66", "\x67" => "\x67", "\x68" => "\x68", "\x69" => "\x69", "\x6a" => "\x6a", "\x6b" => "\x6b", "\x6c" => "\x6c", "\x6d" => "\x6d", "\x6e" => "\x6e", "\x6f" => "\x6f", "\x70" => "\x70", "\x71" => "\x71", "\x72" => "\x72", "\x73" => "\x73", "\x74" => "\x74", "\x75" => "\x75", "\x76" => "\x76", "\x77" => "\x77", "\x78" => "\x78", "\x79" => "\x79", "\x7a" => "\x7a", "\x7b" => "\x7b", "\x7c" => "\x7c", "\x7d" => "\x7d", "\x7e" => "\x7e", "\x7f" => "\x7f", //Commonly used, but actually Invalid Latin-1 Characters //"\xc2\x80" => "\x80", "\xc2\x81" => "\x81", "\xc2\x82" => "\x82", "\xc2\x83" => "\x83", //"\xc2\x84" => "\x84", "\xc2\x85" => "\x85", "\xc2\x86" => "\x86", "\xc2\x87" => "\x87", //"\xc2\x88" => "\x88", "\xc2\x89" => "\x89", "\xc2\x8a" => "\x8a", "\xc2\x8b" => "\x8b", //"\xc2\x8c" => "\x8c", "\xc2\x8d" => "\x8d", "\xc2\x8e" => "\x8e", "\xc2\x8f" => "\x8f", //"\xc2\x90" => "\x90", "\xc2\x91" => "\x91", "\xc2\x92" => "\x92", "\xc2\x93" => "\x93", //"\xc2\x94" => "\x94", "\xc2\x95" => "\x95", "\xc2\x96" => "\x96", "\xc2\x97" => "\x97", //"\xc2\x98" => "\x98", "\xc2\x99" => "\x99", "\xc2\x9a" => "\x9a", "\xc2\x9b" => "\x9b", //"\xc2\x9c" => "\x9c", "\xc2\x9d" => "\x9d", "\xc2\x9e" => "\x9e", "\xc2\x9f" => "\x9f", "\xc2\xa0" => "\xa0", "\xc2\xa1" => "\xa1", "\xc2\xa2" => "\xa2", "\xc2\xa3" => "\xa3", "\xc2\xa4" => "\xa4", "\xc2\xa5" => "\xa5", "\xc2\xa6" => "\xa6", "\xc2\xa7" => "\xa7", "\xc2\xa8" => "\xa8", "\xc2\xa9" => "\xa9", "\xc2\xaa" => "\xaa", "\xc2\xab" => "\xab", "\xc2\xac" => "\xac", "\xc2\xad" => "\xad", "\xc2\xae" => "\xae", "\xc2\xaf" => "\xaf", "\xc2\xb0" => "\xb0", "\xc2\xb1" => "\xb1", "\xc2\xb2" => "\xb2", "\xc2\xb3" => "\xb3", "\xc2\xb4" => "\xb4", "\xc2\xb5" => "\xb5", "\xc2\xb6" => "\xb6", "\xc2\xb7" => "\xb7", "\xc2\xb8" => "\xb8", "\xc2\xb9" => "\xb9", "\xc2\xba" => "\xba", "\xc2\xbb" => "\xbb", "\xc2\xbc" => "\xbc", "\xc2\xbd" => "\xbd", "\xc2\xbe" => "\xbe", "\xc2\xbf" => "\xbf", "\xc3\x80" => "\xc0", "\xc3\x81" => "\xc1", "\xc3\x82" => "\xc2", "\xc3\x83" => "\xc3", "\xc3\x84" => "\xc4", "\xc3\x85" => "\xc5", "\xc3\x86" => "\xc6", "\xc3\x87" => "\xc7", "\xc3\x88" => "\xc8", "\xc3\x89" => "\xc9", "\xc3\x8a" => "\xca", "\xc3\x8b" => "\xcb", "\xc3\x8c" => "\xcc", "\xc3\x8d" => "\xcd", "\xc3\x8e" => "\xce", "\xc3\x8f" => "\xcf", "\xc3\x90" => "\xd0", "\xc3\x91" => "\xd1", "\xc3\x92" => "\xd2", "\xc3\x93" => "\xd3", "\xc3\x94" => "\xd4", "\xc3\x95" => "\xd5", "\xc3\x96" => "\xd6", "\xc3\x97" => "\xd7", "\xc3\x98" => "\xd8", "\xc3\x99" => "\xd9", "\xc3\x9a" => "\xda", "\xc3\x9b" => "\xdb", "\xc3\x9c" => "\xdc", "\xc3\x9d" => "\xdd", "\xc3\x9e" => "\xde", "\xc3\x9f" => "\xdf", "\xc3\xa0" => "\xe0", "\xc3\xa1" => "\xe1", "\xc3\xa2" => "\xe2", "\xc3\xa3" => "\xe3", "\xc3\xa4" => "\xe4", "\xc3\xa5" => "\xe5", "\xc3\xa6" => "\xe6", "\xc3\xa7" => "\xe7", "\xc3\xa8" => "\xe8", "\xc3\xa9" => "\xe9", "\xc3\xaa" => "\xea", "\xc3\xab" => "\xeb", "\xc3\xac" => "\xec", "\xc3\xad" => "\xed", "\xc3\xae" => "\xee", "\xc3\xaf" => "\xef", "\xc3\xb0" => "\xf0", "\xc3\xb1" => "\xf1", "\xc3\xb2" => "\xf2", "\xc3\xb3" => "\xf3", "\xc3\xb4" => "\xf4", "\xc3\xb5" => "\xf5", "\xc3\xb6" => "\xf6", "\xc3\xb7" => "\xf7", "\xc3\xb8" => "\xf8", "\xc3\xb9" => "\xf9", "\xc3\xba" => "\xfa", "\xc3\xbb" => "\xfb", "\xc3\xbc" => "\xfc", "\xc3\xbd" => "\xfd", "\xc3\xbe" => "\xfe", "\xc3\xbf" => "\xff" ); return $tbl; } function utf8_clean( $str ) { //http://stackoverflow.com/questions/1401317/remove-non-utf8-characters-from-string $regx = '/((?:[\x00-\x7F]|[\xC0-\xDF][\x80-\xBF]|[\xE0-\xEF][\x80-\xBF]{2}|[\xF0-\xF7][\x80-\xBF]{3}){1,})|./'; //$regx = '/((?:[\x00-\x7F]|[\xC0-\xDF][\x80-\xBF]|[\xE0-\xEF][\x80-\xBF]{2}|[\xF0-\xF7][\x80-\xBF]{3}){1,})|./'; return preg_replace( $regx , '$1' , $str ); } echo utf8_to_latin1( 'ISO/IEC 8859-1 is missing some characters for French and Finnish text and the euro sign. In order to provide some of these characters, ISO/IEC 8859-15 was developed as an update of ISO/IEC 8859-1. This required, however, the removal of some infrequently used characters from ISO/IEC 8859-1, including fraction symbols and letter-free diacritics: ¤, ¦, ¨, ´, ¸, ¼, ½, and ¾.' );

Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).

VersionSystem time (s)User time (s)Memory (MiB)
8.3.60.0090.00616.75
8.3.50.0220.00822.08
8.3.40.0070.00719.02
8.3.30.0110.00418.81
8.3.20.0070.00020.29
8.3.10.0030.00523.65
8.3.00.0080.00020.69
8.2.180.0070.00716.88
8.2.170.0110.00722.96
8.2.160.0110.00322.11
8.2.150.0080.00024.18
8.2.140.0030.00524.66
8.2.130.0040.00426.16
8.2.120.0000.00722.21
8.2.110.0030.00621.06
8.2.100.0040.01117.97
8.2.90.0030.00618.16
8.2.80.0030.00518.05
8.2.70.0040.00418.05
8.2.60.0040.00418.22
8.2.50.0040.00418.10
8.2.40.0030.00619.42
8.2.30.0040.00418.05
8.2.20.0030.00517.91
8.2.10.0030.00517.89
8.2.00.0000.00817.89
8.1.280.0130.00725.92
8.1.270.0040.00424.01
8.1.260.0080.00026.35
8.1.250.0050.00328.09
8.1.240.0030.00622.54
8.1.230.0060.00621.07
8.1.220.0030.00617.88
8.1.210.0030.00518.87
8.1.200.0080.00017.48
8.1.190.0060.00317.10
8.1.180.0030.00618.10
8.1.170.0030.00618.84
8.1.160.0040.00418.96
8.1.150.0000.00718.80
8.1.140.0050.00317.61
8.1.130.0000.00717.83
8.1.120.0000.00717.70
8.1.110.0040.00417.59
8.1.100.0000.00817.58
8.1.90.0030.00517.65
8.1.80.0040.00417.45
8.1.70.0000.00817.50
8.1.60.0080.00417.79
8.1.50.0090.00417.76
8.1.40.0060.00417.68
8.1.30.0050.00417.81
8.1.20.0040.00417.87
8.1.10.0040.00417.64
8.1.00.0010.00717.60
8.0.300.0060.00319.91
8.0.290.0050.00516.88
8.0.280.0000.00718.41
8.0.270.0080.00017.34
8.0.260.0000.00716.91
8.0.250.0030.00317.04
8.0.240.0050.00517.16
8.0.230.0000.00816.98
8.0.220.0000.00716.95
8.0.210.0070.00016.92
8.0.200.0070.00017.14
8.0.190.0020.00517.07
8.0.180.0050.00517.04
8.0.170.0090.00516.97
8.0.160.0100.00517.01
8.0.150.0110.00516.90
8.0.140.0110.00417.00
8.0.130.0120.00115.20
8.0.120.0120.00317.04
8.0.110.0120.00416.91
8.0.100.0090.00617.02
8.0.90.0110.00416.98
8.0.80.0140.00616.95
8.0.70.0060.00816.93
8.0.60.0100.00417.02
8.0.50.0100.00516.88
8.0.30.0130.00717.11
8.0.20.0100.01117.26
8.0.10.0130.00417.15
8.0.00.0090.00817.13
7.4.330.0050.00015.06
7.4.320.0030.00316.69
7.4.300.0000.00716.77
7.4.290.0110.00716.87
7.4.280.0130.00416.83
7.4.270.0170.00116.81
7.4.260.0110.00716.76
7.4.250.0090.00916.82
7.4.240.0100.00416.75
7.4.230.0100.00716.88
7.4.220.0200.00716.85
7.4.210.0100.00616.81
7.4.200.0120.00416.94
7.4.190.0100.00616.94
7.4.180.0180.00616.88
7.4.160.0160.00516.80
7.4.150.0060.01317.11
7.4.140.0090.01017.46
7.4.130.0130.00716.74
7.4.120.0130.00816.80
7.4.110.0130.00616.76
7.4.100.0120.00816.79
7.4.90.0130.01116.72
7.4.80.0140.00816.75
7.4.70.0070.01416.86
7.4.60.0130.01116.70
7.4.50.0110.00516.73
7.4.40.0140.00619.77
7.4.30.0100.01016.83
7.4.20.0120.01016.83
7.4.10.0190.00316.57
7.4.00.0110.00815.63
7.3.330.0110.00414.81
7.3.320.0090.00614.76
7.3.310.0090.00616.49
7.3.300.0130.00316.27
7.3.290.0100.00916.44
7.3.280.0140.00816.38
7.3.270.0140.00916.83
7.3.260.0170.00616.47
7.3.250.0120.00816.67
7.3.240.0190.00516.50
7.3.230.0140.00616.70
7.3.220.0220.00316.41
7.3.210.0120.00816.42
7.3.200.0160.00717.84
7.3.190.0130.00716.67
7.3.180.0150.00516.50
7.3.170.0130.00616.41
7.3.160.0090.01016.47
7.3.150.0190.00316.38
7.3.140.0130.00816.24
7.3.130.0190.00416.28
7.3.120.0110.00715.23
7.3.110.0110.00815.35
7.3.100.0080.00815.30
7.3.90.0100.00715.60
7.3.80.0060.00815.47
7.3.70.0080.00815.60
7.3.60.0100.00615.52
7.3.50.0120.00515.60
7.3.40.0100.00415.32
7.3.30.0090.00615.57
7.3.20.0070.00917.38
7.3.10.0120.00517.26
7.3.00.0130.00417.26
7.2.340.0170.00416.62
7.2.330.0130.00716.79
7.2.320.0110.00916.79
7.2.310.0150.00816.75
7.2.300.0100.00916.77
7.2.290.0160.00616.82
7.2.280.0200.00016.70
7.2.270.0170.00416.62
7.2.260.0160.00816.52
7.2.250.0100.01015.59
7.2.240.0110.00915.79
7.2.230.0120.00715.81
7.2.220.0080.00915.70
7.2.210.0100.00715.65
7.2.200.0130.00515.84
7.2.190.0110.00615.65
7.2.180.0110.00715.66
7.2.170.0070.00815.76
7.2.160.0130.00916.80
7.2.150.0100.01018.46
7.2.140.0130.00618.64
7.2.130.0180.00418.66
7.2.120.0180.00418.38
7.2.110.0180.00418.41
7.2.100.0150.00618.31
7.2.90.0150.00818.39
7.2.80.0200.00318.59
7.2.70.0180.00418.55
7.2.60.0130.00617.79
7.2.50.0160.00618.50
7.2.40.0180.00418.67
7.2.30.0200.00318.58
7.2.20.0110.01118.43
7.2.10.0170.00718.36
7.2.00.0130.00519.01
7.1.330.0090.00716.36
7.1.320.0080.00916.33
7.1.310.0090.00616.36
7.1.300.0110.00416.29
7.1.290.0110.00516.29
7.1.280.0080.00716.34
7.1.270.0100.00716.48
7.1.260.0130.00216.42
7.1.250.0120.00617.41
7.1.240.0210.00017.45
7.1.230.0130.00717.38
7.1.220.0200.00017.45
7.1.210.0110.00717.25
7.1.200.0260.00216.60
7.1.190.0160.00317.44
7.1.180.0170.00317.16
7.1.170.0130.00717.16
7.1.160.0100.01017.19
7.1.150.0170.00317.41
7.1.140.0200.00017.27
7.1.130.0130.00717.27
7.1.120.0180.00317.26
7.1.110.0170.00417.39
7.1.100.0100.00717.79
7.1.90.0160.00717.57
7.1.80.0120.00817.63
7.1.70.0060.00817.43
7.1.60.0150.01018.46
7.1.50.0140.00317.32
7.1.40.0150.00717.56
7.1.30.0130.00717.52
7.1.20.0180.00317.39
7.1.10.0190.00417.47
7.1.00.0070.04219.96
7.0.330.0110.00817.12
7.0.320.0160.00217.17
7.0.310.0130.00416.99
7.0.300.0160.00417.17
7.0.290.0090.00917.11
7.0.280.0150.00217.11
7.0.270.0140.00417.18
7.0.260.0140.00317.14
7.0.250.0100.01017.33
7.0.240.0150.00417.23
7.0.230.0080.01117.32
7.0.220.0170.00217.17
7.0.210.0150.00417.23
7.0.200.0080.00616.91
7.0.190.0130.00717.33
7.0.180.0180.00417.29
7.0.170.0080.01117.20
7.0.160.0120.00817.12
7.0.150.0190.00017.09
7.0.140.0100.03819.68
7.0.130.0130.00617.17
7.0.120.0140.00517.07
7.0.110.0120.00917.20
7.0.100.0130.00816.96
7.0.90.0170.00317.06
7.0.80.0120.00617.13
7.0.70.0080.02819.34
7.0.60.0100.04119.30
7.0.50.0080.04419.49
7.0.40.0080.04318.65
7.0.30.0080.04718.58
7.0.20.0160.03718.60
7.0.10.0070.03218.52
7.0.00.0120.03118.52
5.6.400.0090.00916.41
5.6.390.0090.00916.34
5.6.380.0150.00416.27
5.6.370.0150.00416.24
5.6.360.0190.00316.12
5.6.350.0090.01216.29
5.6.340.0090.00916.16
5.6.330.0180.00016.14
5.6.320.0160.00316.27
5.6.310.0150.00516.28
5.6.300.0150.00316.00
5.6.290.0120.00616.36
5.6.280.0100.03718.66
5.6.270.0170.00316.28
5.6.260.0110.01116.36
5.6.250.0110.00816.19
5.6.240.0150.00416.09
5.6.230.0150.00316.38
5.6.220.0070.03418.70
5.6.210.0110.02218.71
5.6.200.0080.04818.98
5.6.190.0090.04418.86
5.6.180.0090.04418.90
5.6.170.0150.04018.82
5.6.160.0060.03819.04
5.6.150.0120.04318.94
5.6.140.0110.03518.83
5.6.130.0080.04618.95
5.6.120.0120.04318.93
5.6.110.0070.03018.93
5.6.100.0030.03718.80
5.6.90.0060.03818.89
5.6.80.0080.04118.45
5.6.70.0110.03918.56
5.6.60.0050.04318.47
5.6.50.0100.02618.58
5.6.40.0090.04618.42
5.6.30.0100.04318.49
5.6.20.0100.04218.43
5.6.10.0120.04118.46
5.6.00.0110.03318.41
5.5.380.0120.00816.35
5.5.370.0150.00316.41
5.5.360.0100.02318.51
5.5.350.0080.04518.45
5.5.340.0080.04818.54
5.5.330.0090.04218.63
5.5.320.0090.04618.68
5.5.310.0090.04218.71
5.5.300.0080.04518.67
5.5.290.0150.04218.76
5.5.280.0130.04218.71
5.5.270.0110.04618.59
5.5.260.0070.03618.68
5.5.250.0100.03718.72
5.5.240.0080.04418.40
5.5.230.0070.04318.49
5.5.220.0140.03718.33
5.5.210.0060.03818.39
5.5.200.0050.03018.38
5.5.190.0100.03818.42
5.5.180.0110.04018.35
5.5.170.0130.00516.12
5.5.160.0100.03918.39
5.5.150.0070.03018.36
5.5.140.0060.02318.24
5.5.130.0070.04618.26
5.5.120.0130.02318.21
5.5.110.0150.03718.14
5.5.100.0080.03318.36
5.5.90.0080.03918.29
5.5.80.0070.03918.41
5.5.70.0110.04118.39
5.5.60.0120.03718.31
5.5.50.0090.04118.35
5.5.40.0080.02818.26
5.5.30.0080.04018.43
5.5.20.0120.03218.31
5.5.10.0140.03718.13
5.5.00.0080.04518.33
5.4.450.0130.04016.50
5.4.440.0100.04216.43
5.4.430.0070.03216.43
5.4.420.0060.03016.42
5.4.410.0050.03716.38
5.4.400.0070.03816.33
5.4.390.0100.03616.25
5.4.380.0070.04016.22
5.4.370.0040.02716.11
5.4.360.0080.02316.14
5.4.350.0080.03216.23
5.4.340.0110.02816.34
5.4.330.0150.00013.05
5.4.320.0020.04216.31
5.4.310.0080.04316.29
5.4.300.0100.03916.20
5.4.290.0050.04016.15
5.4.280.0070.03116.10
5.4.270.0060.04416.07
5.4.260.0080.04216.36
5.4.250.0090.03616.27
5.4.240.0070.04316.12
5.4.230.0080.02616.21
5.4.220.0080.03316.13
5.4.210.0050.04516.21
5.4.200.0090.02016.05
5.4.190.0120.03016.21
5.4.180.0060.04316.07
5.4.170.0070.04216.26
5.4.160.0070.03716.22
5.4.150.0080.04316.11
5.4.140.0090.03914.98
5.4.130.0050.03514.94
5.4.120.0070.03714.97
5.4.110.0030.03014.93
5.4.100.0070.04014.90
5.4.90.0080.04014.90
5.4.80.0060.04114.82
5.4.70.0070.04015.02
5.4.60.0080.03614.90
5.4.50.0050.04214.77
5.4.40.0080.03914.94
5.4.30.0130.02814.85
5.4.20.0070.02714.96
5.4.10.0080.03614.77
5.4.00.0070.03514.56
5.3.290.0070.03214.29
5.3.280.0080.04014.10
5.3.270.0100.03314.13
5.3.260.0070.02814.15
5.3.250.0060.04214.19
5.3.240.0090.03514.13
5.3.230.0040.04314.20
5.3.220.0090.03814.29
5.3.210.0060.03714.31
5.3.200.0080.03914.39
5.3.190.0080.04214.31
5.3.180.0080.03214.52
5.3.170.0070.04214.49
5.3.160.0070.03814.37
5.3.150.0110.03614.50
5.3.140.0110.03514.47
5.3.130.0050.04314.47
5.3.120.0060.04214.43
5.3.110.0110.03714.31
5.3.100.0070.04314.12
5.3.90.0070.02814.00
5.3.80.0040.04413.92
5.3.70.0060.03813.90
5.3.60.0070.02813.99
5.3.50.0050.03013.96
5.3.40.0090.03714.00
5.3.30.0080.03513.81
5.3.20.0030.03713.91
5.3.10.0040.03213.67
5.3.00.0090.03513.65

preferences:
46.4 ms | 401 KiB | 5 Q