Spark代码4之Spark 文件API及其对搜狗数据的操作

来源:互联网 发布:试点网络学校基础 编辑:程序博客网 时间:2024/04/29 21:02

更多代码请见:https://github.com/xubo245/SparkLearning


Spark代码4之Spark 文件API及其对搜狗数据的操作


搜狗数据:

http://www.sogou.com/labs/dl/q.html



参考:大数据Spark企业级实战

说明:书中的数据可能被sogou改变,两个序号之间是空格,所以需要修改


代码:

package LocalSpark/**  * Created by xubo on 2016/3/4.  */import java.text.SimpleDateFormatimport java.util.Dateimport org.apache.spark._//import scala.tools.scalap.Classfile.Pool.UTF8object testFile {  def main(args: Array[String]): Unit = {    val conf = new SparkConf().setAppName("Transformation1").setMaster("local")    //    val conf = new SparkConf().setAppName("Transformation1").setMaster("spark://<span style="font-family: Arial, Helvetica, sans-serif; "><strong>Master</strong></span><span style="font-family: Arial, Helvetica, sans-serif;">:7077")</span>    val spark = new SparkContext(conf)    val f1=spark.textFile("hdfs://<strong>Master</strong>:9000/input/SogouQ.mini")    println(f1.toDebugString)    println("f1:"+f1.count())    val f2=f1.map(_.split("\t|\\s+")).filter(_.length>4)  //间隔符有空格和tab    println("f2:"+f2.count())    for(i<-f2) { println(i(3)+" 4: "+i(4))} //最后一行有问题//    val f30=f2.map(_(3).split("\\s+|\t"))//    for(i<-f30) { println(i(0))} //最后一行有问题//    val f3=f30.filter(_(0).toInt==1).filter(_(1).toInt==1)    val f3=f2.filter(_(3).toInt==1).filter(_(4).toInt==1) //有问题,原文中两个排序中间是空格    val f4=f3.map(x=>(x(1),1)).reduceByKey(_+_).map(x=>(x._2,x._1)).sortByKey(false).map(x=>(x._2,x._1))    println("f3 count:"+f3.count())//    for((a,b)<-f2)  println("f2:("+a+","+b+")")//    for((a,b,_)<-f4)  println("f4:("+a+","+b+")")    println("f4 count:"+f4.count())    println(f4.toDebugString)    val iString=new SimpleDateFormat("yyyyMMddHHmmssSSS").format(new Date() )    val soutput="hdfs://<strong>Master</strong>:9000/output/"+iString;    f4.saveAsTextFile(soutput)    spark.stop()  }}

<strong>Master</strong><span style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: rgb(255, 255, 255);">需要修改成真实IP</span>


结果:

D:\1win7\java\jdk\bin\java -Didea.launcher.port=7536 "-Didea.launcher.bin.path=D:\1win7\idea\IntelliJ IDEA Community Edition 15.0.4\bin" -Dfile.encoding=UTF-8 -classpath "D:\1win7\java\jdk\jre\lib\charsets.jar;D:\1win7\java\jdk\jre\lib\deploy.jar;D:\1win7\java\jdk\jre\lib\ext\access-bridge-64.jar;D:\1win7\java\jdk\jre\lib\ext\dnsns.jar;D:\1win7\java\jdk\jre\lib\ext\jaccess.jar;D:\1win7\java\jdk\jre\lib\ext\localedata.jar;D:\1win7\java\jdk\jre\lib\ext\sunec.jar;D:\1win7\java\jdk\jre\lib\ext\sunjce_provider.jar;D:\1win7\java\jdk\jre\lib\ext\sunmscapi.jar;D:\1win7\java\jdk\jre\lib\ext\zipfs.jar;D:\1win7\java\jdk\jre\lib\javaws.jar;D:\1win7\java\jdk\jre\lib\jce.jar;D:\1win7\java\jdk\jre\lib\jfr.jar;D:\1win7\java\jdk\jre\lib\jfxrt.jar;D:\1win7\java\jdk\jre\lib\jsse.jar;D:\1win7\java\jdk\jre\lib\management-agent.jar;D:\1win7\java\jdk\jre\lib\plugin.jar;D:\1win7\java\jdk\jre\lib\resources.jar;D:\1win7\java\jdk\jre\lib\rt.jar;D:\1win7\scala;D:\1win7\scala\lib;D:\all\idea\scala2\out\production\scala2;G:\149\spark-assembly-1.5.2-hadoop2.6.0.jar;D:\1win7\scala\lib\scala-actors-migration.jar;D:\1win7\scala\lib\scala-actors.jar;D:\1win7\scala\lib\scala-library.jar;D:\1win7\scala\lib\scala-reflect.jar;D:\1win7\scala\lib\scala-swing.jar;D:\1win7\idea\IntelliJ IDEA Community Edition 15.0.4\lib\idea_rt.jar" com.intellij.rt.execution.application.AppMain LocalSpark.testFileUsing Spark's default log4j profile: org/apache/spark/log4j-defaults.properties16/03/04 12:59:16 INFO SparkContext: Running Spark version 1.5.216/03/04 12:59:17 WARN NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable16/03/04 12:59:17 INFO SecurityManager: Changing view acls to: xubo16/03/04 12:59:17 INFO SecurityManager: Changing modify acls to: xubo16/03/04 12:59:17 INFO SecurityManager: SecurityManager: authentication disabled; ui acls disabled; users with view permissions: Set(xubo); users with modify permissions: Set(xubo)16/03/04 12:59:18 INFO Slf4jLogger: Slf4jLogger started16/03/04 12:59:18 INFO Remoting: Starting remoting16/03/04 12:59:18 INFO Remoting: Remoting started; listening on addresses :[akka.tcp://sparkDriver@202.38.84.51:51550]16/03/04 12:59:18 INFO Utils: Successfully started service 'sparkDriver' on port 51550.16/03/04 12:59:18 INFO SparkEnv: Registering MapOutputTracker16/03/04 12:59:18 INFO SparkEnv: Registering BlockManagerMaster16/03/04 12:59:19 INFO DiskBlockManager: Created local directory at C:\Users\xubo\AppData\Local\Temp\blockmgr-b1fe09a5-30f7-4f6d-a734-ce30893adccd16/03/04 12:59:19 INFO MemoryStore: MemoryStore started with capacity 730.6 MB16/03/04 12:59:19 INFO HttpFileServer: HTTP File server directory is C:\Users\xubo\AppData\Local\Temp\spark-8e63d225-ffcd-4daa-a073-61d0a56526ce\httpd-b0e898d0-3826-45bd-ad89-9ab8360159f216/03/04 12:59:19 INFO HttpServer: Starting HTTP Server16/03/04 12:59:19 INFO Utils: Successfully started service 'HTTP file server' on port 51551.16/03/04 12:59:19 INFO SparkEnv: Registering OutputCommitCoordinator16/03/04 12:59:19 INFO Utils: Successfully started service 'SparkUI' on port 4040.16/03/04 12:59:19 INFO SparkUI: Started SparkUI at http://202.38.84.51:404016/03/04 12:59:19 WARN MetricsSystem: Using default name DAGScheduler for source because spark.app.id is not set.16/03/04 12:59:19 INFO Executor: Starting executor ID driver on host localhost16/03/04 12:59:20 INFO Utils: Successfully started service 'org.apache.spark.network.netty.NettyBlockTransferService' on port 51558.16/03/04 12:59:20 INFO NettyBlockTransferService: Server created on 5155816/03/04 12:59:20 INFO BlockManagerMaster: Trying to register BlockManager16/03/04 12:59:20 INFO BlockManagerMasterEndpoint: Registering block manager localhost:51558 with 730.6 MB RAM, BlockManagerId(driver, localhost, 51558)16/03/04 12:59:20 INFO BlockManagerMaster: Registered BlockManager16/03/04 12:59:20 INFO MemoryStore: ensureFreeSpace(157304) called with curMem=0, maxMem=76607520716/03/04 12:59:20 INFO MemoryStore: Block broadcast_0 stored as values in memory (estimated size 153.6 KB, free 730.4 MB)16/03/04 12:59:21 INFO MemoryStore: ensureFreeSpace(14276) called with curMem=157304, maxMem=76607520716/03/04 12:59:21 INFO MemoryStore: Block broadcast_0_piece0 stored as bytes in memory (estimated size 13.9 KB, free 730.4 MB)16/03/04 12:59:21 INFO BlockManagerInfo: Added broadcast_0_piece0 in memory on localhost:51558 (size: 13.9 KB, free: 730.6 MB)16/03/04 12:59:21 INFO SparkContext: Created broadcast 0 from textFile at testFile.scala:1916/03/04 12:59:22 WARN : Your hostname, xubo-PC resolves to a loopback/non-reachable address: fe80:0:0:0:200:5efe:ca26:5433%30, but we couldn't find any external IP address!16/03/04 12:59:24 INFO FileInputFormat: Total input paths to process : 1(1) MapPartitionsRDD[1] at textFile at testFile.scala:19 [] |  hdfs://Master:9000/input/SogouQ.mini HadoopRDD[0] at textFile at testFile.scala:19 []16/03/04 12:59:24 INFO SparkContext: Starting job: count at testFile.scala:2116/03/04 12:59:24 INFO DAGScheduler: Got job 0 (count at testFile.scala:21) with 1 output partitions16/03/04 12:59:24 INFO DAGScheduler: Final stage: ResultStage 0(count at testFile.scala:21)16/03/04 12:59:24 INFO DAGScheduler: Parents of final stage: List()16/03/04 12:59:24 INFO DAGScheduler: Missing parents: List()16/03/04 12:59:24 INFO DAGScheduler: Submitting ResultStage 0 (MapPartitionsRDD[1] at textFile at testFile.scala:19), which has no missing parents16/03/04 12:59:24 INFO MemoryStore: ensureFreeSpace(3008) called with curMem=171580, maxMem=76607520716/03/04 12:59:24 INFO MemoryStore: Block broadcast_1 stored as values in memory (estimated size 2.9 KB, free 730.4 MB)16/03/04 12:59:24 INFO MemoryStore: ensureFreeSpace(1785) called with curMem=174588, maxMem=76607520716/03/04 12:59:24 INFO MemoryStore: Block broadcast_1_piece0 stored as bytes in memory (estimated size 1785.0 B, free 730.4 MB)16/03/04 12:59:24 INFO BlockManagerInfo: Added broadcast_1_piece0 in memory on localhost:51558 (size: 1785.0 B, free: 730.6 MB)16/03/04 12:59:24 INFO SparkContext: Created broadcast 1 from broadcast at DAGScheduler.scala:86116/03/04 12:59:24 INFO DAGScheduler: Submitting 1 missing tasks from ResultStage 0 (MapPartitionsRDD[1] at textFile at testFile.scala:19)16/03/04 12:59:24 INFO TaskSchedulerImpl: Adding task set 0.0 with 1 tasks16/03/04 12:59:24 INFO TaskSetManager: Starting task 0.0 in stage 0.0 (TID 0, localhost, ANY, 2154 bytes)16/03/04 12:59:24 INFO Executor: Running task 0.0 in stage 0.0 (TID 0)16/03/04 12:59:24 INFO HadoopRDD: Input split: hdfs://Master:9000/input/SogouQ.mini:0+89823516/03/04 12:59:24 INFO deprecation: mapred.tip.id is deprecated. Instead, use mapreduce.task.id16/03/04 12:59:24 INFO deprecation: mapred.task.id is deprecated. Instead, use mapreduce.task.attempt.id16/03/04 12:59:24 INFO deprecation: mapred.task.is.map is deprecated. Instead, use mapreduce.task.ismap16/03/04 12:59:24 INFO deprecation: mapred.task.partition is deprecated. Instead, use mapreduce.task.partition16/03/04 12:59:24 INFO deprecation: mapred.job.id is deprecated. Instead, use mapreduce.job.id16/03/04 12:59:25 INFO Executor: Finished task 0.0 in stage 0.0 (TID 0). 2082 bytes result sent to driver16/03/04 12:59:25 INFO TaskSetManager: Finished task 0.0 in stage 0.0 (TID 0) in 609 ms on localhost (1/1)16/03/04 12:59:25 INFO TaskSchedulerImpl: Removed TaskSet 0.0, whose tasks have all completed, from pool 16/03/04 12:59:25 INFO DAGScheduler: ResultStage 0 (count at testFile.scala:21) finished in 0.887 s16/03/04 12:59:25 INFO DAGScheduler: Job 0 finished: count at testFile.scala:21, took 1.069374 sf1:1000016/03/04 12:59:25 INFO SparkContext: Starting job: count at testFile.scala:2416/03/04 12:59:25 INFO DAGScheduler: Got job 1 (count at testFile.scala:24) with 1 output partitions16/03/04 12:59:25 INFO DAGScheduler: Final stage: ResultStage 1(count at testFile.scala:24)16/03/04 12:59:25 INFO DAGScheduler: Parents of final stage: List()16/03/04 12:59:25 INFO DAGScheduler: Missing parents: List()16/03/04 12:59:25 INFO DAGScheduler: Submitting ResultStage 1 (MapPartitionsRDD[3] at filter at testFile.scala:23), which has no missing parents16/03/04 12:59:25 INFO MemoryStore: ensureFreeSpace(3344) called with curMem=176373, maxMem=76607520716/03/04 12:59:25 INFO MemoryStore: Block broadcast_2 stored as values in memory (estimated size 3.3 KB, free 730.4 MB)16/03/04 12:59:25 INFO MemoryStore: ensureFreeSpace(1936) called with curMem=179717, maxMem=76607520716/03/04 12:59:25 INFO MemoryStore: Block broadcast_2_piece0 stored as bytes in memory (estimated size 1936.0 B, free 730.4 MB)16/03/04 12:59:25 INFO BlockManagerInfo: Added broadcast_2_piece0 in memory on localhost:51558 (size: 1936.0 B, free: 730.6 MB)16/03/04 12:59:25 INFO SparkContext: Created broadcast 2 from broadcast at DAGScheduler.scala:86116/03/04 12:59:25 INFO DAGScheduler: Submitting 1 missing tasks from ResultStage 1 (MapPartitionsRDD[3] at filter at testFile.scala:23)16/03/04 12:59:25 INFO TaskSchedulerImpl: Adding task set 1.0 with 1 tasks16/03/04 12:59:25 INFO TaskSetManager: Starting task 0.0 in stage 1.0 (TID 1, localhost, ANY, 2154 bytes)16/03/04 12:59:25 INFO Executor: Running task 0.0 in stage 1.0 (TID 1)16/03/04 12:59:25 INFO HadoopRDD: Input split: hdfs://Master:9000/input/SogouQ.mini:0+89823516/03/04 12:59:25 INFO Executor: Finished task 0.0 in stage 1.0 (TID 1). 2082 bytes result sent to driverf2:1000016/03/04 12:59:25 INFO TaskSetManager: Finished task 0.0 in stage 1.0 (TID 1) in 411 ms on localhost (1/1)16/03/04 12:59:25 INFO DAGScheduler: ResultStage 1 (count at testFile.scala:24) finished in 0.413 s16/03/04 12:59:25 INFO TaskSchedulerImpl: Removed TaskSet 1.0, whose tasks have all completed, from pool 16/03/04 12:59:25 INFO DAGScheduler: Job 1 finished: count at testFile.scala:24, took 0.429394 s16/03/04 12:59:25 INFO SparkContext: Starting job: foreach at testFile.scala:2616/03/04 12:59:25 INFO DAGScheduler: Got job 2 (foreach at testFile.scala:26) with 1 output partitions16/03/04 12:59:25 INFO DAGScheduler: Final stage: ResultStage 2(foreach at testFile.scala:26)16/03/04 12:59:25 INFO DAGScheduler: Parents of final stage: List()16/03/04 12:59:25 INFO DAGScheduler: Missing parents: List()16/03/04 12:59:25 INFO DAGScheduler: Submitting ResultStage 2 (MapPartitionsRDD[3] at filter at testFile.scala:23), which has no missing parents16/03/04 12:59:25 INFO MemoryStore: ensureFreeSpace(3432) called with curMem=181653, maxMem=76607520716/03/04 12:59:25 INFO MemoryStore: Block broadcast_3 stored as values in memory (estimated size 3.4 KB, free 730.4 MB)16/03/04 12:59:26 INFO MemoryStore: ensureFreeSpace(1959) called with curMem=185085, maxMem=76607520716/03/04 12:59:26 INFO MemoryStore: Block broadcast_3_piece0 stored as bytes in memory (estimated size 1959.0 B, free 730.4 MB)16/03/04 12:59:26 INFO BlockManagerInfo: Added broadcast_3_piece0 in memory on localhost:51558 (size: 1959.0 B, free: 730.6 MB)16/03/04 12:59:26 INFO SparkContext: Created broadcast 3 from broadcast at DAGScheduler.scala:86116/03/04 12:59:26 INFO DAGScheduler: Submitting 1 missing tasks from ResultStage 2 (MapPartitionsRDD[3] at filter at testFile.scala:23)16/03/04 12:59:26 INFO TaskSchedulerImpl: Adding task set 2.0 with 1 tasks16/03/04 12:59:26 INFO TaskSetManager: Starting task 0.0 in stage 2.0 (TID 2, localhost, ANY, 2154 bytes)16/03/04 12:59:26 INFO Executor: Running task 0.0 in stage 2.0 (TID 2)16/03/04 12:59:26 INFO HadoopRDD: Input split: hdfs://Master:9000/input/SogouQ.mini:0+8982358 4: 31 4: 114 4: 562 4: 363 4: 21 4: 28 4: 51 4: 22 4: 62 4: 21 4: 63 4: 132 4: 96 4: 32 4: 31 4: 17 4: 96 4: 42 4: 14 4: 14 4: 54 4: 12 4: 610 4: 4426 4: 33 4: 24 4: 35 4: 61 4: 164 4: 216 4: 34 4: 11 4: 24 4: 1511 4: 77 4: 26 4: 68 4: 242 4: 262 4: 19 4: 71 4: 32 4: 96 4: 813 4: 248 4: 22 4: 51 4: 15 4: 292 4: 21 4: 11 4: 55 4: 45 4: 23 4: 154 4: 181 4: 1115 4: 653 4: 12 4: 32 4: 41 4: 120 4: 221 4: 17 4: 37 4: 33 4: 120 4: 241 4: 41 4: 114 4: 311 4: 112 4: 43 4: 22 4: 32 4: 21 4: 165 4: 23 4: 23 4: 32 4: 311 4: 133 4: 210 4: 83 4: 32 4: 171 4: 12 4: 12 4: 47 4: 25 4: 34 4: 11 4: 12 4: 13 4: 210 4: 82 4: 41 4: 27 4: 14 4: 131 4: 2329 4: 132 4: 169 4: 198 4: 51 4: 51 4: 6166 4: 1017 4: 31 4: 12 4: 13 4: 101 4: 29 4: 43 4: 41 4: 11 4: 122 4: 147 4: 341 4: 14 4: 41 4: 93 4: 27 4: 167 4: 18 4: 32 4: 317 4: 81 4: 15 4: 22 4: 54 4: 22 4: 71 4: 11 4: 12 4: 33 4: 1412 4: 125 4: 21 4: 111 4: 23 4: 32 4: 23 4: 41 4: 12 4: 53 4: 72 4: 645 4: 41 4: 21 4: 15 4: 11 4: 11 4: 11 4: 31 4: 118 4: 81 4: 111 4: 14 4: 31 4: 22 4: 31 4: 12 4: 41 4: 11 4: 31 4: 42 4: 110 4: 85 4: 12 4: 88 4: 171 4: 1512 4: 53 4: 91 4: 41 4: 101 4: 13 4: 57 4: 23 4: 36 4: 83 4: 61 4: 183 4: 88 4: 35 4: 31 4: 43 4: 23 4: 11 4: 34 4: 21 4: 13 4: 815 4: 322 4: 131 4: 14 4: 1142 4: 1545 4: 21 4: 11 4: 41 4: 11 4: 21 4: 17 4: 84 4: 22 4: 17 4: 49 4: 93 4: 310 4: 51 4: 11 4: 34 4: 42 4: 1041 4: 11 4: 11 4: 1119 4: 341 4: 651 4: 11 4: 22 4: 59 4: 43 4: 34 4: 41 4: 61 4: 117 4: 1915 4: 103 4: 22 4: 37 4: 14 4: 23 4: 24 4: 33 4: 11 4: 613 4: 71 4: 13 4: 21 4: 21 4: 228 4: 101 4: 13 4: 74 4: 41 4: 14 4: 11 4: 12 4: 851 4: 12 4: 8611 4: 71 4: 19 4: 109 4: 23 4: 102 4: 147 4: 211 4: 12 4: 15 4: 5208 4: 551 4: 119 4: 252 4: 171 4: 22 4: 54 4: 310 4: 44 4: 32 4: 110 4: 926 4: 92 4: 24 4: 225 4: 51 4: 68 4: 58 4: 52 4: 24 4: 414 4: 131 4: 116 4: 7610 4: 56 4: 81 4: 17 4: 307 4: 42 4: 21 4: 14 4: 13 4: 21 4: 41 4: 13 4: 27 4: 12 4: 15 4: 61 4: 115 4: 118 4: 91 4: 594 4: 89 4: 136 4: 4119 4: 91001 4: 12 4: 14 4: 353 4: 51 4: 13 4: 74 4: 35 4: 110 4: 18 4: 23 4: 21 4: 11 4: 1033 4: 66 4: 12 4: 503 4: 44 4: 445 4: 1116 4: 334 4: 279 4: 151 4: 12 4: 191 4: 11001 4: 18 4: 42 4: 174 4: 54 4: 74 4: 14 4: 51 4: 41 4: 11 4: 114 4: 1011 4: 1364 4: 133 4: 515 4: 149 4: 31 4: 11 4: 91 4: 71 4: 114 4: 241 4: 14 4: 24 4: 14 4: 2610 4: 71 4: 24 4: 11 4: 11 4: 29 4: 858 4: 7882 4: 401 4: 12 4: 16 4: 92 4: 18 4: 74 4: 54 4: 101 4: 12 4: 15 4: 2152 4: 13 4: 51 4: 18 4: 12 4: 11 4: 31 4: 156 4: 142 4: 4910 4: 172 4: 11 4: 56 4: 28 4: 31 4: 14 4: 41 4: 42 4: 322 4: 701 4: 23 4: 23 4: 37 4: 211 4: 13 4: 181 4: 1810 4: 186 4: 221 4: 1012 4: 252 4: 12 4: 81 4: 37 4: 38 4: 61 4: 24 4: 12 4: 28 4: 55 4: 14 4: 253 4: 39 4: 31 4: 61 4: 51 4: 22 4: 212 4: 111 4: 11 4: 61 4: 11 4: 19 4: 64 4: 310 4: 315 4: 204 4: 415 4: 42 4: 22 4: 11 4: 31 4: 43 4: 1516 4: 99 4: 43 4: 17 4: 31 4: 117 4: 34 4: 42 4: 11 4: 13 4: 29 4: 11 4: 11 4: 24 4: 123 4: 43 4: 445 4: 271 4: 717 4: 341 4: 91 4: 51 4: 11 4: 18 4: 314 4: 19 4: 78 4: 11 4: 142 4: 111 4: 1220 4: 772 4: 21 4: 14 4: 472 4: 110 4: 123 4: 11 4: 264 4: 212 4: 1410 4: 866 4: 105 4: 114 4: 131 4: 151 4: 14 4: 21 4: 15 4: 185 4: 510 4: 79 4: 171 4: 691 4: 131 4: 433 4: 242 4: 48 4: 126 4: 2716 4: 122 4: 184 4: 196 4: 31 4: 22 4: 82 4: 222 4: 2111 4: 64 4: 22 4: 21 4: 51 4: 51 4: 12 4: 21 4: 13 4: 21 4: 24 4: 41 4: 121 4: 110 4: 92 4: 52 4: 110 4: 910 4: 47 4: 712 4: 72 4: 14 4: 77 4: 94 4: 23 4: 1869 4: 262 4: 69 4: 39 4: 56 4: 11 4: 19 4: 42 4: 21 4: 201 4: 12 4: 14 4: 32 4: 213 4: 152 4: 96 4: 267 4: 92 4: 51 4: 16 4: 76 4: 52 4: 28 4: 68 4: 8167 4: 1176 4: 63 4: 41 4: 1118 4: 355 4: 24 4: 22 4: 22 4: 65 4: 23 4: 15 4: 41 4: 24 4: 53 4: 21 4: 14 4: 15 4: 51 4: 11 4: 16 4: 13 4: 215 4: 59 4: 136 4: 122 4: 12 4: 21 4: 11 4: 31 4: 12 4: 12 4: 111 4: 36 4: 2166 4: 44 4: 47 4: 139 4: 115 4: 591 4: 412 4: 551 4: 32 4: 1219 4: 401 4: 1120 4: 461 4: 927 4: 410 4: 73 4: 61 4: 51 4: 13 4: 21 4: 31 4: 42 4: 14 4: 71 4: 131 4: 380 4: 383 4: 21 4: 210 4: 181 4: 13 4: 65 4: 23 4: 2116 4: 269 4: 199 4: 15 4: 51 4: 34 4: 226 4: 9881 4: 412 4: 31 4: 16 4: 101 4: 12 4: 21 4: 19 4: 203 4: 24 4: 31 4: 42 4: 14 4: 210 4: 51 4: 13 4: 21 4: 23 4: 92 4: 14 4: 54 4: 62 4: 14 4: 43 4: 45 4: 51 4: 18 4: 614 4: 1319 4: 153 4: 321 4: 12 4: 36 4: 61 4: 11 4: 360 4: 291 4: 11 4: 15 4: 71 4: 14 4: 41 4: 110 4: 982 4: 210 4: 14 4: 29 4: 151 4: 612 4: 111 4: 18 4: 38 4: 715 4: 42 4: 7189 4: 401 4: 52 4: 21 4: 11 4: 31 4: 110 4: 21 4: 12 4: 682 4: 68 4: 185 4: 664 4: 64 4: 14 4: 14 4: 218 4: 114 4: 116 4: 41 4: 21 4: 82 4: 12 4: 31 4: 12 4: 710 4: 21 4: 127 4: 1020 4: 103 4: 39 4: 111 4: 42 4: 21 4: 29 4: 101 4: 3610 4: 1103 4: 315 4: 52 4: 121 4: 1211 4: 94 4: 11 4: 11 4: 12 4: 22 4: 12 4: 11 4: 28 4: 162 4: 11 4: 24 4: 34 4: 215 4: 561 4: 39 4: 342 4: 17 4: 24 4: 21 4: 1165 4: 364 4: 31 4: 19 4: 39 4: 114 4: 81 4: 361 4: 693 4: 34 4: 51 4: 110 4: 101 4: 2172 4: 151 4: 11 4: 19 4: 31 4: 12 4: 21 4: 11 4: 13 4: 158 4: 122 4: 214 4: 141 4: 12 4: 64 4: 91 4: 540 4: 182 4: 11 4: 34 4: 22 4: 220 4: 161 4: 82 4: 21 4: 11 4: 11 4: 14 4: 21 4: 142 4: 663 4: 57 4: 129 4: 2117 4: 1023 4: 42 4: 84 4: 31 4: 13 4: 85 4: 29 4: 106 4: 13 4: 27 4: 62 4: 22 4: 22 4: 42 4: 13 4: 12 4: 110 4: 105 4: 53 4: 31 4: 118 4: 1110 4: 13 4: 325 4: 44 4: 473 4: 210 4: 63 4: 83 4: 56 4: 51 4: 120 4: 516 4: 1351 4: 11 4: 15 4: 42 4: 212 4: 32 4: 21 4: 11 4: 213 4: 2541 4: 1710 4: 81 4: 11 4: 15 4: 414 4: 413 4: 133 4: 251 4: 318 4: 51 4: 33 4: 13 4: 64 4: 2146 4: 692 4: 224 4: 97 4: 91 4: 14 4: 84 4: 77 4: 23 4: 11 4: 25 4: 25 4: 31 4: 13 4: 21 4: 422 4: 132 4: 24 4: 426 4: 3612 4: 491 4: 17 4: 518 4: 18 4: 119 4: 51 4: 11 4: 14 4: 152 4: 17 4: 61 4: 12 4: 210 4: 49 4: 581 4: 26 4: 11 4: 129 4: 244 4: 14 4: 52 4: 49 4: 37 4: 3010 4: 23 4: 12 4: 21 4: 22 4: 18 4: 73 4: 54 4: 35 4: 2713 4: 544 4: 96 4: 51 4: 311 4: 231 4: 71 4: 17 4: 611 4: 66 4: 182 4: 28 4: 116 4: 111 4: 12 4: 19 4: 216 4: 113 4: 34 4: 1411 4: 246 4: 23 4: 28 4: 22 4: 22 4: 52 4: 277 4: 1624 4: 123 4: 92 4: 12 4: 33 4: 29 4: 44 4: 692 4: 43 4: 14 4: 38 4: 74 4: 161 4: 413 4: 41 4: 31 4: 17 4: 38 4: 14 4: 26 4: 112 4: 222 4: 25 4: 32 4: 11 4: 11 4: 24 4: 81 4: 12 4: 115 4: 71 4: 13 4: 39 4: 184 4: 41 4: 12 4: 11 4: 72 4: 28 4: 147 4: 88 4: 39 4: 431 4: 19 4: 74 4: 19 4: 42 4: 416 4: 141 4: 29 4: 71 4: 11 4: 21 4: 12 4: 124 4: 12 4: 33 4: 176 4: 41 4: 32 4: 31 4: 16 4: 22 4: 64 4: 43 4: 51 4: 33 4: 11 4: 15 4: 21 4: 232 4: 130 4: 371 4: 63 4: 12 4: 71 4: 25 4: 61 4: 13 4: 48 4: 45 4: 235 4: 44 4: 42 4: 11 4: 81 4: 212 4: 164 4: 22 4: 148 4: 284 4: 12 4: 267 4: 321 4: 11 4: 13 4: 38 4: 52 4: 193 4: 366 4: 11 4: 411 4: 96 4: 603 4: 33 4: 41 4: 12 4: 15 4: 12 4: 41 4: 11 4: 52 4: 11 4: 17 4: 21 4: 11 4: 11 4: 11 4: 22 4: 31 4: 33 4: 12 4: 131 4: 22 4: 83 4: 35 4: 15 4: 526 4: 261 4: 11 4: 12 4: 22 4: 12 4: 43 4: 21 4: 145 4: 77 4: 12 4: 36 4: 363 4: 363 4: 117 4: 273 4: 27 4: 45 4: 311 4: 881 4: 251 4: 11 4: 132 4: 21 4: 21 4: 127 4: 31 4: 11 4: 176 4: 51 4: 16 4: 614 4: 75 4: 13 4: 244 4: 82 4: 18 4: 482 4: 68 4: 11 4: 41 4: 22 4: 31 4: 61 4: 33 4: 295 4: 19 4: 46 4: 61 4: 128 4: 1716 4: 25 4: 31 4: 19 4: 41 4: 130 4: 425 4: 36 4: 12 4: 110 4: 191 4: 11 4: 11 4: 203 4: 837 4: 72 4: 411 4: 37 4: 248 4: 141 4: 389 4: 48 4: 44 4: 21 4: 161 4: 612 4: 344 4: 17 4: 11 4: 17 4: 72 4: 51 4: 114 4: 531 4: 1741 4: 674 4: 52 4: 17 4: 37 4: 47 4: 51 4: 41 4: 12 4: 11 4: 41 4: 315 4: 112 4: 4813 4: 101 4: 17 4: 181 4: 21 4: 18 4: 1093 4: 4014 4: 127 4: 12 4: 23 4: 84 4: 61001 4: 61 4: 11 4: 16 4: 79 4: 133 4: 74 4: 62 4: 21 4: 110 4: 51 4: 12 4: 11 4: 155 4: 62 4: 167 4: 221 4: 22 4: 14 4: 234 4: 2611 4: 41 4: 23 4: 1158 4: 497 4: 1133 4: 111 4: 26 4: 41 4: 11 4: 227 4: 711 4: 11 4: 11 4: 227 4: 725 4: 31 4: 13 4: 154 4: 332 4: 51 4: 18 4: 86 4: 21 4: 24 4: 310 4: 92 4: 13 4: 781 4: 110 4: 56 4: 72 4: 318 4: 122 4: 84 4: 46 4: 130 4: 53 4: 21 4: 37 4: 251 4: 12 4: 51 4: 223 4: 532 4: 26 4: 43 4: 11 4: 11 4: 11 4: 11 4: 52 4: 16 4: 11 4: 36 4: 26 4: 13 4: 24 4: 245 4: 33 4: 26 4: 246 4: 204 4: 151 4: 81 4: 13 4: 114 4: 447 4: 21 4: 12 4: 12 4: 21 4: 41 4: 13 4: 193 4: 28 4: 11 4: 15 4: 33 4: 21 4: 32 4: 163 4: 1135 4: 184 4: 45 4: 27 4: 61 4: 142 4: 102 4: 21 4: 199 4: 373 4: 320 4: 101 4: 21 4: 16 4: 328 4: 621 4: 154 4: 181 4: 132 4: 101 4: 46 4: 14 4: 124 4: 96 4: 22 4: 14 4: 11 4: 59 4: 51 4: 18 4: 24 4: 357 4: 91 4: 88 4: 24 4: 31 4: 417 4: 131 4: 11 4: 949 4: 362 4: 15 4: 85 4: 97 4: 513 4: 31 4: 12 4: 11 4: 41 4: 12 4: 16 4: 11 4: 11 4: 213 4: 810 4: 61 4: 12 4: 393 4: 13 4: 14 4: 21 4: 21 4: 35 4: 31 4: 24 4: 21 4: 212 4: 11 4: 11 4: 610 4: 126 4: 31 4: 12 4: 119 4: 24 4: 7010 4: 41 4: 297 4: 4118 4: 51 4: 113 4: 51 4: 49 4: 61 4: 17 4: 55 4: 1231 4: 283 4: 91 4: 1100 4: 388 4: 64 4: 33 4: 512 4: 32 4: 11 4: 41 4: 11 4: 21 4: 87 4: 12 4: 17 4: 71 4: 63 4: 33 4: 325 4: 105 4: 83 4: 21 4: 11 4: 3691 4: 91 4: 11 4: 111 4: 31 4: 45 4: 2170 4: 1592 4: 53 4: 141 4: 21 4: 31 4: 16 4: 34 4: 72 4: 13 4: 191 4: 117 4: 119 4: 67 4: 161 4: 11 4: 11 4: 21 4: 1411 4: 29 4: 121 4: 21 4: 140 4: 171 4: 288 4: 65 4: 166 4: 599 4: 118 4: 45 4: 171 4: 36 4: 77 4: 84 4: 12 4: 23 4: 24 4: 21 4: 15 4: 31 4: 14 4: 322 4: 112 4: 23 4: 328 4: 55 4: 247 4: 94 4: 22 4: 212 4: 11 4: 1156 4: 7118 4: 113 4: 15 4: 21 4: 12 4: 31 4: 12 4: 13 4: 23 4: 121 4: 51 4: 31 4: 641 4: 4536 4: 257 4: 218 4: 420 4: 212 4: 181 4: 136 4: 593 4: 729 4: 631 4: 47 4: 52 4: 115 4: 49 4: 117 4: 12 4: 252 4: 23 4: 201 4: 17 4: 64 4: 75 4: 11 4: 24 4: 114 4: 165 4: 31 4: 22 4: 21 4: 71 4: 13 4: 322 4: 25 4: 7126 4: 131 4: 310 4: 182 4: 447 4: 211 4: 1842 4: 164 4: 44 4: 1171 4: 16115 4: 499 4: 423 4: 55 4: 81 4: 41 4: 14 4: 218 4: 141 4: 15 4: 59 4: 34 4: 12 4: 27 4: 35 4: 27 4: 13 4: 127 4: 83 4: 376 4: 291 4: 26 4: 519 4: 222 4: 151 4: 215 4: 310 4: 1720 4: 326 4: 141 4: 31 4: 11 4: 51 4: 11 4: 136 4: 33 4: 11 4: 12 4: 44 4: 402 4: 11 4: 11 4: 174 4: 34 4: 81 4: 26 4: 102 4: 23 4: 302 4: 827 4: 92 4: 361 4: 51 4: 11 4: 67 4: 21 4: 11 4: 21 4: 148 4: 1748 4: 182 4: 23 4: 262 4: 51 4: 43 4: 51 4: 11 4: 29 4: 13 4: 21001 4: 11 4: 12 4: 242 4: 119 4: 64 4: 42 4: 376 4: 75 4: 22 4: 221 4: 724 4: 105 4: 43 4: 22 4: 21 4: 31 4: 43 4: 151 4: 17 4: 498 4: 258 4: 49 4: 261 4: 52 4: 181 4: 11 4: 32 4: 41 4: 12 4: 104 4: 41 4: 29 4: 61 4: 21 4: 12 4: 113 4: 456 4: 627 4: 612 4: 53 4: 31 4: 25 4: 52 4: 13 4: 372 4: 19 4: 45 4: 65 4: 13 4: 93 4: 241 4: 12 4: 16 4: 31 4: 11 4: 14 4: 21 4: 31 4: 1069 4: 1319 4: 362 4: 33 4: 23 4: 383 4: 21 4: 4916 4: 41 4: 12 4: 27 4: 98 4: 648 4: 461 4: 281 4: 101 4: 22 4: 81 4: 35 4: 15 4: 623 4: 41 4: 16 4: 123 4: 14 4: 649 4: 222 4: 14 4: 71 4: 13 4: 23 4: 17 4: 63 4: 26 4: 66 4: 13 4: 211 4: 52 4: 1947 4: 104 4: 21 4: 25 4: 41 4: 37 4: 23 4: 33 4: 191 4: 11 4: 27 4: 229 4: 191 4: 11 4: 921 4: 128 4: 621 4: 469 4: 333 4: 56 4: 31 4: 13 4: 121 4: 31 4: 12 4: 201 4: 13 4: 17 4: 141 4: 12 4: 14 4: 24 4: 41 4: 17 4: 279 4: 191 4: 420 4: 126 4: 42 4: 12 4: 27 4: 243 4: 14 4: 129 4: 33 4: 21 4: 13 4: 164 4: 45 4: 35 4: 103 4: 24 4: 255 4: 2619 4: 45 4: 321 4: 351 4: 32 4: 21 4: 25 4: 414 4: 33 4: 14 4: 61 4: 31 4: 15 4: 231 4: 12 4: 16 4: 173 4: 22 4: 13 4: 227 4: 221 4: 11 4: 13 4: 52 4: 41 4: 910 4: 65 4: 233 4: 143 4: 35 4: 36 4: 21 4: 33 4: 13 4: 15 4: 21 4: 81 4: 122 4: 12 4: 423 4: 162 4: 17 4: 23 4: 148 4: 166 4: 164 4: 21 4: 38 4: 81 4: 42 4: 111 4: 33 4: 52 4: 262 4: 113 4: 66 4: 351 4: 12 4: 93 4: 332 4: 291 4: 111 4: 12 4: 61 4: 15 4: 191 4: 110 4: 345 4: 33 4: 22 4: 42 4: 110 4: 99 4: 61 4: 17 4: 47 4: 1810 4: 62 4: 21 4: 12 4: 51 4: 22 4: 98 4: 77 4: 168 4: 71 4: 13 4: 16 4: 354 4: 66 4: 104 4: 15 4: 109 4: 81 4: 217 4: 52 4: 21 4: 11 4: 113 4: 84 4: 114 4: 47 4: 186 4: 121 4: 11 4: 13 4: 37 4: 52 4: 110 4: 71 4: 210 4: 1110 4: 49 4: 84 4: 251 4: 17 4: 15 4: 127 4: 61 4: 115 4: 74 4: 24 4: 92 4: 12 4: 111 4: 26 4: 43 4: 101 4: 1136 4: 252 4: 33 4: 101 4: 12 4: 1032 4: 642 4: 917 4: 51 4: 11 4: 16 4: 132 4: 46 4: 61 4: 23 4: 211 4: 151 4: 21 4: 13 4: 24 4: 132 4: 19 4: 51 4: 61 4: 22 4: 25 4: 11 4: 42 4: 124 4: 21 4: 53 4: 132 4: 152 4: 232 4: 38 4: 11 4: 48 4: 310 4: 31 4: 11 4: 12 4: 142 4: 612 4: 12 4: 118 4: 29 4: 71 4: 11 4: 16 4: 126 4: 131 4: 14 4: 221 4: 619 4: 52 4: 68 4: 167 4: 173 4: 359 4: 113 4: 372 4: 13 4: 11 4: 11 4: 22 4: 117 4: 81 4: 137 4: 182 4: 12 4: 23 4: 13 4: 12 4: 37 4: 131 4: 101 4: 21 4: 34 4: 21 4: 31 4: 39 4: 57 4: 529 4: 217 4: 181 4: 79 4: 222 4: 47 4: 1438 4: 751 4: 16 4: 193 4: 338 4: 761 4: 21 4: 12 4: 31 4: 55 4: 26 4: 950 4: 472 4: 32 4: 95 4: 24 4: 63 4: 61 4: 51 4: 13 4: 21 4: 715 4: 129 4: 277 4: 28 4: 151 4: 11 4: 11142 4: 279 4: 16 4: 228 4: 104 4: 21 4: 11 4: 233 4: 6532 4: 131 4: 27 4: 145 4: 464 4: 92 4: 263 4: 29 4: 910 4: 71 4: 1197 4: 2804 4: 53 4: 52 4: 162 4: 19 4: 1610 4: 61 4: 719 4: 93 4: 37 4: 338 4: 1529 4: 1916 4: 134 4: 11 4: 51 4: 13 4: 33 4: 62 4: 31 4: 329 4: 20198 4: 162 4: 31 4: 139 4: 363 4: 111 4: 22 4: 23 4: 11 4: 13 4: 12 4: 33 4: 47 4: 22 4: 12 4: 23 4: 183 4: 38 4: 98 4: 167 4: 1132 4: 19120 4: 341 4: 18 4: 36 4: 96 4: 62 4: 21 4: 1033 4: 31 4: 43 4: 75 4: 91 4: 117 4: 141 4: 19 4: 71 4: 16 4: 51 4: 11 4: 35 4: 411 4: 245 4: 201 4: 38 4: 510 4: 171 4: 16 4: 112 4: 41 4: 21 4: 21 4: 13 4: 31 4: 178 4: 56 4: 210 4: 175 4: 82 4: 16 4: 154 4: 391 4: 16 4: 513 4: 98 4: 141 4: 15 4: 267 4: 12 4: 1199 4: 28138 4: 7738 4: 781 4: 2013 4: 761 4: 104 4: 22 4: 268 4: 37 4: 158 4: 181 4: 11 4: 27 4: 31 4: 175 4: 510 4: 31 4: 121 4: 21 4: 191001 4: 114 4: 176 4: 213 4: 619 4: 151 4: 21 4: 31 4: 11 4: 11 4: 11 4: 21 4: 14 4: 22 4: 158 4: 71 4: 130 4: 77 4: 411 4: 127 4: 12 4: 1043 4: 65 4: 71 4: 543 4: 6936 4: 143 4: 25 4: 83 4: 14 4: 11 4: 1455 4: 39200 4: 2821 4: 11 4: 101 4: 11 4: 11 4: 110 4: 54 4: 220 4: 161 4: 1112 4: 897 4: 44 4: 32 4: 84 4: 21 4: 135 4: 66170 4: 175 4: 43 4: 24 4: 31 4: 114 4: 911 4: 85 4: 310 4: 1812 4: 214 4: 12 4: 55 4: 37 4: 43 4: 12 4: 1211 4: 111 4: 452 4: 17 4: 33 4: 11 4: 187 4: 131 4: 720 4: 242 4: 241 4: 545 4: 57 4: 54 4: 31 4: 15 4: 377 4: 174 4: 110 4: 353 4: 493 4: 72 4: 25 4: 26 4: 423 4: 22 4: 38 4: 61 4: 11 4: 26 4: 167 4: 56 4: 43 4: 12 4: 43 4: 1052 4: 71 4: 38 4: 303 4: 33 4: 43 4: 161 4: 13 4: 141 4: 31 4: 13 4: 31 4: 76 4: 22 4: 71 4: 23 4: 13 4: 191 4: 229 4: 75 4: 161 4: 14 4: 11 4: 31 4: 22 4: 81 4: 11 4: 11 4: 41 4: 33 4: 110 4: 18 4: 231 4: 12 4: 11 4: 23 4: 32 4: 13 4: 23 4: 12 4: 11 4: 11 4: 21 4: 1230 4: 72 4: 21 4: 14 4: 43 4: 32 4: 62 4: 166 4: 114 4: 72 4: 18 4: 22 4: 12 4: 11 4: 31 4: 21 4: 16 4: 12 4: 181 4: 206 4: 113 4: 43158 4: 724 4: 11 4: 216 4: 44 4: 151 4: 13 4: 150 4: 221 4: 34 4: 21 4: 31 4: 286 4: 21 4: 110 4: 117 4: 62 4: 131 4: 35 4: 31 4: 201 4: 121 4: 13 4: 91 4: 91 4: 29 4: 173 4: 56 4: 1838 4: 1515 4: 513 4: 735 4: 112 4: 9078 4: 245 4: 315 4: 396 4: 467 4: 123 4: 58 4: 243 4: 52 4: 46 4: 44 4: 27 4: 131 4: 182 4: 21 4: 12 4: 19 4: 23 4: 316 4: 1010 4: 44 4: 31 4: 11 4: 121 4: 114 4: 122 4: 23 4: 12 4: 150 4: 61 4: 21 4: 1127 4: 284 4: 172 4: 113 4: 506 4: 15 4: 22 4: 41 4: 61 4: 43 4: 21 4: 346 4: 131 4: 91 4: 15 4: 250 4: 43 4: 510 4: 656 4: 157 4: 21001 4: 18 4: 91 4: 94 4: 68 4: 28 4: 172 4: 51 4: 14 4: 41 4: 21 4: 32 4: 11 4: 11 4: 15 4: 32 4: 12 4: 410 4: 11 4: 18 4: 838 4: 7938 4: 801 4: 15 4: 22 4: 21 4: 206 4: 63 4: 51 4: 11 4: 180 4: 311 4: 122 4: 126 4: 134 4: 411 4: 192 4: 21 4: 32 4: 1910 4: 121 4: 13 4: 13 4: 32 4: 26 4: 95 4: 21 4: 55 4: 619 4: 52 4: 23 4: 196 4: 71 4: 71 4: 21 4: 11 4: 33 4: 34 4: 23 4: 82 4: 1323 4: 212 4: 21 4: 11 4: 114 4: 71 4: 13 4: 21 4: 138 4: 161 4: 23 4: 296 4: 41 4: 110 4: 92 4: 33 4: 11 4: 15 4: 21 4: 13 4: 33 4: 93 4: 2012 4: 1612 4: 96 4: 151 4: 11 4: 3612 4: 333 4: 414 4: 1523 4: 131 4: 36 4: 71 4: 331 4: 86 4: 21 4: 21 4: 18 4: 22 4: 22 4: 61 4: 11 4: 11 4: 51 4: 62 4: 17 4: 31 4: 41 4: 12 4: 19 4: 310 4: 280 4: 161 4: 11 4: 14 4: 74 4: 11 4: 111 4: 83 4: 25 4: 81 4: 218 4: 11 4: 11 4: 242 4: 11 4: 11 4: 180 4: 1714 4: 4420 4: 131 4: 11 4: 541 4: 226 4: 222 4: 138 4: 44 4: 81 4: 31 4: 19 4: 182 4: 124 4: 14209 4: 1431 4: 210 4: 467 4: 571 4: 520 4: 371 4: 291 4: 11 4: 38 4: 431 4: 14 4: 22 4: 31 4: 104 4: 15 4: 41 4: 11 4: 11 4: 19 4: 4237 4: 461 4: 31 4: 15 4: 23 4: 37 4: 201 4: 82 4: 11 4: 214 4: 71 4: 18 4: 32 4: 11 4: 13 4: 22 4: 215 4: 123 4: 32 4: 126 4: 244 4: 2720 4: 82 4: 210 4: 799 4: 43 4: 24 4: 64 4: 301 4: 12 4: 373 4: 1456 4: 201 4: 16 4: 36 4: 21 4: 12 4: 256 4: 212 4: 63 4: 85 4: 43 4: 321 4: 11 4: 84 4: 21 4: 113 4: 91 4: 926 4: 154 4: 11 4: 11 4: 18 4: 12 4: 21 4: 11 4: 12 4: 617 4: 127 4: 75 4: 52 4: 21 4: 21 4: 12 4: 25 4: 1911 4: 23 4: 49 4: 23 4: 13 4: 73 4: 1410 4: 114 4: 3010 4: 22 4: 132 4: 11 4: 11 4: 161 4: 17 4: 151 4: 12 4: 46 4: 24 4: 37 4: 212 4: 53 4: 123 4: 16 4: 36 4: 403 4: 59 4: 108 4: 134 4: 91 4: 1310 4: 23 4: 14 4: 26 4: 25 4: 24 4: 127 4: 161 4: 13 4: 11 4: 13 4: 11 4: 32 4: 11 4: 41 4: 330 4: 232 4: 25 4: 37 4: 201 4: 382 4: 265 4: 163 4: 362 4: 21 4: 99 4: 21 4: 42 4: 15 4: 14 4: 152 4: 110 4: 319 4: 53 4: 33 4: 51 4: 11 4: 105 4: 51 4: 21 4: 16 4: 154 4: 32 4: 121 4: 13 4: 14 4: 219 4: 135 4: 11 4: 16 4: 19 4: 11 4: 22 4: 14 4: 11 4: 19 4: 42 4: 13 4: 54 4: 61 4: 11 4: 81 4: 15 4: 71 4: 210 4: 61 4: 11 4: 264 4: 410 4: 241 4: 18 4: 32 4: 174 4: 31 4: 35 4: 62 4: 21 4: 83 4: 71 4: 131 4: 49 4: 47 4: 3126 4: 712 4: 81 4: 21 4: 21 4: 11 4: 14 4: 13 4: 448 4: 171 4: 16 4: 411 4: 21 4: 26 4: 64 4: 141 4: 12 4: 12 4: 81 4: 11 4: 11 4: 52 4: 12 4: 13 4: 129 4: 36 4: 84 4: 13 4: 85 4: 182 4: 22 4: 62 4: 32 4: 36 4: 76 4: 171 4: 12 4: 27 4: 51 4: 2212 4: 1452 4: 23 4: 11 4: 3328 4: 176 4: 11 4: 21 4: 51 4: 114 4: 183 4: 35 4: 21 4: 22 4: 17 4: 332 4: 118 4: 16 4: 84 4: 310 4: 76 4: 1327 4: 53 4: 31 4: 11 4: 13 4: 103 4: 440 4: 551 4: 620 4: 42 4: 110 4: 82 4: 25 4: 71 4: 12 4: 34 4: 381 4: 125 4: 132 4: 54 4: 45 4: 25 4: 41 4: 32 4: 630 4: 181 4: 52 4: 110 4: 27 4: 222 4: 17 4: 811 4: 202 4: 23 4: 156 4: 49 4: 610 4: 71 4: 47 4: 11 4: 11 4: 31 4: 119 4: 62 4: 18 4: 422 4: 3915 4: 77 4: 68 4: 246 4: 52 4: 439 4: 83 4: 24 4: 110 4: 62 4: 72 4: 33 4: 181 4: 150 4: 581 4: 11 4: 21 4: 15 4: 516 4: 51 4: 26 4: 11 4: 12 4: 16 4: 66 4: 53 4: 35 4: 17 4: 21 4: 12 4: 11 4: 132 4: 14 4: 424 4: 114 4: 48 4: 91 4: 12 4: 13 4: 114 4: 111 4: 11 4: 36 4: 12 4: 41 4: 14 4: 75 4: 28 4: 95 4: 284 4: 21 4: 17 4: 62 4: 22 4: 128 4: 64 4: 211 4: 25 4: 67 4: 712 4: 228 4: 51 4: 18 4: 63 4: 111 4: 95 4: 817 4: 352 4: 165 4: 133 4: 138 4: 31 4: 17 4: 144 4: 112 4: 11 4: 43 4: 634 4: 11 4: 19 4: 33 4: 11001 4: 13 4: 415 4: 105 4: 121 4: 21 4: 34 4: 65 4: 61 4: 912 4: 91 4: 31 4: 89 4: 63 4: 19 4: 11 4: 112 4: 81 4: 216 4: 716 4: 461 4: 61 4: 19 4: 103 4: 99 4: 39 4: 24 4: 21 4: 24 4: 141 4: 32 4: 28 4: 3143 4: 92 4: 14 4: 51 4: 141 4: 155 4: 910 4: 281 4: 112 4: 51 4: 45 4: 11004 4: 35 4: 423 4: 43 4: 123 4: 210 4: 73 4: 383 4: 271 4: 34 4: 139 4: 71 4: 514 4: 151 4: 11 4: 83 4: 216 4: 84 4: 13 4: 11 4: 11 4: 52 4: 1160 4: 201 4: 11 4: 12 4: 22 4: 24 4: 34 4: 22 4: 15 4: 68 4: 37 4: 16 4: 106 4: 51 4: 13 4: 163 4: 33 4: 143 4: 91 4: 11 4: 11 4: 31 4: 12 4: 113 4: 56 4: 69 4: 24 4: 63 4: 11 4: 112 4: 48 4: 11 4: 11 4: 16 4: 179 4: 21 4: 13 4: 52 4: 41 4: 11 4: 91 4: 15 4: 11 4: 369 4: 106 4: 44 4: 142 4: 21 4: 31 4: 21 4: 46 4: 161 4: 84 4: 83 4: 1718 4: 111 4: 12 4: 54 4: 64 4: 41 4: 85 4: 61 4: 110 4: 141 4: 35 4: 222 4: 122 4: 154 4: 71 4: 22 4: 12 4: 22 4: 32 4: 11 4: 111 4: 63 4: 35 4: 15 4: 22 4: 110 4: 217 4: 186 4: 53 4: 203 4: 28 4: 410 4: 41 4: 104 4: 81 4: 41 4: 24 4: 102 4: 113 4: 1015 4: 213 4: 25 4: 22 4: 25 4: 12 4: 21 4: 220 4: 367 4: 71 4: 18 4: 13 4: 91 4: 220 4: 318 4: 63 4: 142 4: 11 4: 123 4: 12 4: 22 4: 25 4: 48 4: 36 4: 32 4: 11 4: 44 4: 3152 4: 229 4: 610 4: 1936 4: 101 4: 71 4: 76 4: 193 4: 213 4: 44 4: 84 4: 11 4: 23 4: 11 4: 43 4: 52 4: 16 4: 156 4: 501 4: 246 4: 64 4: 448 4: 172 4: 15 4: 511 4: 302 4: 11 4: 105 4: 73 4: 33 4: 54 4: 11 4: 182 4: 82 4: 219 4: 67 4: 83 4: 15 4: 15 4: 815 4: 76 4: 54 4: 23 4: 32 4: 91 4: 19 4: 104 4: 55 4: 65 4: 110 4: 62 4: 62 4: 214 4: 224 4: 111 4: 2108 4: 81 4: 12 4: 12 4: 14 4: 47 4: 132 4: 16 4: 2590 4: 284 4: 133 4: 227 4: 28 4: 22 4: 145 4: 621 4: 16 4: 27 4: 81 4: 11 4: 62 4: 72 4: 11 4: 113 4: 92 4: 82 4: 153 4: 22 4: 43 4: 192 4: 18 4: 72 4: 949 4: 812 4: 93 4: 123 4: 32 4: 12 4: 15 4: 188 4: 932 4: 32 4: 27 4: 51 4: 12 4: 1135 4: 9187 4: 201 4: 103 4: 11 4: 12 4: 22 4: 11 4: 23 4: 37 4: 34 4: 14 4: 62 4: 16 4: 24 4: 62 4: 112 4: 910 4: 164 4: 2519 4: 1378 4: 81 4: 13 4: 148 4: 124 4: 11 4: 31 4: 127 4: 151 4: 15 4: 21 4: 27 4: 301 4: 189 4: 113 4: 1616 4: 135 4: 262 4: 23 4: 31 4: 61 4: 123 4: 402 4: 62 4: 514 4: 112 4: 11 4: 17 4: 610 4: 26 4: 41 4: 312 4: 82 4: 13 4: 21 4: 17 4: 66 4: 11 4: 21 4: 11 4: 142 4: 144 4: 42 4: 11 4: 14 4: 173 4: 131 4: 121 4: 38 4: 83 4: 1630 4: 912 4: 152 4: 31 4: 12 4: 128 4: 127 4: 61 4: 13 4: 111 4: 47 4: 11 4: 52 4: 102 4: 37 4: 12 4: 11 4: 15 4: 11 4: 19 4: 4154 4: 231 4: 41 4: 11 4: 24 4: 12 4: 121 4: 31 4: 241 4: 156 4: 33 4: 12 4: 618 4: 184 4: 22 4: 11 4: 51 4: 22 4: 38 4: 193 4: 27 4: 13 4: 391 4: 325 4: 34 4: 81 4: 11 4: 213 4: 13 4: 43 4: 110 4: 144 4: 151 4: 425 4: 164 4: 230 4: 63 4: 16 4: 1142 4: 42 4: 14 4: 310 4: 73 4: 14 4: 41 4: 11 4: 110 4: 103 4: 62 4: 22 4: 32 4: 25 4: 12 4: 210 4: 72 4: 14 4: 51 4: 2113 4: 811 4: 12 4: 522 4: 24 4: 73 4: 89 4: 616 4: 223 4: 32 4: 15 4: 81 4: 38 4: 32 4: 21 4: 11 4: 13 4: 150 4: 111 4: 111 4: 19 4: 22 4: 273 4: 559 4: 441 4: 613 4: 2336 4: 122 4: 41 4: 111 4: 106 4: 91 4: 11 4: 47 4: 182 4: 13 4: 31 4: 11 4: 14 4: 134 4: 716 4: 125 4: 62 4: 18 4: 161 4: 82 4: 114 4: 191 4: 46 4: 111 4: 11 4: 13 4: 87 4: 136 4: 12 4: 2926 4: 93 4: 176 4: 92 4: 11 4: 201 4: 12 4: 312 4: 71 4: 41 4: 16 4: 271 4: 15 4: 71 4: 121 4: 73 4: 31 4: 63 4: 12 4: 12 4: 82 4: 17 4: 65 4: 21 4: 22 4: 81 4: 11 4: 22 4: 32 4: 13 4: 25 4: 51 4: 215 4: 3110 4: 97 4: 120 4: 52 4: 22 4: 1710 4: 252 4: 12 4: 112 4: 241 4: 151 4: 81 4: 110 4: 81 4: 12 4: 54 4: 717 4: 62 4: 171 4: 16 4: 41 4: 181 4: 16 4: 32 4: 273 4: 17 4: 15 4: 51 4: 18 4: 31 4: 12 4: 33 4: 11 4: 54 4: 21 4: 412 4: 3313 4: 23 4: 214 4: 699 4: 93 4: 31 4: 14 4: 35 4: 141 4: 31 4: 11 4: 15 4: 4412 4: 252 4: 11 4: 17 4: 122 4: 27 4: 19 4: 53 4: 16 4: 12 4: 12 4: 279 4: 171 4: 3100 4: 308 4: 68 4: 315 4: 21 4: 24 4: 12 4: 108 4: 11 4: 18 4: 11 4: 14 4: 201 4: 435 4: 147 4: 31 4: 333 4: 128 4: 84 4: 129 4: 434 4: 12 4: 115 4: 83 4: 32 4: 21 4: 11 4: 11 4: 62 4: 83 4: 14 4: 13 4: 106 4: 232 4: 94 4: 22 4: 24 4: 512 4: 31 4: 1513 4: 121 4: 26 4: 21 4: 11 4: 234 4: 291 4: 11 4: 2012 4: 9120 4: 169 4: 16 4: 61 4: 31 4: 31 4: 41 4: 15 4: 31 4: 13 4: 34 4: 22 4: 12 4: 71 4: 82 4: 15 4: 381 4: 19 4: 14 4: 21 4: 73 4: 233 4: 2113 4: 341 4: 159 4: 81 4: 31001 4: 11 4: 11 4: 18 4: 74 4: 34 4: 43 4: 23 4: 21 4: 25 4: 265 4: 2220 4: 1465 4: 45 4: 273 4: 31 4: 110 4: 443 4: 21 4: 52 4: 12 4: 11 4: 11 4: 243 4: 17 4: 95 4: 71 4: 11 4: 110 4: 31 4: 41 4: 171 4: 128 4: 1639 4: 920 4: 477 4: 718 4: 204 4: 11 4: 12 4: 14 4: 491 4: 21 4: 1113 4: 44 4: 114 4: 5610 4: 410 4: 52 4: 34 4: 41 4: 61 4: 13 4: 59 4: 63 4: 267 4: 45 4: 21 4: 11 4: 216 4: 53 4: 21 4: 12 4: 22 4: 13 4: 125 4: 91 4: 151001 4: 18 4: 644 4: 23 4: 31 4: 219 4: 820 4: 1912 4: 332 4: 23 4: 137 4: 62 4: 15 4: 54 4: 41 4: 71 4: 341 4: 11 4: 25 4: 11 4: 11 4: 81 4: 87 4: 310 4: 52 4: 186 4: 159 4: 201 4: 510 4: 53 4: 21 4: 218 4: 131 4: 3172 4: 1918 4: 72 4: 11 4: 11 4: 26 4: 111 4: 21 4: 24 4: 35 4: 41 4: 32 4: 21001 4: 16 4: 46 4: 101 4: 19 4: 105 4: 111 4: 410 4: 104 4: 1315 4: 1727 4: 144 4: 51 4: 227 4: 1111 4: 1010 4: 43 4: 141 4: 141 4: 22 4: 511 4: 31 4: 122 4: 373 4: 21 4: 11 4: 19 4: 327 4: 101 4: 213 4: 175 4: 13 4: 23 4: 18 4: 214 4: 43 4: 946 4: 5711 4: 1921 4: 222 4: 19 4: 42 4: 63 4: 710 4: 63 4: 314 4: 3522 4: 183 4: 1314 4: 31 4: 3119 4: 42 4: 961 4: 691 4: 17 4: 21 4: 31 4: 13 4: 214 4: 16239 4: 654 4: 161 4: 117 4: 125 4: 506 4: 11 4: 123 4: 41 4: 28 4: 24 4: 131 4: 610 4: 31 4: 11 4: 13 4: 13 4: 168 4: 61 4: 116 4: 324 4: 43 4: 23 4: 76 4: 25 4: 131 4: 21 4: 11 4: 12 4: 38 4: 451 4: 13 4: 21 4: 21 4: 36 4: 52 4: 12 4: 204 4: 1979 4: 183 4: 22 4: 25 4: 62 4: 2119 4: 231 4: 31 4: 49 4: 212 4: 315 4: 14 4: 35 4: 31 4: 23 4: 33 4: 783 4: 153 4: 314 4: 62 4: 18 4: 181 4: 181 4: 11 4: 1200 4: 65 4: 18 4: 910 4: 110 4: 14 4: 22 4: 21 4: 43 4: 74 4: 320 4: 361 4: 11 4: 13 4: 111 4: 61001 4: 121 4: 231 4: 12 4: 25 4: 13 4: 67 4: 18 4: 43 4: 49 4: 153 4: 52 4: 24 4: 75 4: 183 4: 181 4: 12 4: 127 4: 172 4: 13 4: 22 4: 414 4: 344 4: 25 4: 91 4: 42 4: 92 4: 42 4: 21 4: 11001 4: 14 4: 217 4: 262 4: 28 4: 31 4: 21 4: 19 4: 57 4: 68 4: 73 4: 1312 4: 29 4: 265 4: 52 4: 106 4: 61 4: 32 4: 161 4: 101 4: 19 4: 163 4: 94 4: 821 4: 223 4: 11 4: 11 4: 43 4: 420 4: 331 4: 192 4: 21 4: 317 4: 279 4: 31 4: 125 4: 11 4: 11 4: 11 4: 161 4: 411 4: 11 4: 41 4: 12 4: 21 4: 15 4: 21 4: 11 4: 15 4: 55 4: 212 4: 71 4: 44 4: 89 4: 1752 4: 256 4: 1322 4: 231 4: 16 4: 142 4: 127 4: 32 4: 613 4: 114 4: 3134 4: 2422 4: 44 4: 21 4: 11 4: 126 4: 418 4: 28122 4: 68 4: 202 4: 12 4: 371 4: 213 4: 114 4: 223 4: 2413 4: 81 4: 17 4: 41 4: 12 4: 31 4: 11 4: 68 4: 73 4: 11 4: 24 4: 320 4: 22 4: 32 4: 14 4: 105 4: 610 4: 918 4: 21001 4: 19 4: 53 4: 11 4: 15 4: 91 4: 110 4: 843 4: 141 4: 31 4: 43 4: 103 4: 23 4: 21 4: 32 4: 1932 4: 72 4: 43 4: 51 4: 12 4: 57 4: 81 4: 37 4: 463 4: 15 4: 21 4: 61 4: 18 4: 37 4: 552 4: 12 4: 42 4: 641 4: 181 4: 104 4: 191 4: 119 4: 294 4: 22 4: 25 4: 56 4: 273 4: 18 4: 614 4: 85 4: 34 4: 13 4: 118 4: 619 4: 351 4: 13 4: 23 4: 11 4: 18 4: 193 4: 11 4: 110 4: 89 4: 79 4: 21 4: 11 4: 21 4: 11 4: 410 4: 14 4: 45 4: 56 4: 33 4: 12 4: 324 4: 43 4: 114 4: 914 4: 103 4: 46 4: 101 4: 331 4: 11 4: 1218 4: 284 4: 21 4: 76 4: 91 4: 46 4: 116 4: 104 4: 414 4: 232 4: 36 4: 43 4: 21 4: 1324 4: 251 4: 141 4: 12 4: 18 4: 114 4: 67 4: 84 4: 63 4: 22 4: 4112 4: 512 4: 271 4: 810 4: 63 4: 12 4: 13 4: 22 4: 12 4: 344 4: 43 4: 915 4: 125 4: 55 4: 310 4: 313 4: 153 4: 43 4: 18 4: 574 4: 173 4: 11 4: 22 4: 24 4: 29 4: 22 4: 23 4: 14 4: 251 4: 21 4: 22 4: 141 4: 81 4: 11 4: 17 4: 217 4: 1410 4: 186 4: 31001 4: 12 4: 55 4: 68 4: 11 4: 21 4: 2125 4: 611 4: 211 4: 183 4: 22 4: 11 4: 11 4: 13 4: 5158 4: 738 4: 224 4: 31 4: 31 4: 52 4: 91 4: 18 4: 16 4: 12 4: 113 4: 13 4: 314 4: 83 4: 21 4: 5215 4: 923 4: 1715 4: 119 4: 34 4: 51001 4: 14 4: 65 4: 182 4: 11001 4: 14 4: 33 4: 597 4: 42 4: 212 4: 303 4: 93 4: 13 4: 375 4: 105 4: 33 4: 14 4: 179 4: 179 4: 36 4: 210 4: 21 4: 11 4: 25 4: 24 4: 104 4: 35 4: 141 4: 11 4: 115 4: 343 4: 21 4: 21 4: 12 4: 25 4: 21 4: 294 4: 112 4: 34 4: 24 4: 19 4: 92 4: 12 4: 120 4: 161 4: 48 4: 114 4: 742 4: 64 4: 51 4: 11 4: 14 4: 21 4: 33 4: 72 4: 31 4: 1411 4: 46 4: 102 4: 522 4: 41 4: 84 4: 67 4: 115 4: 53 4: 526 4: 261 4: 48 4: 44 4: 3720 4: 61 4: 420 4: 197 4: 95 4: 719 4: 710 4: 281 4: 21 4: 21 4: 213 4: 268 4: 16 4: 24 4: 46 4: 420 4: 292 4: 1212 4: 32 4: 531 4: 281 4: 61 4: 35 4: 75 4: 13 4: 44 4: 42 4: 191 4: 12 4: 25 4: 23 4: 79 4: 391 4: 823 4: 145 4: 386 4: 14 4: 154 4: 2112 4: 64 4: 21 4: 41 4: 21001 4: 115 4: 91 4: 21 4: 22 4: 131 4: 34 4: 51 4: 132 4: 2927 4: 271 4: 193 4: 213 4: 64 4: 13 4: 21 4: 351 4: 121 4: 181 4: 1071 4: 15 4: 59 4: 71001 4: 110 4: 22 4: 16 4: 29 4: 91 4: 91 4: 728 4: 412 4: 42 4: 41 4: 2116 4: 1010 4: 833 4: 301 4: 38 4: 24 4: 54 4: 94 4: 31 4: 11 4: 46 4: 62 4: 14 4: 63 4: 187 4: 2015 4: 71 4: 15 4: 1219 4: 2042 4: 1198 4: 125 4: 32 4: 19 4: 31 4: 12 4: 216 4: 81 4: 12 4: 32 4: 1023 4: 331 4: 23 4: 15 4: 11001 4: 14 4: 517 4: 931 4: 642 4: 12042 4: 1211 4: 13 4: 42 4: 21 4: 12 4: 27 4: 423 4: 3620 4: 151 4: 81 4: 111 4: 61 4: 14 4: 51 4: 12 4: 21 4: 11 4: 29 4: 31 4: 21 4: 11 4: 11 4: 18 4: 31 4: 32 4: 64 4: 21 4: 12 4: 17 4: 338 4: 41001 4: 14 4: 3518 4: 4810 4: 45 4: 113 4: 213 4: 131 4: 117 4: 111 4: 1730 4: 3710 4: 2869 4: 44 4: 847 4: 155 4: 13 4: 21 4: 11 4: 21 4: 13 4: 37 4: 145 4: 42 4: 830 4: 421 4: 51 4: 24 4: 21 4: 21 4: 29 4: 93 4: 457 4: 32 4: 11 4: 51 4: 33 4: 110 4: 71 4: 17 4: 88 4: 726 4: 251 4: 21 4: 21 4: 113 4: 1213 4: 48221 4: 238 4: 2813 4: 491 4: 11 4: 17 4: 183 4: 110 4: 118 4: 238 4: 191 4: 101 4: 11 4: 26 4: 94 4: 64 4: 2154 4: 1111 4: 991 4: 171 4: 14 4: 41 4: 2169 4: 2525 4: 2910 4: 63 4: 117 4: 105 4: 535 4: 82 4: 16 4: 127 4: 724 4: 141 4: 223 4: 322 4: 11 4: 72 4: 12 4: 1710 4: 81 4: 82 4: 37 4: 2178 4: 4617 4: 31 4: 11 4: 51 4: 989 4: 21 4: 19 4: 166 4: 48441 4: 337 4: 135 4: 68 4: 92 4: 123 4: 32 4: 111 4: 13 4: 11 4: 323 4: 339 4: 1318 4: 947 4: 41 4: 43 4: 966 4: 61 4: 14 4: 114 4: 517 4: 52 4: 22 4: 17 4: 51 4: 321 4: 84 4: 51 4: 273 4: 94 4: 16 4: 42 4: 81 4: 162 4: 1328 4: 152 4: 610 4: 71 4: 21 4: 1440 4: 251 4: 16 4: 151 4: 856 4: 192 4: 26 4: 1613 4: 73 4: 24 4: 11 4: 432 4: 2610 4: 471 4: 16 4: 32 4: 51 4: 130 4: 32 4: 193 4: 192 4: 331 4: 74 4: 38 4: 33 4: 14 4: 23 4: 192 4: 220 4: 101 4: 89 4: 41 4: 82 4: 31 4: 16 4: 164 4: 31 4: 26 4: 51 4: 181 4: 1922 4: 63 4: 1618 4: 81 4: 110 4: 17 4: 33 4: 23 4: 92 4: 22 4: 12 4: 72 4: 83 4: 23 4: 34 4: 151 4: 17 4: 47 4: 181 4: 31 4: 82 4: 39 4: 72 4: 11 4: 31 4: 192 4: 13 4: 84 4: 43 4: 12 4: 113 4: 119 4: 81 4: 140 4: 201 4: 31 4: 52 4: 110 4: 102 4: 5116 4: 415 4: 31 4: 111 4: 52 4: 217 4: 51 4: 16 4: 28 4: 82 4: 21 4: 611 4: 246 4: 61001 4: 19 4: 22 4: 311 4: 51 4: 129 4: 38 4: 11 4: 11 4: 61 4: 41 4: 18 4: 2823 4: 41 4: 11001 4: 11 4: 83 4: 704 4: 61001 4: 11001 4: 125 4: 314 4: 7199 4: 72 4: 72 4: 19 4: 413 4: 64 4: 349 4: 844 4: 138 4: 212 4: 51 4: 1215 4: 361 4: 13 4: 11 4: 11 4: 12 4: 1610 4: 179 4: 704 4: 82 4: 1974 4: 131 4: 14 4: 22 4: 531 4: 11 4: 11 4: 16 4: 173 4: 16 4: 183 4: 51 4: 26 4: 196 4: 204 4: 39 4: 1381 4: 262 4: 219 4: 111 4: 11 4: 219 4: 121 4: 72 4: 96 4: 1810 4: 151 4: 13 4: 82 4: 72 4: 11001 4: 131 4: 183 4: 114 4: 2611 4: 310 4: 143 4: 22 4: 12 4: 51 4: 1437 4: 93 4: 12 4: 13 4: 36 4: 18 4: 910 4: 23 4: 123 4: 19 4: 33 4: 18 4: 141 4: 33 4: 11 4: 11 4: 111 4: 208 4: 418 4: 151 4: 282 4: 147 4: 59 4: 172 4: 67 4: 57 4: 144 4: 115 4: 92 4: 36 4: 32 4: 211001 4: 112 4: 42 4: 23 4: 105 4: 35 4: 211 4: 35 4: 842 4: 92 4: 25 4: 417 4: 525 4: 91 4: 23 4: 15 4: 117 4: 22 4: 51 4: 22 4: 129 4: 304 4: 43 4: 14 4: 22 4: 152 4: 24 4: 39 4: 313 4: 71 4: 230 4: 153 4: 210 4: 74 4: 173 4: 12 4: 21 4: 25 4: 31 4: 15 4: 131 4: 11 4: 522 4: 31 4: 31 4: 51 4: 17 4: 272 4: 21 4: 113 4: 688 4: 1623 4: 91 4: 17 4: 271 4: 181001 4: 12 4: 12 4: 88 4: 645 4: 581001 4: 112 4: 212 4: 31 4: 21 4: 11 4: 11 4: 163 4: 42 4: 15 4: 101 4: 17 4: 13 4: 131 4: 11 4: 51 4: 13 4: 56 4: 715 4: 810 4: 108 4: 51 4: 16 4: 106 4: 21 4: 14 4: 41 4: 12 4: 12 4: 14 4: 31 4: 11001 4: 11 4: 73 4: 121 4: 11 4: 113 4: 26 4: 15 4: 561 4: 362 4: 18 4: 2304 4: 362 4: 21 4: 31 4: 132 4: 42 4: 11 4: 15 4: 11 4: 92 4: 418 4: 63 4: 47 4: 19 4: 11 4: 21 4: 575 4: 1943 4: 1221 4: 143 4: 1239 4: 24 4: 416 4: 111 4: 146 4: 2010 4: 209 4: 81 4: 25 4: 764 4: 991001 4: 13 4: 13 4: 541 4: 16 4: 12 4: 81 4: 34 4: 7140 4: 175 4: 21 4: 33 4: 41 4: 14 4: 47 4: 1215 4: 202 4: 22 4: 15 4: 139 4: 277 4: 64 4: 19 4: 128 4: 122 4: 118 4: 310 4: 58 4: 25 4: 44 4: 33 4: 28 4: 381 4: 34 4: 124 4: 347 4: 119 4: 84 4: 51001 4: 14 4: 157 4: 123 4: 61 4: 17 4: 41 4: 29 4: 24 4: 11 4: 110 4: 41 4: 31 4: 64 4: 132 4: 514 4: 724 4: 419 4: 38 4: 51 4: 16 4: 132 4: 11 4: 12 4: 119 4: 788 4: 2182 4: 1570 4: 203 4: 12 4: 293 4: 133 4: 16 4: 129 4: 41 4: 42 4: 1310 4: 22 4: 370 4: 177 4: 76 4: 35 4: 41 4: 25 4: 26 4: 92 4: 21 4: 31001 4: 11 4: 11 4: 91 4: 12 4: 27 4: 35 4: 12 4: 46 4: 92 4: 21 4: 31 4: 66 4: 23 4: 166 4: 51 4: 42 4: 11 4: 11 4: 11 4: 22 4: 28 4: 71 4: 11 4: 12 4: 36 4: 1214 4: 143 4: 13 4: 310 4: 62 4: 99 4: 211 4: 33 4: 1795 4: 21 4: 12 4: 41001 4: 2198 4: 2210 4: 21 4: 518 4: 174 4: 32 4: 27 4: 4418 4: 34 4: 14 4: 11 4: 126 4: 213 4: 53 4: 31 4: 81 4: 17 4: 227 4: 1725 4: 421 4: 11001 4: 12 4: 15 4: 163 4: 241001 4: 15 4: 303 4: 159 4: 207 4: 517 4: 192 4: 101 4: 15 4: 72 4: 51 4: 26 4: 63 4: 31 4: 11 4: 215 4: 131 4: 13 4: 24 4: 17127 4: 436 4: 52306 4: 371 4: 13 4: 89 4: 41 4: 423 4: 126 4: 51 4: 324 4: 232 4: 21 4: 22 4: 117 4: 91001 4: 13 4: 61 4: 14 4: 33 4: 11 4: 95 4: 85 4: 66 4: 55 4: 47 4: 714 4: 253 4: 39 4: 61 4: 126 4: 121 4: 41 4: 42 4: 11 4: 11 4: 13 4: 12 4: 61001 4: 13 4: 166 4: 39 4: 91 4: 13 4: 61 4: 430 4: 6440 4: 1049 4: 682 4: 32 4: 16 4: 110 4: 42 4: 16 4: 219 4: 66 4: 222 4: 120 4: 127 4: 43 4: 282 4: 192 4: 91 4: 71 4: 86 4: 1811 4: 201 4: 19 4: 54 4: 73 4: 717 4: 53 4: 61 4: 91 4: 13 4: 17 4: 27 4: 75 4: 46 4: 1310 4: 31 4: 13 4: 57 4: 53 4: 13 4: 910 4: 71001 4: 21 4: 146 4: 53 4: 157 4: 133 4: 52 4: 624 4: 97 4: 131 4: 110 4: 49 4: 1733 4: 442 4: 11 4: 24 4: 23 4: 181 4: 91001 4: 19 4: 164 4: 155 4: 21 4: 318 4: 191 4: 120 4: 952 4: 24 4: 11 4: 16 4: 41 4: 3626 4: 381 4: 116 4: 42 4: 19 4: 131 4: 49 4: 1412 4: 64 4: 123 4: 254 4: 89 4: 23 4: 320 4: 283 4: 35 4: 33 4: 73 4: 23 4: 71 4: 31001 4: 116 4: 282 4: 12 4: 12 4: 110 4: 2246 4: 99 4: 349 4: 195 4: 74 4: 42 4: 511 4: 204 4: 12 4: 42 4: 91 4: 17 4: 41 4: 221 4: 52 4: 41 4: 31 4: 14 4: 152 4: 17 4: 146 4: 147 4: 31 4: 71001 4: 11 4: 113 4: 726 4: 321 4: 11 4: 12 4: 18 4: 282 4: 41 4: 29 4: 135 4: 21 4: 61001 4: 11 4: 2012 4: 71001 4: 116 4: 117 4: 204 4: 73 4: 11001 4: 11 4: 116 4: 92 4: 11 4: 11 4: 12 4: 67 4: 52 4: 163 4: 15 4: 96 4: 34 4: 32 4: 21 4: 15 4: 91 4: 27 4: 21001 4: 110 4: 15 4: 53 4: 22 4: 52 4: 22 4: 19 4: 212 4: 17 4: 71 4: 11001 4: 13 4: 1012 4: 29 4: 1229 4: 38 4: 73 4: 11 4: 11 4: 31 4: 12 4: 34 4: 52 4: 63 4: 22 4: 12 4: 63 4: 82 4: 21 4: 88 4: 357 4: 402 4: 496 4: 4120 4: 619 4: 187 4: 211 4: 42 4: 55 4: 1410 4: 133 4: 13 4: 11 4: 924 4: 28913 4: 43 4: 31 4: 11001 4: 11 4: 3115 4: 452 4: 18 4: 464 4: 321 4: 16 4: 12 4: 33 4: 12 4: 1793 4: 21 4: 13 4: 12 4: 21001 4: 12 4: 33 4: 17 4: 14 4: 101 4: 47 4: 242 4: 33 4: 11001 4: 11 4: 11001 4: 126 4: 497 4: 613 4: 74 4: 23 4: 13 4: 101 4: 215 4: 810 4: 121001 4: 12 4: 15 4: 883 4: 2010 4: 41 4: 191001 4: 16 4: 34 4: 16 4: 14 4: 19 4: 151 4: 79 4: 161 4: 141 4: 11 4: 449 4: 1317 4: 91 4: 43 4: 610 4: 11 4: 110 4: 328 4: 75 4: 39 4: 564 4: 11 4: 1810 4: 34 4: 1229 4: 332 4: 371 4: 11 4: 17 4: 62 4: 18 4: 718 4: 796 4: 33 4: 310 4: 11 4: 26 4: 29116 4: 466 4: 25 4: 151 4: 74 4: 13 4: 41 4: 127 4: 2901 4: 103 4: 524 4: 384 4: 162 4: 92 4: 12 4: 21 4: 16 4: 59 4: 133 4: 166 4: 47 4: 610 4: 21 4: 163 4: 76 4: 446 4: 1417 4: 251 4: 2738 4: 115 4: 21 4: 14 4: 612 4: 64 4: 31 4: 11 4: 173 4: 211 4: 192 4: 31 4: 12110 4: 41 4: 18 4: 149 4: 231 4: 68 4: 92 4: 22 4: 201 4: 110 4: 172 4: 19 4: 121 4: 310 4: 91 4: 119 4: 52 4: 13 4: 32 4: 25 4: 15 4: 210 4: 21 4: 2324 4: 123 4: 62 4: 21 4: 66 4: 222 4: 222 4: 11 4: 13 4: 75 4: 613 4: 1810 4: 42 4: 105 4: 62 4: 13 4: 82 4: 12 4: 43 4: 185 4: 63 4: 31 4: 73 4: 44 4: 556 4: 187 4: 12 4: 42 4: 58 4: 71 4: 41001 4: 11001 4: 11 4: 249 4: 3112 4: 244 4: 77 4: 151 4: 11 4: 318 4: 279 4: 207 4: 177 4: 181 4: 248 4: 110 4: 43 4: 106 4: 930 4: 3414 4: 5036 4: 61 4: 32 4: 710 4: 291 4: 11001 4: 193 4: 57 4: 52 4: 226 4: 431 4: 12 4: 12 4: 49 4: 48 4: 26 4: 106 4: 344 4: 225 4: 14 4: 253 4: 220 4: 116 4: 1310 4: 106 4: 251 4: 22 4: 21 4: 61 4: 31 4: 251 4: 228 4: 11 4: 315 4: 222 4: 12 4: 3022 4: 1510 4: 164 4: 95 4: 17 4: 315 4: 151 4: 44 4: 20284 4: 461 4: 14 4: 28 4: 242 4: 108 4: 31 4: 154 4: 81 4: 13 4: 11 4: 41 4: 11 4: 44 4: 22 4: 522 4: 162 4: 616 4: 156 4: 522 4: 173 4: 12 4: 81 4: 111 4: 17 4: 21 4: 2172 4: 201 4: 15 4: 51001 4: 14 4: 316 4: 301001 4: 110 4: 51 4: 310 4: 92 4: 35 4: 32 4: 21 4: 228 4: 285 4: 171 4: 11 4: 19 4: 52 4: 217 4: 111001 4: 110 4: 151 4: 12 4: 988 4: 212 4: 14 4: 32 4: 106 4: 115 4: 43 4: 21 4: 202 4: 11 4: 12 4: 71 4: 15 4: 69 4: 102 4: 19 4: 82 4: 191 4: 67 4: 711 4: 425 4: 93 4: 31001 4: 13 4: 529 4: 299 4: 111001 4: 11001 4: 12 4: 141 4: 52 4: 45 4: 87 4: 59 4: 120 4: 203 4: 81 4: 11 4: 34 4: 216 4: 710 4: 79 4: 234 4: 41 4: 11 4: 13 4: 61 4: 119 4: 1213 4: 93 4: 23 4: 81 4: 11 4: 24 4: 53 4: 12 4: 22 4: 215 4: 35 4: 434 4: 231 4: 24 4: 51 4: 16 4: 11 4: 21 4: 110 4: 36 4: 121 4: 91 4: 223 4: 112 4: 110 4: 430 4: 391001 4: 11 4: 13 4: 233 4: 15 4: 21 4: 68 4: 61 4: 182 4: 1028 4: 84 4: 63 4: 13 4: 505 4: 202 4: 81 4: 22 4: 117 4: 2136 4: 451 4: 13 4: 161 4: 74 4: 244 4: 201 4: 83 4: 1193 4: 223 4: 320 4: 81 4: 1610 4: 211 4: 191 4: 101 4: 14 4: 762 4: 371 4: 14 4: 330 4: 304 4: 11 4: 1272 4: 21 4: 38 4: 54 4: 91 4: 22 4: 11 4: 41 4: 1317 4: 4068 4: 1810 4: 116 4: 98 4: 15 4: 61 4: 11001 4: 15 4: 155 4: 53 4: 52 4: 19 4: 72 4: 312 4: 82 4: 316 4: 27 4: 37 4: 42 4: 116 4: 139 4: 84 4: 81 4: 33 4: 31 4: 21001 4: 14 4: 513 4: 1751 4: 601 4: 13 4: 21 4: 23 4: 431 4: 668 4: 414 4: 41 4: 127 4: 441 4: 41 4: 12 4: 56 4: 79 4: 164 4: 51 4: 16 4: 31 4: 117 4: 291 4: 92 4: 12 4: 177 4: 10610 4: 83 4: 16 4: 29 4: 194 4: 91 4: 131 4: 363 4: 11 4: 29 4: 112 4: 71 4: 96 4: 33 4: 17 4: 15 4: 32 4: 21 4: 22 4: 11 4: 14 4: 23 4: 36 4: 12 4: 371 4: 71 4: 24 4: 49 4: 22 4: 1200 4: 2350 4: 14100 4: 210 4: 1010 4: 18 4: 47 4: 174 4: 18 4: 420 4: 51 4: 11 4: 12 4: 21 4: 11 4: 147 4: 212 4: 21 4: 28 4: 145 4: 48 4: 81 4: 11 4: 2146 4: 151001 4: 11 4: 11 4: 12 4: 29 4: 102 4: 71 4: 29 4: 83 4: 21 4: 18 4: 31001 4: 12 4: 95 4: 31 4: 25 4: 45 4: 54 4: 131 4: 491 4: 52 4: 11 4: 15 4: 72 4: 11 4: 12 4: 54 4: 237 4: 121 4: 640 4: 71 4: 28 4: 710 4: 26 4: 205 4: 104 4: 41 4: 22 4: 510 4: 23 4: 14 4: 225 4: 391 4: 21 4: 458 4: 610 4: 81001 4: 11 4: 11 4: 1325 4: 245 4: 173 4: 710 4: 14 4: 48 4: 174 4: 123 4: 63 4: 64 4: 41 4: 116 4: 32 4: 92 4: 1093 4: 2141 4: 47194 4: 54 4: 15 4: 813 4: 158 4: 301 4: 510 4: 52 4: 11 4: 31001 4: 13 4: 119 4: 1011 4: 231 4: 114 4: 34 4: 111 4: 11 4: 612 4: 122 4: 75 4: 53 4: 21 4: 120 4: 145 4: 11 4: 41 4: 13 4: 148 4: 11 4: 41 4: 35 4: 561 4: 223 4: 171 4: 11 4: 15 4: 64 4: 94 4: 163 4: 11 4: 25 4: 4612 4: 417 4: 59 4: 720 4: 81 4: 11 4: 15 4: 612 4: 350 4: 83 4: 41 4: 31 4: 15 4: 2016 4: 91 4: 13 4: 82 4: 43 4: 12 4: 14 4: 146 4: 236 4: 52 4: 21 4: 125 4: 1318 4: 22 4: 51 4: 11 4: 25 4: 63 4: 623 4: 15 4: 25 4: 56 4: 37 4: 1894 4: 442 4: 44 4: 46 4: 101 4: 21 4: 13 4: 121 4: 133 4: 41001 4: 114 4: 26 4: 19 4: 1816 4: 162 4: 411 4: 35 4: 23 4: 11 4: 11 4: 211 4: 12 4: 42 4: 51 4: 54 4: 637 4: 331 4: 12 4: 21 4: 410 4: 41 4: 35 4: 23 4: 310 4: 131 4: 17 4: 35 4: 11 4: 14 4: 25 4: 151 4: 92 4: 27 4: 163 4: 15 4: 51 4: 861 4: 12 4: 11 4: 43 4: 102 4: 171 4: 13 4: 23 4: 303 4: 83 4: 11 4: 11 4: 33 4: 210 4: 810 4: 121 4: 141 4: 24 4: 21 4: 11001 4: 11 4: 12 4: 32 4: 14 4: 19 4: 151 4: 11 4: 53 4: 15 4: 221 4: 12 4: 82 4: 11 4: 11 4: 211 4: 45 4: 234 4: 26 4: 64 4: 21 4: 42 4: 22 4: 133 4: 371 4: 162 4: 26 4: 112 4: 25 4: 34 4: 112 4: 16 4: 188 4: 1092 4: 285 4: 110 4: 523 4: 51 4: 31 4: 26 4: 66 4: 72 4: 11001 4: 13 4: 101 4: 13 4: 112 4: 124 4: 82 4: 612 4: 1115 4: 2049 4: 271 4: 15 4: 76 4: 123 4: 12 4: 11 4: 81001 4: 11 4: 2123 4: 113 4: 21 4: 47 4: 121 4: 15 4: 51001 4: 22 4: 23 4: 281 4: 21207 4: 251 4: 18 4: 33 4: 11 4: 24 4: 115 4: 163 4: 31 4: 13 4: 13 4: 1119 4: 81 4: 13 4: 13 4: 121 4: 16 4: 72 4: 22 4: 44 4: 1520 4: 131 4: 11001 4: 110 4: 12 4: 72 4: 79 4: 116 4: 38151 4: 494 4: 13 4: 52 4: 211 4: 310 4: 510 4: 199 4: 11 4: 710 4: 2042 4: 61 4: 771 4: 17 4: 312 4: 56 4: 641 4: 182 4: 82 4: 222 4: 292 4: 93 4: 12 4: 12 4: 12 4: 21 4: 129 4: 162 4: 510 4: 51 4: 147 4: 121 4: 24 4: 191 4: 146 4: 1252 4: 12 4: 516 4: 41 4: 16 4: 825 4: 136 4: 143 4: 63 4: 32 4: 13 4: 23 4: 128 4: 351 4: 14 4: 22 4: 532 4: 24 4: 22 4: 35 4: 93 4: 51001 4: 13 4: 27 4: 52 4: 25 4: 19 4: 210 4: 141 4: 1010 4: 110 4: 51 4: 132 4: 114 4: 51 4: 29 4: 212 4: 162 4: 22 4: 41 4: 215 4: 1047 4: 91 4: 11 4: 1153 4: 501001 4: 11001 4: 11 4: 52 4: 1281 4: 16 4: 337 4: 97 4: 64 4: 101 4: 34 4: 51 4: 1010 4: 29 4: 21 4: 28 4: 199 4: 153 4: 26 4: 71001 4: 118 4: 78 4: 820 4: 301 4: 11 4: 12 4: 11 4: 410 4: 329 4: 1715 4: 1910 4: 91 4: 544 4: 3154 4: 5147 4: 104 4: 134 4: 148 4: 110 4: 171 4: 33 4: 39 4: 55 4: 639 4: 262 4: 32 4: 31 4: 33 4: 136 4: 42 4: 110 4: 15 4: 31 4: 31 4: 35 4: 65 4: 4146 4: 2953 4: 121 4: 135 4: 383 4: 68 4: 71 4: 61001 4: 120 4: 1412 4: 43 4: 11 4: 43 4: 21001 4: 11 4: 31 4: 19 4: 5826 4: 189 4: 3126 4: 194 4: 34 4: 85 4: 28 4: 310 4: 101 4: 121 4: 11 4: 42 4: 12 4: 84 4: 23 4: 21001 4: 12 4: 333 4: 11 4: 14 4: 74 4: 71 4: 31 4: 16220 4: 141 4: 106 4: 620 4: 515 4: 91 4: 42 4: 13 4: 214 4: 31 4: 146 4: 1244 4: 10358 4: 458 4: 101 4: 71 4: 17 4: 31 4: 16 4: 101 4: 52 4: 21 4: 14 4: 62 4: 4150 4: 2961001 4: 14 4: 46 4: 46 4: 19 4: 21 4: 184 4: 222 4: 51001 4: 11 4: 152 4: 22213 4: 271 4: 11 4: 19 4: 13 4: 3115 4: 938 4: 222 4: 211 4: 43 4: 65 4: 21 4: 13 4: 13 4: 321 4: 11 4: 293 4: 21 4: 13 4: 63 4: 110 4: 401 4: 45 4: 52 4: 31 4: 12 4: 19 4: 62 4: 22 4: 11 4: 58 4: 31 4: 11 4: 12 4: 12 4: 71001 4: 11 4: 110 4: 182 4: 52 4: 11 4: 12 4: 39 4: 132 4: 671 4: 12 4: 218 4: 163 4: 42 4: 14 4: 14 4: 32 4: 11001 4: 19 4: 34 4: 501 4: 135 4: 87 4: 71 4: 11 4: 13 4: 21 4: 11 4: 22 4: 51 4: 11 4: 24 4: 14 4: 994 4: 310 4: 29 4: 571 4: 11 4: 230 4: 222 4: 7884 4: 91 4: 12 4: 161 4: 74 4: 3136 4: 410 4: 15 4: 334 4: 51 4: 15 4: 31 4: 12 4: 31001 4: 11 4: 63 4: 21001 4: 11 4: 15 4: 343 4: 28 4: 11 4: 21 4: 11 4: 14 4: 81 4: 89 4: 229 4: 452 4: 134 4: 72 4: 41 4: 11001 4: 11 4: 210 4: 75 4: 341 4: 12 4: 21 4: 15 4: 35 4: 15160 4: 2981001 4: 11 4: 11 4: 140 4: 197 4: 6120 4: 71 4: 11 4: 178 4: 106 4: 85 4: 773 4: 395 4: 48 4: 157 4: 714 4: 32 4: 11 4: 262 4: 18 4: 137 4: 614 4: 104 4: 53 4: 61 4: 11001 4: 16 4: 81001 4: 21 4: 191 4: 31 4: 615 4: 73 4: 31 4: 16 4: 52 4: 15 4: 41 4: 15 4: 25 4: 71 4: 54 4: 229 4: 137 4: 21 4: 12 4: 22 4: 22 4: 53 4: 721 4: 164 4: 35 4: 14 4: 91 4: 12 4: 25 4: 93 4: 220 4: 92 4: 133 4: 681 4: 14 4: 21 4: 17 4: 51 4: 109 4: 141 4: 14 4: 133 4: 115 4: 21 4: 35 4: 21 4: 191 4: 41 4: 12 4: 34 4: 23 4: 37 4: 11 4: 21001 4: 12 4: 61 4: 15 4: 23 4: 42 4: 31 4: 16 4: 125 4: 23 4: 121 4: 11 4: 11 4: 216 4: 582 4: 142 4: 14 4: 234 4: 113 4: 21 4: 14 4: 11 4: 28 4: 85 4: 16 4: 66 4: 42 4: 425 4: 171 4: 6163 4: 3005 4: 123 4: 33 4: 221 4: 310 4: 322 4: 11001 4: 18 4: 64 4: 551001 4: 13 4: 112 4: 12 4: 11 4: 13 4: 23 4: 210 4: 1137 4: 391 4: 26 4: 162 4: 11 4: 15 4: 810 4: 21 4: 59 4: 1081 4: 55 4: 242 4: 42 4: 113 4: 107 4: 55 4: 63 4: 28 4: 13 4: 988 4: 141 4: 4814 4: 1422 4: 175 4: 41 4: 12 4: 11 4: 32 4: 224 4: 332 4: 67 4: 32 4: 16223 4: 293 4: 22 4: 22 4: 162 4: 11 4: 16 4: 2529 4: 202 4: 58 4: 529 4: 214 4: 224 4: 11001 4: 13 4: 11367 4: 471 4: 11 4: 15 4: 41 4: 151 4: 210 4: 81001 4: 13 4: 24 4: 311 4: 25 4: 101 4: 18 4: 64 4: 610 4: 110 4: 205 4: 101 4: 24 4: 110 4: 54 4: 12 4: 17 4: 261 4: 21001 4: 11 4: 91 4: 21 4: 213 4: 41 4: 11 4: 11 4: 1834 4: 691 4: 11 4: 32 4: 25 4: 32 4: 11 4: 31001 4: 13 4: 78 4: 31001 4: 18 4: 1711 4: 171001 4: 14 4: 28 4: 271 4: 31 4: 11 4: 12 4: 162 4: 172 4: 11001 4: 31 4: 110 4: 261 4: 224 4: 123 4: 14 4: 11 4: 150 4: 82 4: 11 4: 110 4: 581 4: 21 4: 32 4: 51 4: 1110 4: 71 4: 25 4: 79124 4: 714 4: 102 4: 101 4: 139 4: 402 4: 1225 4: 351 4: 120 4: 61 4: 19 4: 41001 4: 11001 4: 15 4: 237 4: 93 4: 52 4: 92 4: 62 4: 26 4: 151 4: 22 4: 93 4: 25 4: 113 4: 242 4: 1056 4: 161 4: 126 4: 64 4: 138 4: 23 4: 47 4: 101 4: 21 4: 24 4: 63 4: 51 4: 112 4: 19 4: 426 4: 556 4: 261001 4: 13 4: 11001 4: 11 4: 110 4: 99 4: 33 4: 21 4: 34 4: 18142 4: 61 4: 12 4: 22 4: 48 4: 1516 4: 216 4: 465 4: 341 4: 11 4: 11 4: 847 4: 91 4: 61 4: 11 4: 11 4: 161 4: 41 4: 53 4: 12 4: 16 4: 51 4: 21 4: 101 4: 18 4: 41 4: 46 4: 803 4: 12 4: 11 4: 13 4: 61 4: 12 4: 33 4: 21 4: 16 4: 572 4: 381 4: 421001 4: 16 4: 518 4: 323 4: 221 4: 124 4: 83 4: 34 4: 61 4: 26 4: 63 4: 358 4: 54 4: 1711 4: 1818 4: 41 4: 118 4: 53 4: 16 4: 26 4: 21 4: 11 4: 51 4: 343 4: 82 4: 11001 4: 11 4: 101 4: 12 4: 1112 4: 38 4: 22158 4: 208 4: 41 4: 18 4: 2323 4: 151 4: 61001 4: 26 4: 41 4: 12 4: 12 4: 158 4: 61252 4: 683 4: 491 4: 13 4: 1294 4: 11 4: 136 4: 101 4: 12 4: 133 4: 35 4: 158 4: 1910 4: 131 4: 121 4: 128 4: 75 4: 17 4: 810 4: 135 4: 14 4: 366 4: 25 4: 1129 4: 173 4: 43 4: 22 4: 34 4: 1310 4: 16 4: 142 4: 128 4: 107 4: 583 4: 29 4: 42 4: 246 4: 132 4: 93 4: 2122 4: 65 4: 14 4: 414 4: 734 4: 86 4: 58 4: 33 4: 134 4: 83 4: 314 4: 85 4: 4100 4: 3118 4: 176 4: 36 4: 11001 4: 18 4: 46 4: 29 4: 101 4: 125 4: 53181 4: 3031 4: 61 4: 162 4: 51 4: 22 4: 23 4: 12 4: 173 4: 63 4: 61 4: 524 4: 1331 4: 101 4: 625 4: 138 4: 126 4: 371 4: 71 4: 84 4: 123 4: 31001 4: 15 4: 255 4: 24 4: 51 4: 71 4: 181 4: 54 4: 154 4: 424 4: 201 4: 11 4: 12 4: 1220 4: 159 4: 21 4: 21 4: 115 4: 52 4: 142 4: 77 4: 410 4: 123 4: 67 4: 132 4: 21001 4: 17 4: 145 4: 23 4: 22 4: 156 4: 203 4: 66 4: 22 4: 28 4: 31 4: 192 4: 16 4: 23 4: 310 4: 86 4: 11 4: 11 4: 246 4: 24 4: 52 4: 91 4: 71 4: 413 4: 88 4: 54 4: 263 4: 118 4: 387 4: 69 4: 112 4: 72 4: 12 4: 11 4: 18 4: 23 4: 45 4: 22 4: 53 4: 196 4: 6189 4: 3046 4: 41 4: 179 4: 93 4: 610 4: 102 4: 71 4: 179 4: 31 4: 21 4: 11 4: 139 4: 11001 4: 11001 4: 11001 4: 11 4: 13 4: 125 4: 965 4: 31 4: 272 4: 23 4: 211 4: 21 4: 92 4: 417 4: 192 4: 17 4: 101 4: 11 4: 14 4: 114 4: 62 4: 12 4: 19 4: 38 4: 21 4: 21 4: 43 4: 13 4: 117 4: 313 4: 31 4: 73 4: 14 4: 42 4: 13 4: 21 4: 261001 4: 17 4: 310 4: 152 4: 82 4: 91 4: 41001 4: 12 4: 68 4: 413 4: 41 4: 71 4: 15 4: 58 4: 41 4: 11 4: 18 4: 22 4: 26 4: 79 4: 135 4: 617 4: 195 4: 413 4: 45 4: 12 4: 11 4: 19 4: 98 4: 41 4: 135 4: 21 4: 12 4: 11 4: 25 4: 102 4: 14 4: 48 4: 49 4: 64 4: 31001 4: 11 4: 45 4: 12 4: 103 4: 11 4: 11 4: 11 4: 15 4: 141 4: 141 4: 24 4: 33 4: 217 4: 327 4: 1104 4: 151 4: 11 4: 11 4: 11 4: 11 4: 151 4: 112 4: 61 4: 51001 4: 13 4: 84 4: 2236 4: 311 4: 21 4: 12 4: 1369 4: 495 4: 1315 4: 351 4: 65 4: 16 4: 73 4: 32 4: 11 4: 25 4: 63 4: 1425 4: 201 4: 21001 4: 22 4: 134 4: 42 4: 45 4: 123 4: 216 4: 41 4: 29 4: 330 4: 211 4: 22 4: 23 4: 2954 4: 122 4: 130 4: 2211 4: 597 4: 21 4: 11 4: 112 4: 407 4: 13 4: 117 4: 75 4: 68 4: 61 4: 11 4: 27 4: 174 4: 171 4: 43 4: 221 4: 114 4: 96 4: 136 4: 23 4: 13 4: 29 4: 81 4: 11 4: 11001 4: 13 4: 11 4: 127 4: 811 4: 31 4: 11 4: 46 4: 209 4: 27 4: 31 4: 23 4: 121 4: 79 4: 95 4: 11 4: 196 4: 45 4: 35 4: 43 4: 111001 4: 64 4: 139 4: 32 4: 16 4: 53 4: 1211 4: 36 4: 612 4: 594 4: 51 4: 362 4: 84 4: 117 4: 117 4: 8123 4: 81 4: 34 4: 335 4: 702 4: 22 4: 12 4: 11 4: 13 4: 32 4: 141 4: 12 4: 81 4: 21 4: 37 4: 92 4: 121 4: 13 4: 989 4: 224 4: 24 4: 51 4: 11 4: 318 4: 3260 4: 6725 4: 341 4: 42 4: 131 4: 78 4: 251 4: 22 4: 63 4: 311 4: 11 4: 174 4: 74 4: 14 4: 71 4: 71 4: 18 4: 31001 4: 11 4: 11001 4: 14 4: 18 4: 41 4: 32 4: 12 4: 181 4: 82 4: 29 4: 18 4: 21001 4: 21 4: 141 4: 154 4: 22 4: 25 4: 28 4: 46 4: 55 4: 51 4: 11 4: 23 4: 12 4: 19 4: 101 4: 42 4: 21 4: 3337 4: 1131 4: 4710 4: 31 4: 11 4: 1917 4: 411 4: 110 4: 42 4: 110 4: 3235 4: 326 4: 82 4: 88 4: 821 4: 13 4: 112 4: 104 4: 139 4: 1264 4: 731 4: 25 4: 723 4: 42 4: 41 4: 99 4: 19 4: 61 4: 157 4: 1299 4: 54 4: 712 4: 355 4: 134 4: 819 4: 1623 4: 189 4: 5132 4: 89 4: 828 4: 271 4: 1163 4: 221 4: 11 4: 210 4: 457 4: 1282 4: 23 4: 222 4: 186 4: 51 4: 11001 4: 14 4: 41001 4: 16 4: 63 4: 125 4: 21 4: 12 4: 12 4: 55 4: 33 4: 11 4: 12 4: 16 4: 41001 4: 13 4: 11001 4: 13 4: 32 4: 210 4: 342 4: 423 4: 152 4: 32 4: 15 4: 148 4: 141 4: 72 4: 101 4: 595 4: 63 4: 15 4: 71 4: 112 4: 23 4: 257 4: 1301 4: 83 4: 93 4: 11 4: 28 4: 31 4: 83 4: 11 4: 41 4: 41 4: 11 4: 11001 4: 12 4: 152 4: 424 4: 212 4: 31 4: 183 4: 51 4: 14 4: 11001 4: 11 4: 12 4: 17 4: 65 4: 54 4: 1819 4: 512 4: 3417 4: 13242 4: 485 4: 61 4: 11 4: 11 4: 11 4: 16 4: 21 4: 12 4: 18 4: 14 4: 102 4: 14 4: 101 4: 11 4: 111 4: 63 4: 41 4: 22 4: 21 4: 21 4: 21 4: 11 4: 199 4: 54 4: 221 4: 13 4: 17 4: 41 4: 15 4: 111 4: 54 4: 220 4: 161 4: 31 4: 66 4: 455 4: 116 4: 855 4: 49 4: 145 4: 123 4: 31 4: 143 4: 12 4: 11 4: 63 4: 1324 4: 7727 4: 916 4: 333 4: 32 4: 12 4: 11 4: 44 4: 165 4: 41 4: 110 4: 92 4: 31 4: 224 4: 32 4: 102 4: 121 4: 1110 4: 424 4: 38 4: 31 4: 19 4: 41001 4: 13 4: 17 4: 461 4: 23 4: 61 4: 1822 4: 43 4: 33 4: 174 4: 31 4: 11 4: 56 4: 143 4: 181 4: 361 4: 11001 4: 17 4: 41 4: 13 4: 166 4: 239 4: 232 4: 11 4: 21 4: 321 4: 11 4: 12 4: 410 4: 32 4: 7132 4: 193 4: 658 4: 141 4: 231 4: 41 4: 15 4: 5119 4: 173 4: 81 4: 11 4: 11 4: 41 4: 12 4: 21 4: 11 4: 12 4: 61 4: 21 4: 12 4: 11 4: 33 4: 35 4: 2148 4: 473 4: 32 4: 115 4: 712 4: 101 4: 69 4: 113 4: 161 4: 42 4: 11 4: 512 4: 256 4: 22 4: 36 4: 327 4: 86 4: 29 4: 41001 4: 14 4: 33 4: 21 4: 11001 4: 31 4: 32 4: 84 4: 1723 4: 171 4: 203 4: 61 4: 110 4: 11 4: 15 4: 21 4: 144 4: 142 4: 26 4: 64 4: 13 4: 21 4: 115 4: 488 4: 595 4: 81 4: 24 4: 71 4: 49 4: 41001 4: 21 4: 22 4: 41 4: 24 4: 214 4: 41001 4: 14 4: 26 4: 111 4: 33 4: 12 4: 12 4: 13 4: 52 4: 37 4: 43 4: 144 4: 205 4: 81 4: 91 4: 57 4: 610 4: 147 4: 14 4: 16 4: 123 4: 1321 4: 21 4: 16 4: 667 4: 6315 4: 2611 4: 51001 4: 13 4: 34 4: 1836 4: 713 4: 12 4: 31001 4: 12 4: 114 4: 63 4: 97 4: 211 4: 11 4: 48 4: 71 4: 12 4: 22 4: 12 4: 410 4: 352 4: 127 4: 16 4: 51 4: 21 4: 228 4: 535 4: 13 4: 12 4: 615 4: 102 4: 174 4: 39 4: 108 4: 21 4: 21 4: 347 4: 191 4: 32 4: 22 4: 13 4: 182 4: 11 4: 11 4: 327 4: 74 4: 21 4: 123 4: 188 4: 65 4: 72 4: 22 4: 142 4: 47 4: 14 4: 43 4: 820 4: 51 4: 1123 4: 81 4: 81 4: 711 4: 21 4: 321 4: 824 4: 41 4: 14 4: 41 4: 27 4: 34 4: 41 4: 28 4: 920 4: 22 4: 429 4: 310 4: 23 4: 152 4: 119 4: 32 4: 41 4: 31 4: 21 4: 14 4: 25 4: 1816 4: 105 4: 51 4: 110 4: 11 4: 45 4: 89 4: 11 4: 21 4: 330 4: 163 4: 103 4: 23 4: 14 4: 31 4: 410 4: 2022 4: 81 4: 11 4: 12 4: 315 4: 6010 4: 16 4: 2311 4: 51 4: 62 4: 97 4: 211 4: 41 4: 344 4: 235 4: 23 4: 11001 4: 14 4: 25 4: 91001 4: 19 4: 1722 4: 501 4: 12 4: 11 4: 11 4: 93 4: 129 4: 548 4: 121 4: 57 4: 65 4: 73 4: 24 4: 48 4: 31001 4: 11001 4: 11 4: 39 4: 335 4: 4128 4: 501 4: 110 4: 221 4: 241 4: 17 4: 11 4: 1529 4: 193 4: 193 4: 16 4: 152 4: 81 4: 11 4: 17 4: 57 4: 210 4: 156 4: 161 4: 11 4: 131 4: 13 4: 31 4: 51 4: 318 4: 620 4: 32 4: 41 4: 18 4: 81 4: 12 4: 729 4: 133 4: 12 4: 237 4: 721001 4: 114 4: 51 4: 13 4: 52 4: 229 4: 1332 4: 1420 4: 59 4: 51 4: 515 4: 351 4: 12 4: 11 4: 22 4: 83 4: 12 4: 1713 4: 212 4: 82 4: 714 4: 115 4: 48 4: 392 4: 22 4: 139 4: 87 4: 16 4: 103 4: 24 4: 83 4: 83 4: 37 4: 34 4: 224 4: 71 4: 12 4: 43 4: 53 4: 141 4: 11 4: 23 4: 21 4: 11 4: 41003 4: 52 4: 17 4: 337 4: 312 4: 12 4: 14 4: 21 4: 12 4: 18 4: 21 4: 21 4: 4413 4: 141 4: 36 4: 162 4: 43 4: 210 4: 104 4: 33 4: 1416 4: 1467 4: 743 4: 11 4: 11 4: 13 4: 81 4: 18 4: 21 4: 28 4: 31 4: 22 4: 51 4: 12 4: 21 4: 29 4: 1116 4: 47 4: 151 4: 515 4: 23 4: 12 4: 72 4: 228 4: 55 4: 39 4: 14 4: 31001 4: 110 4: 345 4: 101 4: 12 4: 35 4: 106 4: 21 4: 18 4: 177 4: 71001 4: 19 4: 1233 4: 361 4: 1101 4: 72 4: 218 4: 66 4: 51 4: 15 4: 53 4: 49 4: 11 4: 41 4: 22 4: 94 4: 293 4: 71001 4: 13 4: 344 4: 263 4: 1823 4: 161 4: 15 4: 207 4: 151 4: 35 4: 1510 4: 87 4: 14 4: 121 4: 1910 4: 21 4: 12 4: 248 4: 33 4: 911 4: 2317 4: 113 4: 15 4: 710 4: 22 4: 1161 4: 121 4: 36 4: 12 4: 29 4: 214 4: 102 4: 227 4: 313 4: 78 4: 216 4: 38 4: 23 4: 11 4: 11001 4: 11001 4: 17 4: 11001 4: 14 4: 111 4: 132 4: 26 4: 113 4: 85 4: 202 4: 183 4: 159 4: 31 4: 51 4: 63 4: 181 4: 19 4: 219 4: 61 4: 13 4: 91 4: 19 4: 18 4: 64 4: 32 4: 21 4: 816 4: 83 4: 61 4: 31 4: 86 4: 52 4: 76 4: 122 4: 51 4: 62 4: 64 4: 21 4: 24 4: 11 4: 14 4: 32 4: 55 4: 510 4: 21 4: 16 4: 23 4: 31 4: 510 4: 37 4: 38 4: 42 4: 25 4: 462 4: 261 4: 2216 4: 520 4: 1538 4: 731 4: 114 4: 91 4: 1414 4: 214 4: 29 4: 409 4: 43 4: 53 4: 11 4: 114 4: 221 4: 11001 4: 12 4: 614 4: 51 4: 57 4: 21 4: 31 4: 323 4: 202 4: 31 4: 34 4: 56 4: 148 4: 617 4: 73 4: 41 4: 12 4: 21 4: 122 4: 37 4: 21 4: 15 4: 236 4: 11 4: 23 4: 41001 4: 18 4: 610 4: 602 4: 21 4: 148 4: 141 4: 431 4: 19 4: 243 4: 135 4: 374 4: 614 4: 199 4: 253 4: 213 4: 1434 4: 511 4: 171 4: 61 4: 41 4: 124 4: 64 4: 710 4: 52 4: 12 4: 16 4: 34 4: 87 4: 115 4: 111 4: 11 4: 17 4: 121 4: 1526 4: 52 4: 34 4: 41 4: 12 4: 91 4: 14 4: 11 4: 121 4: 113 4: 81001 4: 1104 4: 161 4: 12 4: 110 4: 1610 4: 1532 4: 481 4: 85 4: 103 4: 110 4: 71 4: 17 4: 187 4: 69 4: 158 4: 151 4: 12 4: 23 4: 13 4: 62 4: 33 4: 11 4: 544 4: 99 4: 31 4: 1812 4: 189 4: 216 4: 114 4: 51 4: 13 4: 21001 4: 11 4: 17 4: 72 4: 12 4: 111 4: 6243 4: 491 4: 21 4: 13 4: 13 4: 27 4: 173 4: 77 4: 241 4: 18 4: 55 4: 23 4: 316 4: 112 4: 312 4: 52 4: 22 4: 49 4: 313 4: 61 4: 110 4: 14 4: 17 4: 1546 4: 133 4: 19 4: 32 4: 112 4: 231 4: 19 4: 24 4: 132 4: 34 4: 114 4: 218 4: 28416 4: 2217 4: 81001 4: 14 4: 24 4: 86 4: 12 4: 22 4: 71 4: 1107 4: 281 4: 116 4: 82 4: 21 4: 23 4: 51 4: 215 4: 41 4: 49 4: 45 4: 122 4: 161 4: 1107 4: 292 4: 18 4: 104 4: 13 4: 313 4: 193 4: 42 4: 151 4: 81 4: 11 4: 12 4: 14 4: 1025 4: 192 4: 210 4: 91 4: 51 4: 49 4: 123 4: 18 4: 41 4: 13 4: 16 4: 610 4: 58 4: 1660 4: 10106 4: 1710 4: 33 4: 331 4: 11 4: 11 4: 21 4: 111 4: 362 4: 31 4: 114 4: 172 4: 14 4: 17 4: 22 4: 12 4: 41 4: 219 4: 254 4: 411 4: 31 4: 24 4: 321 4: 51 4: 11001 4: 125 4: 138 4: 62 4: 12 4: 11 4: 66 4: 12 4: 94 4: 11 4: 102 4: 103 4: 562 4: 247 4: 71 4: 21 4: 135 4: 98 4: 242 4: 11 4: 12 4: 16 4: 161 4: 21 4: 14 4: 11 4: 11 4: 13 4: 1112 4: 249 4: 11001 4: 11 4: 87 4: 213 4: 83 4: 33 4: 24 4: 13 4: 22 4: 287 4: 739 4: 168 4: 12 4: 76 4: 49 4: 1570 4: 688 4: 622 4: 21 4: 11 4: 262 4: 55 4: 52 4: 223 4: 302 4: 23 4: 239 4: 3811 4: 2719 4: 364 4: 33 4: 51 4: 38 4: 74 4: 13 4: 27 4: 171 4: 111 4: 122 4: 11 4: 22 4: 139 4: 327 4: 358 4: 173 4: 22 4: 12 4: 13 4: 21 4: 42 4: 11 4: 12 4: 8119 4: 810 4: 11 4: 11 4: 11 4: 310 4: 11 4: 12 4: 569 4: 161 4: 49 4: 21 4: 21 4: 110 4: 82 4: 423 4: 115 4: 93 4: 198 4: 214 4: 12 4: 217 4: 104 4: 150 4: 131 4: 112 4: 33 4: 141 4: 1210 4: 2191 4: 31 4: 11 4: 61 4: 11 4: 21001 4: 19 4: 122 4: 2738 4: 1357 4: 213 4: 63 4: 12 4: 26 4: 14 4: 22 4: 19 4: 66 4: 39 4: 1814 4: 622 4: 1111 4: 184 4: 28 4: 16 4: 11 4: 11 4: 35 4: 41 4: 11 4: 55 4: 567 4: 351 4: 101 4: 5010 4: 131 4: 11 4: 167 4: 3618 4: 51 4: 254 4: 131001 4: 21 4: 171 4: 121 4: 11 4: 71 4: 133 4: 61 4: 25 4: 115 4: 16 4: 1113 4: 11001 4: 19 4: 51 4: 491001 4: 25 4: 11 4: 11 4: 18 4: 77 4: 81 4: 9147 4: 218 4: 72 4: 21 4: 39 4: 76 4: 365 4: 111 4: 115 4: 632 4: 31 4: 11001 4: 110 4: 63 4: 32 4: 11 4: 21 4: 11 4: 11 4: 118 4: 68 4: 114 4: 102 4: 72 4: 23 4: 1212 4: 73 4: 32 4: 1140 4: 3924 4: 281 4: 187 4: 14 4: 916 4: 643 4: 1263 4: 862 4: 45 4: 451 4: 13 4: 28 4: 41 4: 14 4: 35 4: 21 4: 12 4: 125 4: 310 4: 73 4: 21 4: 11 4: 11 4: 13 4: 43 4: 26 4: 31 4: 213 4: 194 4: 58 4: 516 4: 42 4: 217 4: 151 4: 26 4: 52 4: 43 4: 811 4: 121 4: 23 4: 11 4: 32 4: 1873 4: 1853 4: 161 4: 13 4: 71 4: 51 4: 12 4: 44 4: 21 4: 1070 4: 643 4: 18 4: 181 4: 51 4: 11001 4: 19 4: 818 4: 410 4: 21001 4: 111 4: 244 4: 342 4: 48 4: 202 4: 22 4: 12 4: 11 4: 12 4: 15 4: 191 4: 21001 4: 21 4: 2191 4: 30610 4: 31 4: 121001 4: 11 4: 12 4: 31 4: 181 4: 124 4: 191 4: 4327 4: 1430 4: 142 4: 13 4: 223 4: 234 4: 190 4: 232 4: 12 4: 142 4: 11 4: 715 4: 171 4: 13 4: 31 4: 14 4: 277 4: 32 4: 93 4: 11 4: 139 4: 33 4: 31 4: 189 4: 41 4: 310 4: 11001 4: 110 4: 535 4: 136 4: 81 4: 11 4: 22 4: 8132 4: 1123 4: 204 4: 370 4: 31 4: 113 4: 42 4: 274 4: 193 4: 34 4: 51 4: 19 4: 23 4: 31 4: 12 4: 2172 4: 213 4: 47 4: 91 4: 21 4: 263 4: 110 4: 11 4: 21 4: 213 4: 55 4: 110 4: 72 4: 26 4: 32 4: 113 4: 82 4: 212 4: 371 4: 85 4: 47 4: 312 4: 121 4: 15 4: 72 4: 143 4: 53 4: 218 4: 231001 4: 11 4: 110 4: 48 4: 252 4: 24 4: 41001 4: 22 4: 34 4: 23 4: 12 4: 21 4: 12 4: 61 4: 19 4: 252 4: 441 4: 12 4: 14 4: 14 4: 14 4: 191 4: 441 4: 35 4: 15 4: 312 4: 132 4: 71 4: 29 4: 3199 4: 3075 4: 91 4: 171 4: 12 4: 11 4: 53 4: 155 4: 21001 4: 12 4: 172 4: 21 4: 33 4: 223 4: 26 4: 21 4: 12 4: 13 4: 81 4: 25 4: 22 4: 61 4: 12 4: 462 4: 23 4: 46 4: 11 4: 213 4: 74 4: 113 4: 26 4: 122 4: 11001 4: 17 4: 33 4: 3188 4: 552 4: 13 4: 15 4: 13 4: 42 4: 15 4: 27 4: 131 4: 152 4: 91 4: 279 4: 206 4: 151 4: 21 4: 31001 4: 110 4: 181 4: 11 4: 271 4: 124 4: 101 4: 13 4: 32 4: 24 4: 281 4: 41 4: 17 4: 564 4: 232 4: 11 4: 117 4: 251 4: 1202 4: 173 4: 41 4: 12 4: 241 4: 13 4: 22 4: 22 4: 161 4: 32 4: 294 4: 21 4: 12 4: 12 4: 476 4: 1199 4: 7814 4: 188 4: 21001 4: 17 4: 42 4: 71 4: 325 4: 201 4: 11 4: 11 4: 2134 4: 1227 4: 151 4: 11 4: 22 4: 329 4: 52 4: 62 4: 101 4: 21 4: 11 4: 16 4: 41 4: 12 4: 16 4: 33 4: 31 4: 74 4: 950 4: 74 4: 118 4: 61 4: 602 4: 34 4: 31 4: 425 4: 312 4: 47 4: 318 4: 72 4: 11 4: 19 4: 11 4: 11 4: 14 4: 42 4: 316 4: 611 4: 101 4: 11 4: 33 4: 62 4: 14 4: 23 4: 113 4: 110 4: 84 4: 11001 4: 11 4: 1613 4: 38 4: 171 4: 6419 4: 2310 4: 414 4: 184 4: 73 4: 195 4: 3149 4: 483 4: 15 4: 351 4: 410 4: 37 4: 32 4: 31 4: 19 4: 52 4: 41 4: 11 4: 18 4: 55 4: 21 4: 13 4: 733 4: 245 4: 14 4: 49 4: 391 4: 1193 4: 1041 4: 11 4: 110 4: 21 4: 11 4: 103 4: 652 4: 16 4: 453 4: 31 4: 15 4: 31 4: 165 4: 54 4: 2410 4: 93 4: 14 4: 251 4: 43 4: 24 4: 192 4: 21 4: 484 4: 461 4: 16 4: 56 4: 61001 4: 110 4: 174 4: 87 4: 31001 4: 11 4: 63 4: 918 4: 374 4: 33 4: 26 4: 143 4: 12 4: 11 4: 13 4: 51 4: 319 4: 21 4: 13 4: 103 4: 1810 4: 261 4: 19 4: 910 4: 273 4: 223 4: 329 4: 51001 4: 11 4: 34 4: 21 4: 122 4: 253 4: 31 4: 21001 4: 11 4: 25 4: 171 4: 1191 4: 571 4: 18 4: 57 4: 44 4: 48 4: 69 4: 181001 4: 21001 4: 22 4: 198 4: 44 4: 815 4: 112 4: 31 4: 720 4: 1820 4: 273 4: 31001 4: 13 4: 153 4: 11 4: 304 4: 51 4: 471 4: 173 4: 14 4: 181 4: 17 4: 21 4: 310 4: 212 4: 82 4: 1626 4: 96 4: 124 4: 164 4: 110 4: 52 4: 154 4: 171001 4: 11 4: 11 4: 73 4: 21 4: 110 4: 72 4: 25 4: 91 4: 31 4: 31 4: 1104 4: 141 4: 215 4: 381 4: 13 4: 23 4: 13 4: 77 4: 61 4: 18 4: 12 4: 512 4: 161 4: 12 4: 61 4: 236 4: 108 4: 1916 4: 126 4: 11 4: 131 4: 67 4: 91 4: 11 4: 11 4: 126 4: 62 4: 281001 4: 11 4: 24 4: 335 4: 221 4: 22 4: 11 4: 12 4: 180 4: 212 4: 12 4: 12 4: 29 4: 61 4: 11 4: 30100 4: 51 4: 58 4: 63 4: 58 4: 115 4: 232 4: 251 4: 82 4: 11 4: 417 4: 154 4: 228 4: 29196 4: 586 4: 261 4: 171 4: 11 4: 11 4: 11 4: 11 4: 26 4: 277 4: 62 4: 11 4: 16 4: 217 4: 131 4: 19 4: 41001 4: 16 4: 73 4: 365 4: 235 4: 211 4: 24 4: 23 4: 102 4: 12 4: 14 4: 33 4: 25 4: 414 4: 512 4: 61 4: 31001 4: 11 4: 231 4: 261 4: 115 4: 405 4: 133 4: 122 4: 53 4: 92 4: 12 4: 34 4: 42 4: 11 4: 11 4: 16 4: 43 4: 111 4: 13 4: 121 4: 44 4: 12 4: 12 4: 82 4: 57 4: 45 4: 234 4: 13 4: 3219 4: 31029 4: 261 4: 98 4: 38 4: 245 4: 81001 4: 11 4: 22 4: 11 4: 21 4: 44 4: 151 4: 92 4: 2118 4: 143 4: 617 4: 420 4: 35 4: 644 4: 145 4: 795 4: 6170 4: 237 4: 56 4: 61 4: 26 4: 32 4: 21 4: 15 4: 710 4: 55 4: 813 4: 145 4: 24 4: 55 4: 29 4: 36 4: 328 4: 152 4: 71 4: 11 4: 47 4: 71 4: 14 4: 110 4: 22 4: 52 4: 16 4: 35 4: 437 4: 111 4: 2111 4: 736 4: 235 4: 51 4: 1198 4: 5916 4: 112 4: 75 4: 105 4: 92 4: 161 4: 461 4: 317 4: 141 4: 2248 4: 351 4: 11 4: 13 4: 619 4: 36 4: 51 4: 14 4: 79 4: 76 4: 61 4: 12 4: 91 4: 186 4: 71 4: 12 4: 1876 4: 6210 4: 714 4: 81 4: 64 4: 13 4: 337 4: 241001 4: 220 4: 261 4: 42 4: 11 4: 29 4: 241 4: 31 4: 110 4: 53 4: 11 4: 13 4: 42 4: 28 4: 332 4: 92 4: 21 4: 17 4: 24 4: 91 4: 12 4: 117 4: 191 4: 11 4: 11 4: 51 4: 12 4: 12197 4: 601 4: 142 4: 15 4: 319 4: 159 4: 26 4: 96 4: 410 4: 101 4: 6115 4: 81 4: 101 4: 138 4: 71001 4: 18 4: 92 4: 11 4: 14 4: 11 4: 14 4: 61 4: 24 4: 52 4: 112 4: 13 4: 21 4: 16 4: 167 4: 1410 4: 32 4: 126 4: 3236 4: 277 4: 171 4: 18 4: 44 4: 26 4: 241 4: 36 4: 12 4: 74 4: 257 4: 116 4: 76 4: 11 4: 111 4: 201 4: 41 4: 12 4: 531 4: 93 4: 11 4: 23 4: 32 4: 24 4: 43 4: 34 4: 310 4: 52 4: 41 4: 11 4: 438 4: 2510 4: 34 4: 81 4: 12 4: 14 4: 13 4: 291 4: 17 4: 206 4: 710 4: 142 4: 41001 4: 25 4: 93 4: 21 4: 182 4: 211 4: 5119 4: 92 4: 13 4: 11 4: 61 4: 61 4: 157 4: 181 4: 137 4: 211 4: 204 4: 44 4: 31 4: 22 4: 81 4: 210 4: 61001 4: 11 4: 11001 4: 14 4: 37 4: 11001 4: 12 4: 91 4: 71 4: 536 4: 112 4: 11 4: 61 4: 11001 4: 21 4: 32 4: 17 4: 44 4: 24 4: 31 4: 18 4: 311 4: 11 4: 43 4: 14 4: 637 4: 284 4: 43 4: 43 4: 530 4: 3012 4: 91 4: 715 4: 191 4: 210 4: 95 4: 242 4: 21 4: 11001 4: 26 4: 21 4: 11 4: 52 4: 55 4: 91 4: 12 4: 18 4: 471 4: 31 4: 45 4: 21 4: 11 4: 51001 4: 15 4: 31 4: 11 4: 12 4: 334 4: 76 4: 314 4: 26 4: 24 4: 51 4: 11 4: 11 4: 81 4: 11 4: 120 4: 45 4: 23 4: 24 4: 51 4: 536 4: 164 4: 910 4: 23 4: 17 4: 33 4: 212 4: 33 4: 21 4: 16 4: 82 4: 38 4: 25 4: 41 4: 11 4: 15 4: 42 4: 25 4: 31 4: 44 4: 35 4: 51001 4: 11 4: 33 4: 101 4: 515 4: 96 4: 123 4: 19 4: 653 4: 105 4: 203 4: 62 4: 32 4: 33 4: 53 4: 12 4: 31001 4: 1118 4: 316 4: 35 4: 21 4: 11 4: 53 4: 77 4: 21 4: 83 4: 61001 4: 13 4: 46 4: 212 4: 369 4: 210 4: 662 4: 21 4: 19 4: 193 4: 142 4: 412 4: 11 4: 11 4: 11 4: 19 4: 13 4: 21 4: 11 4: 120 4: 127 4: 31 4: 110 4: 22 4: 114 4: 161 4: 13 4: 83 4: 11 4: 113 4: 217 4: 65 4: 32 4: 1041 4: 21 4: 47 4: 72 4: 1057 4: 210 4: 221 4: 12 4: 31 4: 61001 4: 11001 4: 11 4: 21 4: 26 4: 35 4: 101 4: 12 4: 61 4: 210 4: 2516 4: 71 4: 13 4: 319 4: 2217 4: 41 4: 120 4: 41 4: 16 4: 41 4: 611 4: 71 4: 1126 4: 265 4: 710 4: 210 4: 631 4: 53 4: 13 4: 62 4: 18 4: 32 4: 37 4: 3216 4: 119 4: 72 4: 31 4: 13 4: 13 4: 92 4: 32 4: 22 4: 5126 4: 273 4: 441 4: 11 4: 23 4: 82 4: 11 4: 11 4: 29 4: 73 4: 21 4: 243 4: 410 4: 23 4: 211 4: 22 4: 141001 4: 11 4: 11 4: 110 4: 117 4: 91 4: 21 4: 12 4: 11 4: 46 4: 75 4: 12 4: 64 4: 18 4: 32 4: 611 4: 52 4: 110 4: 151 4: 32 4: 43 4: 11001 4: 19 4: 1948 4: 146 4: 86 4: 91 4: 712 4: 5820 4: 38 4: 35 4: 22 4: 26 4: 261 4: 27 4: 272 4: 21001 4: 12 4: 31 4: 662 4: 11 4: 716 4: 73 4: 443 4: 91001 4: 13 4: 104 4: 12 4: 2410 4: 503 4: 21 4: 14 4: 102 4: 13 4: 113 4: 1291 4: 256 4: 4138 4: 133 4: 639 4: 71 4: 210 4: 53 4: 39 4: 58 4: 105 4: 191 4: 14 4: 42 4: 12 4: 51 4: 21 4: 25 4: 3619 4: 101 4: 13 4: 55 4: 193 4: 41001 4: 11 4: 11 4: 15 4: 817 4: 65301 4: 496 4: 281 4: 101 4: 41 4: 17 4: 462 4: 13 4: 399 4: 11 4: 66 4: 51 4: 26 4: 52 4: 112 4: 673 4: 12 4: 152 4: 258 4: 106 4: 131 4: 31 4: 13 4: 65 4: 11 4: 110 4: 341 4: 61 4: 11 4: 15 4: 22 4: 11001 4: 18 4: 547 4: 32 4: 291 4: 210 4: 173 4: 121 4: 12 4: 21 4: 11 4: 85 4: 25 4: 11001 4: 11 4: 13 4: 218 4: 668 4: 67 4: 27 4: 251 4: 110 4: 24 4: 2230 4: 1693 4: 261 4: 13 4: 61 4: 320 4: 2920 4: 61001 4: 19 4: 43 4: 310 4: 75 4: 55 4: 14 4: 205 4: 51 4: 15 4: 26 4: 52 4: 282 4: 231 4: 11 4: 11 4: 12 4: 73 4: 71 4: 42 4: 22 4: 11 4: 181 4: 16 4: 11001 4: 117 4: 72 4: 111 4: 131 4: 1320 4: 671 4: 12 4: 24 4: 18 4: 11 4: 15 4: 42 4: 292 4: 305 4: 61 4: 14 4: 38 4: 176 4: 22 4: 21 4: 11 4: 11 4: 16 4: 32 4: 15 4: 134 4: 111 4: 15 4: 63 4: 12 4: 15 4: 618 4: 816 4: 26 4: 11001 4: 22 4: 92 4: 21 4: 23 4: 41 4: 23 4: 21 4: 205 4: 11 4: 18 4: 11 4: 811 4: 21001 4: 29 4: 22 4: 93 4: 33 4: 133 4: 13 4: 439 4: 224 4: 1628 4: 113 4: 381 4: 22 4: 32 4: 11 4: 61 4: 51 4: 144 4: 421 4: 11001 4: 12 4: 315 4: 43 4: 216 4: 111 4: 11 4: 71 4: 13 4: 11 4: 19 4: 4734 4: 51 4: 11 4: 181 4: 673 4: 13 4: 17 4: 231 4: 28 4: 28 4: 732 4: 491 4: 13 4: 22 4: 31 4: 13 4: 519 4: 83 4: 21 4: 16 4: 271 4: 182 4: 496 4: 72 4: 11 4: 43 4: 110 4: 113 4: 1110 4: 119 4: 94 4: 21 4: 53 4: 27 4: 62 4: 62 4: 22 4: 21 4: 11 4: 23 4: 13 4: 91 4: 11001 4: 13 4: 13 4: 32 4: 14 4: 16 4: 21 4: 12 4: 11 4: 15 4: 236 4: 313 4: 671 4: 12 4: 181 4: 11 4: 62 4: 12 4: 112 4: 71001 4: 12 4: 15423 4: 237 4: 131 4: 21 4: 15 4: 221001 4: 188 4: 2422 4: 612 4: 24 4: 1612 4: 23 4: 21 4: 93 4: 31 4: 11 4: 1918 4: 88 4: 454 4: 141 4: 32265 4: 381 4: 14 4: 24 4: 41 4: 14 4: 325 4: 53 4: 38 4: 291 4: 11 4: 310 4: 13 4: 24 4: 8203 4: 3210 4: 44 4: 339 4: 123 4: 118 4: 204 4: 251 4: 44 4: 63 4: 367 4: 242 4: 21001 4: 110 4: 1813 4: 10140 4: 8322 4: 81 4: 16 4: 41 4: 139 4: 743 4: 34 4: 81001 4: 132 4: 342 4: 72 4: 21 4: 86 4: 82 4: 135 4: 2829 4: 161 4: 29 4: 33 4: 34 4: 210 4: 162 4: 11 4: 14 4: 17 4: 21 4: 37 4: 255 4: 331 4: 229 4: 13 4: 11 4: 15 4: 32 4: 31001 4: 11 4: 213 4: 34 4: 13 4: 33 4: 61 4: 118 4: 950 4: 243 4: 310 4: 247 4: 39 4: 111 4: 17 4: 212 4: 203 4: 32 4: 91 4: 11 4: 14 4: 52 4: 53 4: 47 4: 2117 4: 103 4: 23 4: 221 4: 11 4: 162 4: 293 4: 261 4: 1114 4: 63 4: 233 4: 711 4: 121 4: 12 4: 1653 4: 161001 4: 21 4: 13 4: 51 4: 12 4: 101 4: 51 4: 115 4: 34106 4: 182 4: 22 4: 31 4: 21 4: 710 4: 511 4: 219 4: 61 4: 18 4: 51 4: 31001 4: 11 4: 114 4: 241 4: 15 4: 11 4: 122 4: 2210 4: 13 4: 191 4: 79 4: 120 4: 91 4: 84 4: 22 4: 61 4: 272 4: 920 4: 318 4: 27 4: 810 4: 42 4: 21 4: 31 4: 22 4: 244 4: 95 4: 402 4: 13 4: 21 4: 16 4: 21 4: 31001 4: 141 4: 148 4: 61 4: 11 4: 34 4: 611 4: 121 4: 111 4: 746 4: 431001 4: 11 4: 12 4: 14 4: 24 4: 166 4: 76 4: 5108 4: 6799 4: 271 4: 17 4: 105 4: 232 4: 21 4: 57 4: 118 4: 261001 4: 11 4: 11 4: 23 4: 26 4: 53 4: 22 4: 242 4: 246 4: 68 4: 26 4: 331 4: 213 4: 31 4: 227 4: 610 4: 220 4: 102 4: 13 4: 34 4: 410 4: 52 4: 57 4: 12 4: 11 4: 67 4: 35 4: 13 4: 31 4: 15 4: 51 4: 110 4: 51 4: 13 4: 13 4: 224 4: 66 4: 21 4: 12 4: 124 4: 142 4: 65 4: 37 4: 110 4: 1840 4: 758 4: 65 4: 32 4: 13 4: 16 4: 31 4: 64 4: 1230 4: 41 4: 16 4: 51 4: 138 4: 272 4: 326 4: 212 4: 269 4: 25233 4: 1493 4: 21 4: 11 4: 9816 4: 41 4: 11 4: 19 4: 880 4: 203 4: 1316 4: 1519 4: 1310 4: 198 4: 52 4: 231 4: 11 4: 11 4: 11001 4: 12 4: 184 4: 64 4: 33 4: 211 4: 273 4: 29 4: 12 4: 14 4: 44 4: 13 4: 143 4: 154 4: 11 4: 11 4: 41 4: 13 4: 51 4: 110 4: 77 4: 37 4: 13 4: 11 4: 53 4: 12 4: 281 4: 18 4: 113 4: 54 4: 42 4: 21 4: 15 4: 201 4: 110 4: 25 4: 17 4: 84 4: 34 4: 21 4: 5710 4: 264 4: 11 4: 33 4: 23 4: 41 4: 15 4: 44 4: 21 4: 53 4: 230 4: 1310 4: 188 4: 21 4: 46 4: 191 4: 17 4: 182 4: 22 4: 2102 4: 291 4: 177 4: 72 4: 79 4: 472 4: 27 4: 44 4: 11001 4: 16 4: 93 4: 123 4: 11 4: 172 4: 29 4: 14 4: 133 4: 198 4: 144 4: 201 4: 11 4: 135 4: 63 4: 16 4: 45 4: 142 4: 37247 4: 102 4: 23 4: 22 4: 210 4: 118 4: 91 4: 92 4: 13 4: 5840 4: 321 4: 11 4: 155 4: 362 4: 92 4: 22 4: 27 4: 107 4: 39 4: 410 4: 34 4: 112 4: 610 4: 143 4: 24 4: 24 4: 15 4: 28 4: 281 4: 18 4: 291001 4: 1206 4: 6212 4: 5375 4: 403 4: 11140 4: 144 4: 11 4: 61001 4: 116/03/04 12:59:26 INFO Executor: Finished task 0.0 in stage 2.0 (TID 2). 2044 bytes result sent to driver16/03/04 12:59:26 INFO TaskSetManager: Finished task 0.0 in stage 2.0 (TID 2) in 291 ms on localhost (1/1)16/03/04 12:59:26 INFO TaskSchedulerImpl: Removed TaskSet 2.0, whose tasks have all completed, from pool 16/03/04 12:59:26 INFO DAGScheduler: ResultStage 2 (foreach at testFile.scala:26) finished in 0.299 s16/03/04 12:59:26 INFO DAGScheduler: Job 2 finished: foreach at testFile.scala:26, took 0.770967 s16/03/04 12:59:26 INFO SparkContext: Starting job: count at testFile.scala:3516/03/04 12:59:26 INFO DAGScheduler: Got job 3 (count at testFile.scala:35) with 1 output partitions16/03/04 12:59:26 INFO DAGScheduler: Final stage: ResultStage 3(count at testFile.scala:35)16/03/04 12:59:26 INFO DAGScheduler: Parents of final stage: List()16/03/04 12:59:26 INFO DAGScheduler: Missing parents: List()16/03/04 12:59:26 INFO DAGScheduler: Submitting ResultStage 3 (MapPartitionsRDD[5] at filter at testFile.scala:30), which has no missing parents16/03/04 12:59:26 INFO MemoryStore: ensureFreeSpace(3552) called with curMem=187044, maxMem=76607520716/03/04 12:59:26 INFO MemoryStore: Block broadcast_4 stored as values in memory (estimated size 3.5 KB, free 730.4 MB)16/03/04 12:59:26 INFO MemoryStore: ensureFreeSpace(1970) called with curMem=190596, maxMem=76607520716/03/04 12:59:26 INFO MemoryStore: Block broadcast_4_piece0 stored as bytes in memory (estimated size 1970.0 B, free 730.4 MB)16/03/04 12:59:26 INFO BlockManagerInfo: Added broadcast_4_piece0 in memory on localhost:51558 (size: 1970.0 B, free: 730.6 MB)16/03/04 12:59:26 INFO SparkContext: Created broadcast 4 from broadcast at DAGScheduler.scala:86116/03/04 12:59:26 INFO DAGScheduler: Submitting 1 missing tasks from ResultStage 3 (MapPartitionsRDD[5] at filter at testFile.scala:30)16/03/04 12:59:26 INFO TaskSchedulerImpl: Adding task set 3.0 with 1 tasks16/03/04 12:59:26 INFO TaskSetManager: Starting task 0.0 in stage 3.0 (TID 3, localhost, ANY, 2154 bytes)16/03/04 12:59:26 INFO Executor: Running task 0.0 in stage 3.0 (TID 3)16/03/04 12:59:26 INFO HadoopRDD: Input split: hdfs://Master:9000/input/SogouQ.mini:0+89823516/03/04 12:59:26 INFO Executor: Finished task 0.0 in stage 3.0 (TID 3). 2082 bytes result sent to driverf3 count:131316/03/04 12:59:26 INFO TaskSetManager: Finished task 0.0 in stage 3.0 (TID 3) in 118 ms on localhost (1/1)16/03/04 12:59:26 INFO DAGScheduler: ResultStage 3 (count at testFile.scala:35) finished in 0.118 s16/03/04 12:59:26 INFO TaskSchedulerImpl: Removed TaskSet 3.0, whose tasks have all completed, from pool 16/03/04 12:59:26 INFO DAGScheduler: Job 3 finished: count at testFile.scala:35, took 0.130938 s16/03/04 12:59:26 INFO SparkContext: Starting job: count at testFile.scala:3816/03/04 12:59:26 INFO DAGScheduler: Registering RDD 6 (map at testFile.scala:33)16/03/04 12:59:26 INFO DAGScheduler: Registering RDD 8 (map at testFile.scala:33)16/03/04 12:59:26 INFO DAGScheduler: Got job 4 (count at testFile.scala:38) with 1 output partitions16/03/04 12:59:26 INFO DAGScheduler: Final stage: ResultStage 6(count at testFile.scala:38)16/03/04 12:59:26 INFO DAGScheduler: Parents of final stage: List(ShuffleMapStage 5)16/03/04 12:59:26 INFO DAGScheduler: Missing parents: List(ShuffleMapStage 5)16/03/04 12:59:26 INFO DAGScheduler: Submitting ShuffleMapStage 4 (MapPartitionsRDD[6] at map at testFile.scala:33), which has no missing parents16/03/04 12:59:26 INFO MemoryStore: ensureFreeSpace(4416) called with curMem=192566, maxMem=76607520716/03/04 12:59:26 INFO MemoryStore: Block broadcast_5 stored as values in memory (estimated size 4.3 KB, free 730.4 MB)16/03/04 12:59:26 INFO MemoryStore: ensureFreeSpace(2380) called with curMem=196982, maxMem=76607520716/03/04 12:59:26 INFO MemoryStore: Block broadcast_5_piece0 stored as bytes in memory (estimated size 2.3 KB, free 730.4 MB)16/03/04 12:59:26 INFO BlockManagerInfo: Added broadcast_5_piece0 in memory on localhost:51558 (size: 2.3 KB, free: 730.6 MB)16/03/04 12:59:26 INFO SparkContext: Created broadcast 5 from broadcast at DAGScheduler.scala:86116/03/04 12:59:26 INFO DAGScheduler: Submitting 1 missing tasks from ShuffleMapStage 4 (MapPartitionsRDD[6] at map at testFile.scala:33)16/03/04 12:59:26 INFO TaskSchedulerImpl: Adding task set 4.0 with 1 tasks16/03/04 12:59:26 INFO TaskSetManager: Starting task 0.0 in stage 4.0 (TID 4, localhost, ANY, 2143 bytes)16/03/04 12:59:26 INFO Executor: Running task 0.0 in stage 4.0 (TID 4)16/03/04 12:59:26 INFO BlockManagerInfo: Removed broadcast_2_piece0 on localhost:51558 in memory (size: 1936.0 B, free: 730.6 MB)16/03/04 12:59:26 INFO BlockManagerInfo: Removed broadcast_4_piece0 on localhost:51558 in memory (size: 1970.0 B, free: 730.6 MB)16/03/04 12:59:26 INFO ContextCleaner: Cleaned accumulator 416/03/04 12:59:26 INFO HadoopRDD: Input split: hdfs://Master:9000/input/SogouQ.mini:0+89823516/03/04 12:59:26 INFO BlockManagerInfo: Removed broadcast_3_piece0 on localhost:51558 in memory (size: 1959.0 B, free: 730.6 MB)16/03/04 12:59:26 INFO ContextCleaner: Cleaned accumulator 316/03/04 12:59:26 INFO ContextCleaner: Cleaned accumulator 216/03/04 12:59:27 INFO Executor: Finished task 0.0 in stage 4.0 (TID 4). 2253 bytes result sent to driver16/03/04 12:59:27 INFO TaskSetManager: Finished task 0.0 in stage 4.0 (TID 4) in 496 ms on localhost (1/1)16/03/04 12:59:27 INFO TaskSchedulerImpl: Removed TaskSet 4.0, whose tasks have all completed, from pool 16/03/04 12:59:27 INFO DAGScheduler: ShuffleMapStage 4 (map at testFile.scala:33) finished in 0.497 s16/03/04 12:59:27 INFO DAGScheduler: looking for newly runnable stages16/03/04 12:59:27 INFO DAGScheduler: running: Set()16/03/04 12:59:27 INFO DAGScheduler: waiting: Set(ShuffleMapStage 5, ResultStage 6)16/03/04 12:59:27 INFO DAGScheduler: failed: Set()16/03/04 12:59:27 INFO DAGScheduler: Missing parents for ShuffleMapStage 5: List()16/03/04 12:59:27 INFO DAGScheduler: Missing parents for ResultStage 6: List(ShuffleMapStage 5)16/03/04 12:59:27 INFO DAGScheduler: Submitting ShuffleMapStage 5 (MapPartitionsRDD[8] at map at testFile.scala:33), which is now runnable16/03/04 12:59:27 INFO MemoryStore: ensureFreeSpace(3160) called with curMem=183169, maxMem=76607520716/03/04 12:59:27 INFO MemoryStore: Block broadcast_6 stored as values in memory (estimated size 3.1 KB, free 730.4 MB)16/03/04 12:59:27 INFO MemoryStore: ensureFreeSpace(1844) called with curMem=186329, maxMem=76607520716/03/04 12:59:27 INFO MemoryStore: Block broadcast_6_piece0 stored as bytes in memory (estimated size 1844.0 B, free 730.4 MB)16/03/04 12:59:27 INFO BlockManagerInfo: Added broadcast_6_piece0 in memory on localhost:51558 (size: 1844.0 B, free: 730.6 MB)16/03/04 12:59:27 INFO SparkContext: Created broadcast 6 from broadcast at DAGScheduler.scala:86116/03/04 12:59:27 INFO DAGScheduler: Submitting 1 missing tasks from ShuffleMapStage 5 (MapPartitionsRDD[8] at map at testFile.scala:33)16/03/04 12:59:27 INFO TaskSchedulerImpl: Adding task set 5.0 with 1 tasks16/03/04 12:59:27 INFO TaskSetManager: Starting task 0.0 in stage 5.0 (TID 5, localhost, PROCESS_LOCAL, 1890 bytes)16/03/04 12:59:27 INFO Executor: Running task 0.0 in stage 5.0 (TID 5)16/03/04 12:59:27 INFO ShuffleBlockFetcherIterator: Getting 1 non-empty blocks out of 1 blocks16/03/04 12:59:27 INFO ShuffleBlockFetcherIterator: Started 0 remote fetches in 5 ms16/03/04 12:59:27 INFO Executor: Finished task 0.0 in stage 5.0 (TID 5). 1374 bytes result sent to driver16/03/04 12:59:27 INFO TaskSetManager: Finished task 0.0 in stage 5.0 (TID 5) in 200 ms on localhost (1/1)16/03/04 12:59:27 INFO DAGScheduler: ShuffleMapStage 5 (map at testFile.scala:33) finished in 0.200 s16/03/04 12:59:27 INFO DAGScheduler: looking for newly runnable stages16/03/04 12:59:27 INFO DAGScheduler: running: Set()16/03/04 12:59:27 INFO DAGScheduler: waiting: Set(ResultStage 6)16/03/04 12:59:27 INFO DAGScheduler: failed: Set()16/03/04 12:59:27 INFO TaskSchedulerImpl: Removed TaskSet 5.0, whose tasks have all completed, from pool 16/03/04 12:59:27 INFO DAGScheduler: Missing parents for ResultStage 6: List()16/03/04 12:59:27 INFO DAGScheduler: Submitting ResultStage 6 (MapPartitionsRDD[10] at map at testFile.scala:33), which is now runnable16/03/04 12:59:27 INFO MemoryStore: ensureFreeSpace(2880) called with curMem=188173, maxMem=76607520716/03/04 12:59:27 INFO MemoryStore: Block broadcast_7 stored as values in memory (estimated size 2.8 KB, free 730.4 MB)16/03/04 12:59:27 INFO MemoryStore: ensureFreeSpace(1718) called with curMem=191053, maxMem=76607520716/03/04 12:59:27 INFO MemoryStore: Block broadcast_7_piece0 stored as bytes in memory (estimated size 1718.0 B, free 730.4 MB)16/03/04 12:59:27 INFO BlockManagerInfo: Added broadcast_7_piece0 in memory on localhost:51558 (size: 1718.0 B, free: 730.6 MB)16/03/04 12:59:27 INFO SparkContext: Created broadcast 7 from broadcast at DAGScheduler.scala:86116/03/04 12:59:27 INFO DAGScheduler: Submitting 1 missing tasks from ResultStage 6 (MapPartitionsRDD[10] at map at testFile.scala:33)16/03/04 12:59:27 INFO TaskSchedulerImpl: Adding task set 6.0 with 1 tasks16/03/04 12:59:27 INFO TaskSetManager: Starting task 0.0 in stage 6.0 (TID 6, localhost, PROCESS_LOCAL, 1901 bytes)16/03/04 12:59:27 INFO Executor: Running task 0.0 in stage 6.0 (TID 6)16/03/04 12:59:27 INFO ShuffleBlockFetcherIterator: Getting 1 non-empty blocks out of 1 blocks16/03/04 12:59:27 INFO ShuffleBlockFetcherIterator: Started 0 remote fetches in 0 ms16/03/04 12:59:27 INFO Executor: Finished task 0.0 in stage 6.0 (TID 6). 1203 bytes result sent to driver16/03/04 12:59:27 INFO TaskSetManager: Finished task 0.0 in stage 6.0 (TID 6) in 77 ms on localhost (1/1)16/03/04 12:59:27 INFO TaskSchedulerImpl: Removed TaskSet 6.0, whose tasks have all completed, from pool 16/03/04 12:59:27 INFO DAGScheduler: ResultStage 6 (count at testFile.scala:38) finished in 0.078 s16/03/04 12:59:27 INFO DAGScheduler: Job 4 finished: count at testFile.scala:38, took 0.855696 sf4 count:1283(1) MapPartitionsRDD[10] at map at testFile.scala:33 [] |  ShuffledRDD[9] at sortByKey at testFile.scala:33 [] +-(1) MapPartitionsRDD[8] at map at testFile.scala:33 []    |  ShuffledRDD[7] at reduceByKey at testFile.scala:33 []    +-(1) MapPartitionsRDD[6] at map at testFile.scala:33 []       |  MapPartitionsRDD[5] at filter at testFile.scala:30 []       |  MapPartitionsRDD[4] at filter at testFile.scala:30 []       |  MapPartitionsRDD[3] at filter at testFile.scala:23 []       |  MapPartitionsRDD[2] at map at testFile.scala:23 []       |  MapPartitionsRDD[1] at textFile at testFile.scala:19 []       |  hdfs://Master:9000/input/SogouQ.mini HadoopRDD[0] at textFile at testFile.scala:19 []16/03/04 12:59:27 INFO SparkContext: Starting job: saveAsTextFile at testFile.scala:4216/03/04 12:59:27 INFO MapOutputTrackerMaster: Size of output statuses for shuffle 1 is 143 bytes16/03/04 12:59:27 INFO MapOutputTrackerMaster: Size of output statuses for shuffle 0 is 143 bytes16/03/04 12:59:27 INFO DAGScheduler: Got job 5 (saveAsTextFile at testFile.scala:42) with 1 output partitions16/03/04 12:59:27 INFO DAGScheduler: Final stage: ResultStage 9(saveAsTextFile at testFile.scala:42)16/03/04 12:59:27 INFO DAGScheduler: Parents of final stage: List(ShuffleMapStage 8)16/03/04 12:59:27 INFO DAGScheduler: Missing parents: List()16/03/04 12:59:27 INFO DAGScheduler: Submitting ResultStage 9 (MapPartitionsRDD[11] at saveAsTextFile at testFile.scala:42), which has no missing parents16/03/04 12:59:28 INFO MemoryStore: ensureFreeSpace(128160) called with curMem=192771, maxMem=76607520716/03/04 12:59:28 INFO MemoryStore: Block broadcast_8 stored as values in memory (estimated size 125.2 KB, free 730.3 MB)16/03/04 12:59:28 INFO MemoryStore: ensureFreeSpace(43042) called with curMem=320931, maxMem=76607520716/03/04 12:59:28 INFO MemoryStore: Block broadcast_8_piece0 stored as bytes in memory (estimated size 42.0 KB, free 730.2 MB)16/03/04 12:59:28 INFO BlockManagerInfo: Added broadcast_8_piece0 in memory on localhost:51558 (size: 42.0 KB, free: 730.5 MB)16/03/04 12:59:28 INFO SparkContext: Created broadcast 8 from broadcast at DAGScheduler.scala:86116/03/04 12:59:28 INFO DAGScheduler: Submitting 1 missing tasks from ResultStage 9 (MapPartitionsRDD[11] at saveAsTextFile at testFile.scala:42)16/03/04 12:59:28 INFO TaskSchedulerImpl: Adding task set 9.0 with 1 tasks16/03/04 12:59:28 INFO TaskSetManager: Starting task 0.0 in stage 9.0 (TID 7, localhost, PROCESS_LOCAL, 1901 bytes)16/03/04 12:59:28 INFO Executor: Running task 0.0 in stage 9.0 (TID 7)16/03/04 12:59:28 INFO ShuffleBlockFetcherIterator: Getting 1 non-empty blocks out of 1 blocks16/03/04 12:59:28 INFO ShuffleBlockFetcherIterator: Started 0 remote fetches in 1 ms16/03/04 12:59:28 INFO FileOutputCommitter: Saved output of task 'attempt_201603041259_0009_m_000000_7' to hdfs://Master:9000/output/20160304125927733/_temporary/0/task_201603041259_0009_m_00000016/03/04 12:59:28 INFO SparkHadoopMapRedUtil: attempt_201603041259_0009_m_000000_7: Committed16/03/04 12:59:28 INFO Executor: Finished task 0.0 in stage 9.0 (TID 7). 2080 bytes result sent to driver16/03/04 12:59:28 INFO TaskSetManager: Finished task 0.0 in stage 9.0 (TID 7) in 389 ms on localhost (1/1)16/03/04 12:59:28 INFO TaskSchedulerImpl: Removed TaskSet 9.0, whose tasks have all completed, from pool 16/03/04 12:59:28 INFO DAGScheduler: ResultStage 9 (saveAsTextFile at testFile.scala:42) finished in 0.391 s16/03/04 12:59:28 INFO DAGScheduler: Job 5 finished: saveAsTextFile at testFile.scala:42, took 0.505661 s16/03/04 12:59:28 INFO SparkUI: Stopped Spark web UI at http://202.38.84.51:404016/03/04 12:59:28 INFO DAGScheduler: Stopping DAGScheduler16/03/04 12:59:28 INFO MapOutputTrackerMasterEndpoint: MapOutputTrackerMasterEndpoint stopped!16/03/04 12:59:28 INFO MemoryStore: MemoryStore cleared16/03/04 12:59:28 INFO BlockManager: BlockManager stopped16/03/04 12:59:28 INFO BlockManagerMaster: BlockManagerMaster stopped16/03/04 12:59:28 INFO OutputCommitCoordinator$OutputCommitCoordinatorEndpoint: OutputCommitCoordinator stopped!16/03/04 12:59:28 INFO SparkContext: Successfully stopped SparkContext16/03/04 12:59:28 INFO ShutdownHookManager: Shutdown hook called16/03/04 12:59:28 INFO ShutdownHookManager: Deleting directory C:\Users\xubo\AppData\Local\Temp\spark-8e63d225-ffcd-4daa-a073-61d0a56526ce16/03/04 12:59:28 INFO RemoteActorRefProvider$RemotingTerminator: Shutting down remote daemon.16/03/04 12:59:28 INFO RemoteActorRefProvider$RemotingTerminator: Remote daemon shut down; proceeding with flushing remote transports.16/03/04 12:59:28 INFO RemoteActorRefProvider$RemotingTerminator: Remoting shut down.Process finished with exit code 0

文件:

(4610302159472351,3)(2458009688600224,3)(8622473327971234,3)(6829065172827334,3)(613278945544784,3)(8251001685030399,3)(05957368064511431,2)(297969649501611,2)(6253318337513543,2)(9718088504482397,2)(5928217707512564,2)(8652731264813723,2)(3273265404108937,2)(9441949621471399,2)(403703611941057,2)(19503390568077655,2)(1386740092204638,2)(45248739571634067,2)(6877255052673667,2)(3001088989501083,2)(11307299070304044,2)(5288719084826882,2)(35326915015254623,2)(7623575592232059,2)(5065348817758664,1)(5724358555115511,1)(9316964784730177,1)(28736652697085996,1)(13449134249273908,1)(9805990034717418,1)(5756425149058846,1)(3426205013386088,1)(878608795533187,1)(2187261559920859,1)(635678311983565,1)(6593880595196636,1)(6254728455093788,1)(06310865275951582,1)(11619601689041736,1)(9439833832257956,1)(3773787092917418,1)(692055948966408,1)(037875591288293486,1)(6977093958100378,1)(19648082248086285,1)(02499233704651671,1)(2750884570947366,1)(4237158928609628,1)(7158334841426035,1)(8599661366511608,1)(2640864152028786,1)(41124730750911864,1)(17178535729595612,1)(5699764523063597,1)(43099398276840317,1)(39450884515662626,1)(5951434971419388,1)(07340373992318644,1)(2911052519889569,1)(03818150758558614,1)(9367101339097463,1)(7653859133383288,1)(07173704390696672,1)(497633201077464,1)(03303509142379624,1)(9463969802884401,1)(82717383299748,1)(2365211052400556,1)(03941013097456103,1)(9537767959306596,1)(47216361801332934,1)(2422156301032734,1)(6968885997997911,1)(6337304217412321,1)(12325646067230222,1)(5339856398324736,1)(24374612979130422,1)(3581411572879967,1)(3255611522001743,1)(36242556920730906,1)(5943810028471483,1)(6015518809140387,1)(5331740416903256,1)(5073628589446093,1)(554288689765655,1)(8630802060962479,1)(15957014739707415,1)(8440656692485069,1)(7662605140420389,1)(8323870811433255,1)(25698280306131876,1)(9717595883132236,1)(029070399120999512,1)(7776290603685094,1)(8007635547237833,1)(023390042403092725,1)(6735089938620592,1)(5152782066115293,1)(5419302243610705,1)(7137490554312469,1)(738197457032616,1)(8684261176825311,1)(9846068936763284,1)(6159832529523403,1)(868061456916277,1)(5907229981029731,1)(7428284862832116,1)(2537807345564703,1)(20823160724259232,1)(49034478667077263,1)(7207097947897927,1)(1185618314620816,1)(8883650751517861,1)(8584557041448806,1)(2824775504442019,1)(4606923659980511,1)(079298005688617,1)(9537814102141007,1)(14353598327988,1)(034627532823580054,1)(43830115274116515,1)(9469548497994037,1)(9236633337732913,1)(3021837417732777,1)(6961331677138809,1)(12484916946526458,1)(7556591723833692,1)(6832267451187878,1)(5834871778055839,1)(180336759574662,1)(9782037499315169,1)(21159850155223525,1)(7389117426751123,1)(9154433356554408,1)(7056067876049126,1)(5285327970018834,1)(6738199814909556,1)(4277235289460552,1)(2955926203524622,1)(42587002496531095,1)(6625608472079179,1)(4442506976876826,1)(3896998832800434,1)(14825373602610597,1)(3622476782818425,1)(018868378216744696,1)(8765773429906916,1)(4633741572753616,1)(3050792439116791,1)(07327077099916967,1)(17107934516856787,1)(6875366208483675,1)(8551357914317053,1)(9420683319156038,1)(9979048720982847,1)(43519581219658715,1)(315386838199415,1)(7783088465721859,1)(141278734311103,1)(400519630393262,1)(6196705084088996,1)(8565167169963384,1)(8134143778245453,1)(4191011672289647,1)(28392295213535656,1)(30354692821584283,1)(8210632335394621,1)(8748610586656897,1)(413675576371472,1)(9246150395460988,1)(8661348074351278,1)(6487744870339419,1)(16313336293461283,1)(9415571068643929,1)(8954705331207249,1)(05661470634382293,1)(2521066922837858,1)(6345435406335671,1)(374067014290645,1)(42955990912658193,1)(985321136772299,1)(45785393392112966,1)(8759837406637453,1)(7510928756562927,1)(022168007213111185,1)(11977081580379728,1)(17740188745036034,1)(3054315041089539,1)(15218245571071054,1)(9538911893097927,1)(5614710876709522,1)(5613415474584626,1)(40080998048799543,1)(8982596192954454,1)(34962113334876876,1)(8628269304201255,1)(09766368846776196,1)(3691729199504175,1)(45721344864898106,1)(9560011783729199,1)(8729685194851402,1)(7936261856570594,1)(7335365730294153,1)(513504352939619,1)(8749556569869052,1)(053157886125114184,1)(9699694513219701,1)(14884921785296373,1)(16293980174174943,1)(6632399895174992,1)(8399253933012098,1)(4483839236014332,1)(8321794278241912,1)(0999196063718642,1)(5045062597736972,1)(5046073089446657,1)(8124876717391949,1)(09994811775711948,1)(0984904762777406,1)(39689133817768324,1)(03623880242113142,1)(7555012797884918,1)(9336291028457431,1)(36913497951107743,1)(008826512438664002,1)(7975215920396085,1)(1722274261148556,1)(6402358495293848,1)(6166446347783021,1)(3957786051788643,1)(6942999657754376,1)(7633407277008439,1)(6349494439535697,1)(2850989529492912,1)(16703530436884334,1)(5669875743178632,1)(9424045845377615,1)(9912274672957074,1)(3978551963724469,1)(003407389196249444,1)(0629584541305544,1)(526722512544707,1)(7126825686049688,1)(46239527847198963,1)(15438930712075616,1)(8451438719973713,1)(8323819147354324,1)(1364027356721637,1)(8588037458789257,1)(009215630246642625,1)(4870916178720823,1)(6724034107009735,1)(7973507613888955,1)(2998243274710462,1)(7690549385324196,1)(2375059813438105,1)(3882059387735488,1)(9625224009216582,1)(36750700880474857,1)(002809441663722989,1)(01346594495592468,1)(011686467130455124,1)(6751122956029536,1)(684311626588866,1)(08461142593641374,1)(9014697489903019,1)(7205896693757785,1)(6795581045983301,1)(9471254811124503,1)(8819714388973636,1)(1368960501253857,1)(23417187309485177,1)(42146840573473493,1)(062094513615777336,1)(08975195685052622,1)(9232552901767569,1)(8356871569894771,1)(809903351218842,1)(9264998906375688,1)(11147412681020796,1)(5933882145263694,1)(8669987239851598,1)(0573739004841754,1)(062367896735448514,1)(3861415702118369,1)(5802569614181864,1)(5748736797346781,1)(18733860100808858,1)(9229500597879747,1)(7853172686591178,1)(2953475808027616,1)(4480362978891658,1)(4945149933799586,1)(9186948749541914,1)(617601483814676,1)(9521497243364254,1)(06698921872225799,1)(016445495615470484,1)(5453426198557114,1)(8893035593803371,1)(4048412166859567,1)(41662628700070675,1)(8848818452597155,1)(4493569008999592,1)(9076696891656829,1)(4238014293859742,1)(22730950978552067,1)(608009578258492,1)(79078541002357,1)(6219937600929071,1)(8701055138642153,1)(23168320809328763,1)(5190146388670965,1)(35695068413346953,1)(47901957670526285,1)(5933433810308195,1)(593099249018533,1)(9225288784615253,1)(9551793379526463,1)(8566539477293846,1)(731032754690224,1)(9585801599158266,1)(3951533962081703,1)(2850984866638936,1)(6666043236897241,1)(5742113906383001,1)(103839318538469,1)(5536144952626605,1)(75888530957259,1)(749179375508175,1)(5281138964615251,1)(9589878761334266,1)(7900981571291314,1)(6212177421310023,1)(6992494117243591,1)(7280534867225659,1)(9120131747006647,1)(6228562117411178,1)(586640063066462,1)(9612308413059543,1)(26200588361733096,1)(9418970274003733,1)(5158050665769989,1)(7166906396513426,1)(7841190474617083,1)(6639815011844774,1)(06748014822310527,1)(7808786336874581,1)(24784675401313566,1)(42093058379750103,1)(6437684319689408,1)(8940204097116731,1)(7907324254354835,1)(5937416135705253,1)(4783292693736525,1)(25632929431876566,1)(9287254988044761,1)(09968475147132988,1)(7659576436270682,1)(7249706317704248,1)(4432920295385909,1)(4323851676315283,1)(8573334583280049,1)(34600544008074313,1)(7288131492288186,1)(9340695952472662,1)(39901362710012894,1)(08124309846341993,1)(40320548674212914,1)(31800956796155666,1)(8433764701453033,1)(6255524046617771,1)(5849877082487256,1)(16894226813232466,1)(8937968129593423,1)(43173994554970885,1)(2786290292519127,1)(11468394638520118,1)(29902272879824965,1)(43047844376149263,1)(8641098076175575,1)(5229949418610922,1)(21077914674210274,1)(3923456923914137,1)(47226270668924724,1)(8424213097961968,1)(865494851765056,1)(6218199333477491,1)(4326576600771891,1)(46760487154678765,1)(5600718184222362,1)(8945199791155884,1)(16331208792893786,1)(17845383842166862,1)(2576070720604171,1)(1643684939980068,1)(717498760477504,1)(7669312391093621,1)(8951612411290941,1)(9784259957311083,1)(3665910209283906,1)(7251542982874506,1)(8248403977107859,1)(41780044060382215,1)(2637433912004729,1)(8273503776510589,1)(2972398829838538,1)(28249788481243865,1)(5589509205330839,1)(8438445875638929,1)(3358573362770177,1)(31770900617753933,1)(6186047984837693,1)(3724642495579046,1)(17738464776085888,1)(6305442918485123,1)(6227625654422192,1)(34042097900648677,1)(8058342981550732,1)(02051694340039717,1)(47580686543498485,1)(5262258591354013,1)(785060833827985,1)(8218145755818054,1)(7560629829247136,1)(7813895492015799,1)(12088940453928892,1)(47149117169127674,1)(8628275566747643,1)(7665716734829168,1)(4365680365615977,1)(00591623729024493,1)(29240299711943407,1)(90909025242465,1)(7608071007780082,1)(08962426161963166,1)(24384728888497192,1)(7391219347585153,1)(9994708010776947,1)(9475005147875211,1)(9203914299084577,1)(22236193528871328,1)(9133730674190639,1)(4817545917771281,1)(2857911794680036,1)(5211130972870913,1)(5229989993704606,1)(5068523842967496,1)(11261058654317152,1)(7237342413792421,1)(9579442243007996,1)(8033058947676974,1)(8347442366143102,1)(29194980059311265,1)(8147708564069815,1)(647339738420298,1)(17629290369562678,1)(8509855093304952,1)(5729326305134977,1)(989275130312895,1)(10374906122383337,1)(8313489093964594,1)(19720170180263785,1)(12655876481591344,1)(878214545099721,1)(6414020195275749,1)(5252664416512421,1)(2908142862713471,1)(9450781656160982,1)(36960903807392,1)(13463577648663238,1)(9418410914345632,1)(4802253173401879,1)(38083611033038184,1)(08666711260951826,1)(7437489737730156,1)(5010239073616191,1)(39235747573192764,1)(5749027089835432,1)(7034546723863615,1)(02957390027634138,1)(1709053478525147,1)(2628058180446185,1)(6596153705999952,1)(47672876533764924,1)(6747965581699283,1)(36941106171522275,1)(5522283116422497,1)(07738572515682962,1)(020122600272097668,1)(29480684950439933,1)(1762801364136628,1)(0780760385265521,1)(29038449030508323,1)(29515617800809485,1)(7781677726503904,1)(7597623195379417,1)(5840610603065073,1)(19701804785360144,1)(20990025481822944,1)(4768800237926924,1)(2880527594346576,1)(11497040925169394,1)(160916261325679,1)(9007700400227192,1)(5018444787650456,1)(6573129214955942,1)(9774221596673079,1)(7142484024868855,1)(8582614651303646,1)(8518671665469166,1)(3961009750717097,1)(6317584696510536,1)(6376395446935996,1)(13233288236432555,1)(7997935232949966,1)(634795578700845,1)(1863203921381303,1)(9700510456414378,1)(3795244933906661,1)(5314852081543755,1)(8191347688582247,1)(06285529268649953,1)(6502216359022164,1)(22039816762192976,1)(31185495962469134,1)(22739721175731542,1)(2723484017556613,1)(17101989965279662,1)(7595207499121515,1)(9616785737782876,1)(10495570451273744,1)(568906895083199,1)(9053059788159534,1)(1377031555663737,1)(5790875921019002,1)(636852210526684,1)(2842106369873253,1)(8921536716725198,1)(045653119352151494,1)(5935854612505436,1)(6719533739475849,1)(732955528534299,1)(9882745677777048,1)(29419432595762196,1)(009034745822256384,1)(5705565175111412,1)(6016238858382752,1)(27368905248957165,1)(02389930509136845,1)(5674830448019834,1)(37283412065678173,1)(3199036566954856,1)(14278499787753707,1)(6228633420866455,1)(7902727266046369,1)(5798796230554738,1)(15974152575444722,1)(6551173707743345,1)(40589273952706106,1)(30985122705859336,1)(2034466494182986,1)(4843848794818867,1)(30400464857236975,1)(10513723783643619,1)(45981542802296715,1)(7354813248137102,1)(5066960170408953,1)(7710370307073372,1)(8331826222793721,1)(8485257264612082,1)(4115160967130532,1)(4130712590473535,1)(718456094940835,1)(8727622682013537,1)(36260870834093794,1)(3577755017377389,1)(7868706004806196,1)(2388359934628299,1)(5287952810945877,1)(7119373272496452,1)(11475772565664605,1)(9273849644143857,1)(25310394112221795,1)(8943079296800596,1)(40358107064235027,1)(995224496387496,1)(7358260696696792,1)(8866302262757728,1)(1945160459187809,1)(33041049396263233,1)(8228384560247888,1)(8643589792559019,1)(8697728618274847,1)(2496010945804767,1)(240160491642687,1)(7497135032929323,1)(17852731220354934,1)(7991901177597984,1)(795321435465973,1)(5382648909888006,1)(08030145007152445,1)(5140884282375603,1)(380335907077619,1)(7460154292390712,1)(2026801924330771,1)(0856954143501722,1)(35757505989574584,1)(36384730025666545,1)(3561661402329201,1)(36260929050669616,1)(5159733119461596,1)(8809485328484392,1)(3411528510481515,1)(6403971226182654,1)(4412050716111284,1)(7856492049136712,1)(3856174699417542,1)(2197571585721495,1)(9004098038757672,1)(29695047108385003,1)(8129627831440874,1)(08938999367023775,1)(8483504756503564,1)(9754501369597364,1)(2121834173694166,1)(6401918234716828,1)(6843961534150694,1)(13069699001737484,1)(04048625729513239,1)(9663424839073627,1)(6402527610395164,1)(6814327434649017,1)(42750158937997645,1)(6539763800312182,1)(9348480035101028,1)(236949402112119,1)(21881045327218207,1)(2253189607482441,1)(702600424803058,1)(5210433288315053,1)(8876385486608922,1)(177877241307627,1)(6959112647896974,1)(4114650527757432,1)(970451651341689,1)(7701095780173515,1)(04905106529955533,1)(6946629619856839,1)(7084968862937351,1)(22374670192004425,1)(9174899878761787,1)(9516207646884747,1)(4119192113996561,1)(3441400464440634,1)(5289307875035021,1)(4303880555301568,1)(18249418863883704,1)(4686716061604525,1)(7012289744028101,1)(3621178701057252,1)(7556763506767454,1)(4212058698555915,1)(028261903823604162,1)(23361223109584417,1)(8735342820183228,1)(33804058105039525,1)(7283913250066796,1)(7497838767753484,1)(34722907742863357,1)(9026954824917371,1)(6446246097010565,1)(7673949650682958,1)(7476152620010397,1)(8506741237781439,1)(5919490830760252,1)(8854477200332418,1)(9516981841951079,1)(8829978391970166,1)(01461746984347062,1)(07594220010824798,1)(4280363332398966,1)(1463239876707702,1)(28330557429227415,1)(9433221330749562,1)(7790236569718492,1)(17732513146265144,1)(19022223452160608,1)(5226360018235064,1)(9428288051227573,1)(8546915414786205,1)(9185070059171024,1)(5630314051334032,1)(7703367071096152,1)(7628365345362357,1)(6121299337529772,1)(956739689257083,1)(1844676191085996,1)(7905977455761498,1)(51901075693222,1)(604410546910642,1)(20889050987578195,1)(34651254102725265,1)(5291930925827135,1)(5582401798658998,1)(8820876445696504,1)(256399646382404,1)(030005999751535117,1)(723704436237971,1)(5494727433412101,1)(6135516865892383,1)(7401172828277176,1)(3616399259400253,1)(5542894299245609,1)(4563588269544955,1)(5820800234726766,1)(9988590869566216,1)(37057456498404423,1)(7097966735123744,1)(6944533489759854,1)(029345760462857306,1)(3308545778630174,1)(900982382374417,1)(4245903574109054,1)(2706915141072626,1)(3579961833466715,1)(9708714244935048,1)(7070923888037021,1)(5282972494761,1)(2301794582961712,1)(6715344541086173,1)(0902643337538912,1)(8059029998092122,1)(11717703299003557,1)(5939017733119137,1)(7892696218207261,1)(4743106791737472,1)(039034554524920495,1)(11201467041393298,1)(496033327868694,1)(3191867494326331,1)(13833326958701192,1)(16645657161654331,1)(5603058044294727,1)(4902886930438935,1)(716179521893954,1)(015464233351851264,1)(5206415972145144,1)(060889552981794215,1)(4396947461374412,1)(7557535140784233,1)(9694133423766407,1)(40826408557281335,1)(5747290876066977,1)(01532039495118448,1)(9367825661851064,1)(3231010215564178,1)(14383026780950014,1)(6968786940635177,1)(9880624716179662,1)(13182512630843962,1)(7487507082516258,1)(3765484884873956,1)(5319738916871767,1)(7354011546271666,1)(4528807361205426,1)(04848803803357005,1)(43549627996917744,1)(5415098250896473,1)(365123368455289,1)(062373520847315456,1)(2458920505332699,1)(40066212132611894,1)(8098267233356107,1)(10010399034626782,1)(6828470577309373,1)(5996138935384039,1)(2928934533810156,1)(3486479014595741,1)(698844992652488,1)(08869396872830265,1)(5467429773777928,1)(7304262373607974,1)(28710047017652107,1)(6880658669966941,1)(2860996672031679,1)(7047823388987977,1)(12944399386249528,1)(17599062914293972,1)(6367474345718198,1)(23509356827192646,1)(7934429572306595,1)(21413826631330274,1)(2133024169013097,1)(15715200705859922,1)(2844384470527822,1)(7813027821246219,1)(4061701076067027,1)(6621387413182251,1)(6107109172680515,1)(2492566416908767,1)(8647402137833475,1)(8999127018543684,1)(2004099120302063,1)(859488582754601,1)(41961987914110815,1)(6906776491061382,1)(3457024061218905,1)(33445072154055155,1)(8315884187283955,1)(815170811617683,1)(3576706499382901,1)(7598643424764072,1)(1386969257554857,1)(719250379624626,1)(945869469993712,1)(7928536029579968,1)(2607869948441172,1)(9888340846177968,1)(5717863587079289,1)(8846150374368951,1)(18115716894166012,1)(8013310411341896,1)(14488884054404133,1)(41112965383251176,1)(17183717556839728,1)(8146666184128312,1)(3834900574922463,1)(20627719354229657,1)(8023353283470724,1)(6153177508301928,1)(5333060027936165,1)(5287987571422391,1)(4110874661340969,1)(9097516432743482,1)(6352436603381097,1)(8670439717327411,1)(5837386704001617,1)(575903303811405,1)(8599770221854197,1)(6129629532029723,1)(6305229684144614,1)(03910129056803546,1)(5648492362783373,1)(13618868354497388,1)(06608890000104123,1)(008416682757576288,1)(4670030619680483,1)(20371921843381868,1)(02163293354880713,1)(35644301596960465,1)(11447243165388587,1)(7060455752336783,1)(47400451848760017,1)(5028737953059696,1)(7831561394435977,1)(1236129646649719,1)(05514456913307758,1)(8722917509477709,1)(9061198285975438,1)(22830950865083094,1)(8142504432487839,1)(37773804884857576,1)(4673505391280754,1)(9951253738436414,1)(5784899126226768,1)(18816106839841484,1)(3894502505943058,1)(1107620848058587,1)(6112371258632284,1)(6391646537120443,1)(7416917005943464,1)(06864293424517476,1)(25207531102388625,1)(6241993446271519,1)(8644026380554622,1)(8535926220473738,1)(18652682209191235,1)(7870340133033409,1)(39110204474448556,1)(978808455397778,1)(3723303122990747,1)(9066017338504827,1)(0802411676007182,1)(6251007210584123,1)(5475064649134003,1)(9826164143976486,1)(8673116250851618,1)(09048801952083574,1)(8918065863155049,1)(42619276509845016,1)(7440539392052661,1)(42359447037993103,1)(6209938673786619,1)(752286246788733,1)(09686855261000249,1)(29156738699148143,1)(21485031978891267,1)(8759264341106845,1)(8282940696292613,1)(7652318529320863,1)(08223806955226764,1)(685694611144981,1)(24708242969294097,1)(5984143528347841,1)(10745426993876095,1)(42202407992983043,1)(8973343809103658,1)(19622740693753843,1)(3987787701904354,1)(3280769450426004,1)(601001782616102,1)(6794374488676813,1)(14453026777376382,1)(49243057834638987,1)(19105837123613462,1)(9206691818802253,1)(1353046337544913,1)(07555225567230006,1)(3268433588983406,1)(8602359419321807,1)(5654394444525392,1)(41723313079871965,1)(7895748340990853,1)(8199010234987181,1)(8047036079629263,1)(2251229721852227,1)(06632388743169187,1)(8360058588008317,1)(5015164458873147,1)(6537978688177299,1)(8266724006609578,1)(7990490742259642,1)(36091148454951255,1)(9087696956595801,1)(3202589870007965,1)(9250954959609813,1)(8602189219733494,1)(48841696596461364,1)(7091550871426546,1)(6007255271167418,1)(9345404234281394,1)(8559404168157558,1)(9933748327467378,1)(5486644615231437,1)(871492096770589,1)(36472657110602086,1)(9630442210336663,1)(12061327613035438,1)(6528760554643957,1)(029798153100553226,1)(8822659671639365,1)(1540002577998652,1)(9334756268264527,1)(9602556320633306,1)(14130930299333993,1)(5927427110565185,1)(057037312089210035,1)(8480586467887667,1)(030028118435188156,1)(10647256786585712,1)(20065982767039386,1)(8830812778613037,1)(6968186628906957,1)(9679585387833901,1)(06462328737926343,1)(2784225925951898,1)(6472509219928579,1)(6784127034259114,1)(5058815658763909,1)(4827253101849374,1)(16577446690649494,1)(49970042621415994,1)(5338706467820152,1)(4131772211529649,1)(07719383371020405,1)(7449600797705532,1)(6370107645347927,1)(1929258722274459,1)(5057827905015235,1)(18490441562060278,1)(6475321238234829,1)(9005551811627129,1)(2815773110746538,1)(7011052296174098,1)(42181233539213364,1)(943272302061533,1)(0742633096964812,1)(6143674607630731,1)(6027690407138821,1)(9635836273512044,1)(21648279753926525,1)(20277024711072578,1)(038664715145430795,1)(7625812644465929,1)(9806321187285742,1)(25040231758380826,1)(6042075363165482,1)(8395876510261671,1)(6411928031527406,1)(5547301037817578,1)(5031265804125717,1)(31070475639185857,1)(37922232210660045,1)(9088542029764657,1)(8730348769059528,1)(7038315953124614,1)(5912251643753921,1)(27695667163508647,1)(908603763701386,1)(5820644259605159,1)(9771277222318213,1)(9050505796925983,1)(8000102297070029,1)(5452914658627415,1)(34701981693863815,1)(17184947008301432,1)(44048723829420094,1)(37871133313750144,1)(8569934260368088,1)(5410374263010873,1)(6648800704296522,1)(438325498362302,1)(2210871691604907,1)(7774322961061915,1)(23518884045212757,1)(1818956442683774,1)(7127941577571346,1)(6530621859333185,1)(047011062628323774,1)(9936976829542192,1)(48369875379042304,1)(1267823625244392,1)(026918246360018938,1)(8193263159451503,1)(6498822478255364,1)(4940745701317998,1)(7807973171878313,1)(2097820678420652,1)(2564402522179966,1)(08520999273080881,1)(06593924578463439,1)(42197425537214633,1)(32734634618964137,1)(9093550405088998,1)(12773784594854026,1)(5658305147651619,1)(8644468446929077,1)(24495790346944785,1)(7641215958487928,1)(16620813672944867,1)(7022630180194643,1)(055856284968844816,1)(5258070724302636,1)(8660049267777297,1)(2506711252164888,1)(16487162055459814,1)(005200431948572948,1)(43400507749502437,1)(9636403610828181,1)(3514095741831975,1)(32417494074005176,1)(5609804911139008,1)(7361645946173657,1)(5226278822874049,1)(3983972200965693,1)(3669622782253944,1)(052293792038185516,1)(15453260097871413,1)(7419056712830061,1)(3224963450888188,1)(5642120467379728,1)(6572644542541992,1)(7188335632832402,1)(8143154448245975,1)(0672551965167395,1)(31839585689652966,1)(04043836896082015,1)(5864330653450922,1)(01562831605959375,1)(4751248299537605,1)(8267879281619588,1)(905118066031513,1)(21230046707696404,1)(6037488591826252,1)(06712724937022296,1)(1436558846133335,1)(0946514550821515,1)(7100206235161539,1)(7365131019141238,1)(9414386922563163,1)(35065635837886216,1)(8307960050089298,1)(21313295042188263,1)(8492197109766175,1)(21814654320513527,1)(4604115566629622,1)(6047835087559995,1)(050900421006328966,1)(6474378575119759,1)(43080219994871455,1)(9528569467111967,1)(1366210712143261,1)(765684524454828,1)(7886256561336217,1)(30707037675913284,1)(4644328333569405,1)(45132410039041864,1)(3698557958382167,1)(5730765021356274,1)(9694353875901582,1)(84885018947332,1)(5128686165264829,1)(7496401425132597,1)(422935192104023,1)(21500458704649417,1)(353815921301797,1)(07039897235076342,1)(05581868419987018,1)(448958384101459,1)(07966231190886053,1)(7020045416611755,1)(15375816357715088,1)(9407819679644126,1)(9886772711441991,1)(16908966176078466,1)(9398696812052275,1)(2978901611207716,1)(23934055561638162,1)(7365017769899482,1)(4163148279659952,1)(21961621110501411,1)(4232879813102528,1)(23476903464278792,1)(022812640803263007,1)(5088718673903975,1)(19845788932832592,1)(6829786982905878,1)(1571499093142512,1)(3982811006411702,1)(7133811826712284,1)(8493236345677031,1)(2425947820361573,1)(6357752259570137,1)(12460961348384203,1)(9854385992854566,1)(048388286833918825,1)(31210338747582933,1)(8576755714865603,1)(4897949172820859,1)(3949828035015059,1)(647851920105442,1)(25462345177989243,1)(938623447676045,1)(3234362720329676,1)(6439147677011017,1)(4215003690836539,1)(6279250261442508,1)(07415544590271,1)(9517687608555059,1)(5503126299545455,1)(41226017114819296,1)(8847408008095812,1)(28784483670104055,1)(12113569919842909,1)(7114985978728157,1)(4446692150250874,1)(7672242779303093,1)(11961977712511734,1)(16205242082728005,1)(3916422093002063,1)(7141694562924774,1)(7467791090819464,1)(2173473636714952,1)(9907421756148914,1)(508106156634581,1)(23009557467388686,1)(31817566803293934,1)(4303772507671194,1)(3447799151879247,1)(12338919439844931,1)(9442378736237087,1)(5943476036255678,1)(42698156976831203,1)(5766305303303874,1)(8792751725476706,1)(8457424355132825,1)(653089425809924,1)(2199783436347869,1)(29216793320058165,1)(8849299027450186,1)(8442457450869192,1)(09209959585031263,1)(050935693118878966,1)(8025122775294253,1)(7699433170080014,1)(3650819410083231,1)(23655158345487553,1)(5558856813608173,1)(14755837602354727,1)(9129470975183839,1)(8321947989168406,1)(706938656515774,1)(11337432496377187,1)(9445639192706102,1)(7144893846526287,1)(7656276616374016,1)(002764577843522964,1)(8483672235848579,1)(0311888778064921,1)(1226745903428561,1)(8008501947443861,1)(4202852587148526,1)(7057021352447207,1)(4726286489106053,1)(27186739933857923,1)(28221537495446164,1)(008574337556560896,1)(4903570773448636,1)(1168114388046761,1)(7272086211238713,1)(7016112283076155,1)(008193430273625956,1)(24522276601551973,1)(7620907449649713,1)(5361199365751368,1)(04306173710537653,1)(6603702864484546,1)(12100424146036581,1)(5470483696549591,1)(34335069982732746,1)(6648945864195548,1)(2701863778527028,1)(6541276149964306,1)(3476451404462403,1)(4213418157227065,1)(8945374724141195,1)(6993658669763627,1)(5683612259796484,1)(6463184546689067,1)(3432163096099464,1)(39470067958335625,1)(9705131250328223,1)(5990929566002173,1)(28907505120909504,1)(736120410976427,1)(49887006692083985,1)(9325001018798985,1)(21850489822359298,1)(6478068520431965,1)(670171053022463,1)(9133500371925123,1)(4791251525990476,1)(3483563431608544,1)(014187331940138048,1)(991158654757955,1)(6868505740973322,1)(0015785780069203503,1)(5211513144285813,1)(2401603895393778,1)(4153467339770258,1)(7921608733331507,1)(5986375765642483,1)(2188851650216319,1)(10236517303750142,1)(37229137556162073,1)(2342593187087721,1)(9813140212873561,1)(09972295293011074,1)(3892155944255798,1)(4417165120086434,1)(900572048846531,1)(7119079929157601,1)(05783909369072093,1)(3106889044736745,1)(7265029958718863,1)(1761137188862043,1)(7388926600086416,1)(6063120916261244,1)(2266338113495419,1)(9887675451131582,1)(9947070237064871,1)(4625564293841524,1)


0 0
原创粉丝点击