Skip to content
Snippets Groups Projects
merges.txt 446 KiB
Newer Older
kky84176's avatar
kky84176 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
#version: 0.2
Ġ t
Ġ a
h e
i n
r e
o n
Ġt he
e r
Ġ s
a t
Ġ w
Ġ o
e n
Ġ c
i t
i s
a n
o r
e s
Ġ b
e d
Ġ f
in g
Ġ p
o u
Ġa n
a l
a r
Ġt o
Ġ m
Ġo f
Ġ in
Ġ d
Ġ h
Ġan d
i c
a s
l e
Ġt h
i on
o m
l l
en t
Ġ n
Ġ l
s t
Ġ re
v e
Ġ e
r o
l y
Ġb e
Ġ g
Ġ T
c t
Ġ S
i d
o t
Ġ I
u t
e t
Ġ A
Ġ is
Ġ on
i m
a m
o w
a y
a d
s e
Ġth at
Ġ C
i g
Ġf or
a c
Ġ y
v er
u r
Ġ u
l d
Ġs t
Ġ M
' s
Ġ he
Ġ it
at ion
it h
i r
c e
Ġy ou
i l
Ġ B
Ġw h
o l
Ġ P
Ġw ith
Ġ 1
t er
c h
Ġa s
Ġw e
Ġ (
n d
i ll
Ġ D
i f
Ġ 2
a g
er s
k e
Ġ "
Ġ H
e m
Ġc on
Ġ W
Ġ R
he r
Ġw as
Ġ r
o d
Ġ F
u l
at e
Ġa t
r i
p p
o re
ĠT he
Ġs e
u s
Ġp ro
Ġh a
u m
Ġa re
Ġd e
a in
an d
Ġo r
ig h
es t
is t
a b
r om
Ġ N
t h
Ġc om
Ġ G
u n
o p
0 0
Ġ L
Ġn ot
es s
Ġe x
Ġ v
re s
Ġ E
e w
it y
an t
Ġb y
e l
o s
or t
o c
q u
Ġf rom
Ġha ve
Ġs u
i ve
ou ld
Ġs h
Ġth is
n t
r a
p e
igh t
ar t
m ent
Ġa l
u st
en d
- -
al l
Ġ O
ac k
Ġc h
Ġ le
i es
re d
ar d
â Ģ
ou t
Ġ J
Ġa b
e ar
i v
al ly
ou r
o st
g h
p t
Ġp l
as t
Ġc an
a k
om e
u d
T he
Ġh is
Ġd o
Ġg o
Ġh as
g e
' t
Ġ U
r ou
Ġs a
Ġ j
Ġb ut
Ġw or
Ġa ll
e ct
Ġ k
am e
Ġw ill
o k
Ġw he
Ġthe y
id e
0 1
f f
ic h
p l
t her
Ġt r
. .
Ġin t
i e
u re
ag e
Ġn e
i al
a p
in e
ic e
Ġm e
Ġo ut
an s
on e
on g
ion s
Ġwh o
Ġ K
Ġu p
Ġthe ir
Ġa d
Ġ 3
Ġu s
at ed
ou s
Ġm ore
u e
o g
ĠS t
in d
i ke
Ġs o
im e
p er
. "
b er
i z
a ct
Ġon e
Ġsa id
Ġ -
a re
Ġyou r
c c
ĠT h
Ġc l
e p
a ke
ab le
i p
Ġcon t
Ġwh ich
i a
Ġ im
Ġab out
Ġwe re
ver y
u b
Ġh ad
Ġ en
Ġcom p
, "
ĠI n
Ġu n
Ġa g
i re
ac e
a u
ar y
Ġw ould
as s
r y
Ġ âĢ
c l
o ok
e re
s o
Ġ V
ig n
i b
Ġof f
Ġt e
v en
Ġ Y
i le
o se
it e
or m
Ġ2 01
Ġre s
Ġm an
Ġp er
Ġo ther
or d
ul t
Ġbe en
Ġl ike
as e
an ce
k s
ay s
ow n
en ce
Ġd is
ct ion
Ġan y
Ġa pp
Ġs p
in t
res s
ation s
a il
Ġ 4
ic al
Ġthe m
Ġhe r
ou nt
ĠC h
Ġa r
Ġ if
Ġthe re
Ġp e
Ġy ear
a v
Ġm y
Ġs ome
Ġwhe n
ou gh
ac h
Ġth an
r u
on d
ic k
Ġo ver
ve l
Ġ qu
Ċ Ċ
Ġs c
re at
re e
ĠI t
ou nd
p ort
Ġal so
Ġp art
f ter
Ġk n
Ġbe c
Ġt ime
en s
Ġ 5
op le
Ġwh at
Ġn o
d u
m er
an g
Ġn ew
-- --
Ġg et
or y
it ion
ing s
Ġj ust
Ġint o
Ġ 0
ent s
o ve
t e
Ġpe ople
Ġp re
Ġit s
Ġre c
Ġt w
i an
ir st
ar k
or s
Ġwor k
ad e
o b
Ġs he
Ġo ur
w n
in k
l ic
Ġ1 9
ĠH e
is h
nd er
au se
Ġh im
on s
Ġ [
Ġ ro
f orm
i ld
at es
ver s
Ġon ly
o ll
Ġs pe
c k
e ll
am p
Ġa cc
Ġb l
i ous
ur n
f t
o od
Ġh ow
he d
Ġ '
Ġa fter
a w
Ġat t
o v
n e
Ġpl ay
er v
ic t
Ġc ould
it t
Ġa m
Ġf irst
Ġ 6
Ġa ct
Ġ $
e c
h ing
u al
u ll
Ġcom m
o y
o ld
c es
at er
Ġf e
Ġbe t
w e
if f
Ġtw o
oc k
Ġb ack
) .
id ent
Ġu nder
rou gh
se l
x t
Ġm ay
rou nd
Ġp o
p h
is s
Ġd es
Ġm ost
Ġd id
Ġad d
j ect
Ġin c
f ore
Ġp ol
on t
Ġag ain
cl ud
ter n
Ġkn ow
Ġne ed
Ġcon s
Ġc o
Ġ .
Ġw ant
Ġse e
Ġ 7
n ing
i ew
ĠTh is
c ed
Ġe ven
Ġin d
t y
ĠW e
at h
Ġthe se
Ġp r
Ġu se
Ġbec ause
Ġf l
n g
Ġn ow
ĠâĢ ĵ
c om
is e
Ġm ake
Ġthe n
ow er
Ġe very
ĠU n
Ġse c
os s
u ch
Ġe m
Ġ =
ĠR e
i ed
r it
Ġin v
le ct
Ġsu pp
at ing
Ġl ook
m an
pe ct
Ġ 8
ro w
Ġb u
Ġwhe re
if ic
Ġyear s
i ly
Ġd iff
Ġsh ould
Ġre m
T h
I n
Ġe v
d ay
' re
ri b
Ġre l
s s
Ġde f
Ġr ight
Ġs y
) ,
l es
00 0
he n
Ġth rough
ĠT r
_ _
Ġw ay
Ġd on
Ġ ,
Ġ1 0
as ed
Ġas s
ub lic
Ġre g
ĠA nd
i x
Ġ very
Ġin clud
ot her
Ġim p
ot h
Ġsu b
ĠâĢ Ķ
Ġbe ing
ar g
ĠW h
= =
ib le
Ġdo es
an ge
r am
Ġ 9
er t
p s
it ed
ation al
Ġb r
Ġd own
Ġman y
ak ing
Ġc all
ur ing
it ies
Ġp h
ic s
al s
Ġde c
at ive
en er
Ġbe fore
il ity
Ġwe ll
Ġm uch
ers on
Ġth ose
Ġsu ch
Ġ ke
Ġ end
ĠB ut
as on
t ing
Ġl ong
e f
Ġth ink
y s
Ġbe l
Ġs m
it s
a x
Ġo wn
Ġpro v
Ġs et
if e
ment s
b le
w ard
Ġsh ow
Ġp res
m s
om et
Ġo b
Ġs ay
ĠS h
t s
f ul
Ġe ff
Ġg u
Ġin st
u nd
re n
c ess
Ġ ent
ĠY ou
Ġgo od
Ġst art
in ce
Ġm ade
t t
st em
ol og
u p
Ġ |
um p
Ġhe l
ver n
ul ar
u ally
Ġa c
Ġm on
Ġl ast
Ġ2 00
1 0
Ġst ud
u res
ĠA r
sel f
ar s
mer ic
u es
c y
Ġm in
oll ow
Ġc ol
i o
Ġm od
Ġc ount
ĠC om
he s
Ġf in
a ir
i er
âĢ Ķ
re ad
an k
at ch
e ver
Ġst r
Ġpo int
or k
ĠN ew
Ġs ur
o ol
al k
em ent
Ġus ed
ra ct
we en
Ġs ame
ou n
ĠA l
c i
Ġdiff ere
Ġwh ile
---- ----
Ġg ame
ce pt
Ġs im
.. .
Ġin ter
e k
Ġre port
Ġpro du
Ġst ill
l ed
a h
Ġhe re
Ġwor ld
Ġth ough
Ġn um
ar ch
im es
al e
ĠS e
ĠI f
/ /
ĠL e
Ġre t
Ġre f
Ġtr ans
n er
ut ion
ter s
Ġt ake
ĠC l
Ġcon f
w ay
a ve
Ġgo ing
Ġs l
u g
ĠA meric
Ġspe c
Ġh and
Ġbet ween
ist s
ĠD e
o ot
I t
Ġe ar
Ġagain st
Ġh igh
g an
a z
at her
Ġex p
Ġo p
Ġin s
Ġg r
Ġhel p
Ġre qu
et s
in s
ĠP ro
is m
Ġf ound
l and
at a
us s
am es
Ġp erson
Ġg reat
p r
Ġs ign
ĠA n
' ve
Ġs omet
Ġs er
h ip
Ġr un
Ġ :
Ġt er
ire ct
Ġf ollow
Ġd et
ic es
Ġf ind
1 2
Ġm em
Ġc r
e red
e x
Ġex t
ut h
en se
c o
Ġte am
v ing
ou se
as h
at t
v ed
Ġsy stem
ĠA s
d er
iv es
m in
Ġle ad
ĠB l
c ent
Ġa round
Ġgo vern
Ġc ur
vel op
an y
Ġc our
al th
ag es
iz e
Ġc ar
od e
Ġl aw
Ġre ad
' m
c on
Ġre al
Ġsupp ort
Ġ1 2
.. ..
Ġre ally
n ess
Ġf act
Ġd ay
Ġb oth
y ing
Ġs erv
ĠF or
Ġth ree
Ġw om
Ġm ed
od y
ĠThe y
5 0
Ġex per
t on
Ġe ach
ak es
Ġc he
Ġc re
in es
Ġre p
1 9
g g
ill ion
Ġg rou
ut e
i k
W e
g et
E R
Ġm et
Ġs ays
o x
Ġd uring
er n
iz ed
a red
Ġf am
ic ally
Ġha pp
ĠI s
Ġch ar
m ed
v ent
Ġg ener
i ent
p le
i et
re nt
1 1
v es
pt ion
Ġ2 0
form ation
Ġc or
Ġoff ic
ie ld
Ġto o
is ion
Ġin f
Ġ Z
t he
o ad
Ġp ublic
Ġpro g
r ic
* *
Ġw ar
Ġp ower
v iew
Ġf ew
Ġl oc
Ġdiffere nt
Ġst ate
Ġhe ad
' ll
Ġp oss
Ġst at
re t
ant s
Ġv al
Ġis s
Ġc le
i vers
an c
Ġex pl
Ġan other
Ġ Q
Ġa v
th ing
n ce
W h
Ġch ild
Ġs ince
i red
l ess
Ġl ife
Ġde velop
itt le
Ġde p
Ġp ass
ã ĥ
Ġt urn
or n
Th is
b ers
ro ss
ĠA d
Ġf r
Ġres p
Ġsec ond
o h
Ġ /
Ġdis c
Ġ &
Ġsomet hing
Ġcomp le
Ġ ed
Ġf il
Ġmon th
a j
u c
Ġgovern ment
Ġwith out
Ġle g
Ġd ist
Ġp ut
Ġqu est
an n
Ġpro t
2 0
Ġne ver
i ence
Ġle vel
Ġar t
Ġth ings
Ġm ight
Ġeff ect
Ġcont ro
Ġc ent
Ġ1 8
Ġall ow
Ġbel ie
ch ool
ot t
Ġinc re
Ġfe el