#include #include static const char compressed_data[] = ( "x\234uVI\262\3536\014\334\347\024:\202)" "\017\222\326\251\242-j\006\305I\025\337" "\377\032i\002\364\360\362_\026o0\000\202" "@w\003tUU\347\272\252\024=\377\252\360" "\357\271\252n\364\364\332/\025y\362\033" "\033/l\334\265\353+\012:\366l\274V\252" "\246'\221\327\025Ys\230\212\016\355\251" "\042\232\323\314\001\267J]\020\260\356" "\024\351X\217\231\014=v\035\365\361@\352" "\277\275\343\240\246\252\3179\313\201," "\376\341\356\373\335>\254\331\0077x\343s" "\340\034\2468\2459\255q\013\233_\275\344" "n+u\315\271i\366\017\177wz\327\026\007" "\323\206\042fO;\321\312a\035~\350\351" "\372\240\363\307\313\251\252\032zF\215" "\023\275[\374\026\211\315\212\315;\314" "\241\0170\357b\006*\035\314KD\327{\037" "\001H\032\355\310\256\202\322\342\341" "\262c\022\343\205\323x\027\010\205n\236" "\202\244\271r\015\373\030%\352&G\001m" "\330\002 fc\3031\031\005\376\210\356\362" "\307\205z\306\253?\226\230{B\005\357\020" "t\326\242\263\207\327A\007\240\356(q\252" "\353\211\253~\237\034\220\205\016q)alaB" "\226c\016\343a\216>\002W\352\364E\344\030\015" "\250\324\211\013\271^\230\211\214\370" "\353NT9\355C\034\216\351Xs\335\034\006" "\0242a\275\325Y%l\202>\272rr\316\360\240" "\230\007\027\363 \263\217\025\3012\177eh" "\012(\245\372W\350\260C\037\307\300!-7" "\370\3016\313\307Oa\012\263\310\346\332q" "\216o\212 h(\314O\320\031\207\334\200" "\037T\033WT\364`\203\022\361\343\026\224" "4\354|\323\255\346\250}\215\343.Q\300H}" "\303\016m\254\237\011\272]\252\032\020" "\036C4\036\342\336g\277D\020p\230t\217" "\254]\000:\333M\000\346\003W\246\042O" "\327\201\032\323b\0276\227\231\042\002" "\355\307\3430a$ \025\030\251\0003\0075" "\134K\026\314\207\022\221\020\273[\241" "\0239\274\216w\240>G@Q\316vog\236HI\377" "\022Ps*E}\234lV\214\352\317\373P\322\370" "\271\263\251\337i\221.\273\360\027\277" "\305y\226AC\363\214\030\134\031\024v]" "\330e!=\220\265\006\270\322\313u\025\241" "s\312C\323\214!}%\2741;\244\337\2057\314" "!\267\214\253\213\261\025I\346n\312T5" "\245\373?\006/;\333\023\217\334O\354\331" "\241\376w\134\303\042w\265\265\310\343O" "\336\304]\324\363\313\252d\367\345\2653" "\244U\256\265-\012\321\357\211\020\363" "\253w_zj\033\351\211\343\034\371%|G\267" "\005\230\314\007\025`\332N\026\031\371Q" "\314\236\333\354N\202\027\270\177\341" "\332)6E\355\264#Y\246]-\253\254\344\352" "\316\034\261\363\226\022-t\027\256\320" "\366\376\236x\355tyCn\317m\377g\347\2177" "Y\332:\210\267\341\005c\207\335D\223\206" "\224\247\001\303\355\310nvv\030nym:\231}" "K\366\236W\2623\301\2441\255\034\310\023" "\325u\254\2274\006\343\214\035\355\3520" "\375)\273\324\351\304g\323\235\223\2273" "\257\034\034\240\230\037\213\227\355\327" "\363\242n\334\335\273{@W\011\217\241\227" "\267B\235\316R\277u.\270d\263\353\327" "\034E\351?\353'v\011\323\301\202\221\234" "\030\017\036\233o26H\214\205f\003\134" "\341\021\304\325|%K\306bs\271W\262\226" "\321\367w\314\223e\303{\342\007\274\273" "\306O@\331\034\003\323\247\324\351\225" "\310\374\267*\245\244\351\365\027\260" "\225\252\205\015\367\343\334w\300\231" "\027\331\347t\2563\271\017\374\034t\341" "\211\373y;;\256\302G\301\017\333q\372" "\341\276\311;\217v\000\327\273S%\223`" "\315\373\134\346b-\355\264|\006\316\221" "\235c2l.\350\030Z-\364\213\265\215w\026" "\023\312\316\372Txw\013d\230k4\020\344" "\042\011kym\277y\377\334\314\001u\2711" "\2310\271\305R9'\257m\304\304\240\364" "\301\215x\233\266 \323\245\352\013\317F" "\371\366\244\352+\307\342\213\031\307" "\006\216u2g\252\276\361\350\261&\373t" "\377\353_pN\216w" ); static unsigned char outbuf[2600]; int main(int argc, char **argv) { uLongf len = sizeof outbuf; int inlen = sizeof(compressed_data) - 1; fprintf(stderr, "uncompressing %d\n", inlen); int err = uncompress(outbuf, &len, compressed_data, inlen); if (err != Z_OK) { fprintf(stderr, "uncompress ยป %d\n", err); return -1; } fwrite(outbuf, len, 1, stdout); return 0; }