Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

Administrator / level3-lesson22-diy1

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit eeea131a authored a year ago by BellCodeEditor's avatar BellCodeEditor
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

auto save

parent 778e1dc3
Show whitespace changes
Inline Side-by-side
Showing with 19 additions and 24 deletions
  • b.py
  • d.py
  • dive.gif
  • img/0.png
  • img/1.png
  • img/10.png
  • img/100.png
  • img/101.png
  • img/102.png
  • img/103.png
  • img/104.png
  • img/105.png
  • img/106.png
  • img/107.png
  • img/108.png
  • img/109.png
  • img/11.png
  • img/110.png
  • img/111.png
  • img/112.png
  • img/113.png
  • img/114.png
  • img/115.png
  • img/116.png
  • img/117.png
  • img/118.png
  • img/119.png
  • img/12.png
  • img/120.png
  • img/121.png
  • img/122.png
  • img/123.png
  • img/124.png
  • img/125.png
  • img/126.png
  • img/127.png
  • img/128.png
  • img/129.png
  • img/13.png
  • img/130.png
  • img/131.png
  • img/132.png
  • img/133.png
  • img/134.png
  • img/135.png
  • img/136.png
  • img/137.png
  • img/138.png
  • img/139.png
  • img/14.png
  • img/140.png
  • img/141.png
  • img/142.png
  • img/143.png
  • img/144.png
  • img/145.png
  • img/146.png
  • img/147.png
  • img/148.png
  • img/149.png
  • img/15.png
  • img/150.png
  • img/151.png
  • img/152.png
  • img/153.png
  • img/154.png
  • img/155.png
  • img/156.png
  • img/157.png
  • img/158.png
  • img/159.png
  • img/16.png
  • img/160.png
  • img/161.png
  • img/162.png
  • img/163.png
  • img/164.png
  • img/165.png
  • img/166.png
  • img/167.png
  • img/168.png
  • img/169.png
  • img/17.png
  • img/170.png
  • img/171.png
  • img/172.png
  • img/173.png
  • img/174.png
  • img/175.png
  • img/176.png
  • img/177.png
  • img/178.png
  • img/179.png
  • img/18.png
  • img/180.png
  • img/181.png
  • img/182.png
  • img/183.png
  • img/184.png
  • img/185.png
  • img/186.png
  • img/187.png
  • img/188.png
  • img/189.png
  • img/19.png
  • img/2.png
  • img/20.png
  • img/21.png
  • img/22.png
  • img/23.png
  • img/24.png
  • img/25.png
  • img/26.png
  • img/27.png
  • img/28.png
  • img/29.png
  • img/3.png
  • img/30.png
  • img/31.png
  • img/32.png
  • img/33.png
  • img/34.png
  • img/35.png
  • img/36.png
  • img/37.png
  • img/38.png
  • img/39.png
  • img/4.png
  • img/40.png
  • img/41.png
  • img/42.png
  • img/43.png
  • img/44.png
  • img/45.png
  • img/46.png
  • img/47.png
  • img/48.png
  • img/49.png
  • img/5.png
  • img/50.png
  • img/51.png
  • img/52.png
  • img/53.png
  • img/54.png
  • img/55.png
  • img/56.png
  • img/57.png
  • img/58.png
  • img/59.png
  • img/6.png
  • img/60.png
  • img/61.png
  • img/62.png
  • img/63.png
  • img/64.png
  • img/65.png
  • img/66.png
  • img/67.png
  • img/68.png
  • img/69.png
  • img/7.png
  • img/70.png
  • img/71.png
  • img/72.png
  • img/73.png
  • img/74.png
  • img/75.png
  • img/76.png
  • img/77.png
  • img/78.png
  • img/79.png
  • img/8.png
  • img/80.png
  • img/81.png
  • img/82.png
  • img/83.png
  • img/84.png
  • img/85.png
  • img/86.png
  • img/87.png
  • img/88.png
  • img/89.png
  • img/9.png
  • img/90.png
  • img/91.png
  • img/92.png
  • img/93.png
  • img/94.png
  • img/95.png
  • img/96.png
  • img/97.png
  • img/98.png
  • img/99.png
b.py
View file @ eeea131a
from tkinter import filedialog, Tk
from PIL import Image
from PIL import Image,ImageSequence
img = Image.open("bot.gif")
num = 0
for i in ImageSequence.Iterator(img):
i.save("img/"+str(num)+".png") # 这里把分解到的每一张静态图保存到当前目录下
num += 1
rt=Tk()
rt.withdraw()
path=filedialog.askopenfilenames(title='选择图片文件',filetypes=[('png','.png')],initialdir='./')
sequence=[]
for i in path:
img=Image.open(i)
sequence.append(0,img)
sequence[0].save("bot.gif",save_all=True,
append_images=sequence[1:])
\ No newline at end of file
This diff is collapsed. Click to expand it.
d.py
View file @ eeea131a
from tkinter import filedialog
from tkinter import filedialog, Tk
from PIL import Image
root = Tk()
root = withdraw()
path = filedialog.askopenfilenames(title = '选择图片文件',
filetypes = [('ALL Files', '*')],
initialdir = "./")
img_list = []
for i in path:
img = image.open(1)
img_list.append(0,img)
root.withdraw()
path = filedialog.askopenfilenames(title='选择图片文件',
filetypes=[("png", ".png")],
initialdir="./")
img = []
for i in path:
img2 = Image.open(i)
img.insert(0, img2)
img_list[0].save("bot.gif",save_all = True,
append_images = img_list[1:])
\ No newline at end of file
img[0].save("dive.gif", save_all=True,
append_images=img[1:])
\ No newline at end of file
This diff is collapsed. Click to expand it.
dive.gif
View file @ eeea131a
dive.gif

1.9 MB | W: 0px | H: 0px

dive.gif

1.72 MB | W: 0px | H: 0px

dive.gif
dive.gif
dive.gif
dive.gif
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed. Click to expand it.
img/0.png 0 → 100644
View file @ eeea131a
img/0.png

7.69 KB

This diff is collapsed. Click to expand it.
img/1.png 0 → 100644
View file @ eeea131a
img/1.png

7.72 KB

This diff is collapsed. Click to expand it.
img/10.png 0 → 100644
View file @ eeea131a
img/10.png

7.57 KB

This diff is collapsed. Click to expand it.
img/100.png 0 → 100644
View file @ eeea131a
img/100.png

10.5 KB

This diff is collapsed. Click to expand it.
img/101.png 0 → 100644
View file @ eeea131a
img/101.png

10.6 KB

This diff is collapsed. Click to expand it.
img/102.png 0 → 100644
View file @ eeea131a
img/102.png

10.6 KB

This diff is collapsed. Click to expand it.
img/103.png 0 → 100644
View file @ eeea131a
img/103.png

10.6 KB

This diff is collapsed. Click to expand it.
img/104.png 0 → 100644
View file @ eeea131a
img/104.png

10.6 KB

This diff is collapsed. Click to expand it.
img/105.png 0 → 100644
View file @ eeea131a
img/105.png

10.6 KB

This diff is collapsed. Click to expand it.
img/106.png 0 → 100644
View file @ eeea131a
img/106.png

10.5 KB

This diff is collapsed. Click to expand it.
img/107.png 0 → 100644
View file @ eeea131a
img/107.png

10.5 KB

This diff is collapsed. Click to expand it.
img/108.png 0 → 100644
View file @ eeea131a
img/108.png

10.5 KB

This diff is collapsed. Click to expand it.
img/109.png 0 → 100644
View file @ eeea131a
img/109.png

10.5 KB

This diff is collapsed. Click to expand it.
img/11.png 0 → 100644
View file @ eeea131a
img/11.png

7.57 KB

This diff is collapsed. Click to expand it.
img/110.png 0 → 100644
View file @ eeea131a
img/110.png

10.6 KB

This diff is collapsed. Click to expand it.
img/111.png 0 → 100644
View file @ eeea131a
img/111.png

10.1 KB

This diff is collapsed. Click to expand it.
img/112.png 0 → 100644
View file @ eeea131a
img/112.png

10.2 KB

This diff is collapsed. Click to expand it.
img/113.png 0 → 100644
View file @ eeea131a
img/113.png

9.8 KB

This diff is collapsed. Click to expand it.
img/114.png 0 → 100644
View file @ eeea131a
img/114.png

9.83 KB

This diff is collapsed. Click to expand it.
img/115.png 0 → 100644
View file @ eeea131a
img/115.png

9.52 KB

This diff is collapsed. Click to expand it.
img/116.png 0 → 100644
View file @ eeea131a
img/116.png

9.41 KB

This diff is collapsed. Click to expand it.
img/117.png 0 → 100644
View file @ eeea131a
img/117.png

9.9 KB

This diff is collapsed. Click to expand it.
img/118.png 0 → 100644
View file @ eeea131a
img/118.png

8.89 KB

This diff is collapsed. Click to expand it.
img/119.png 0 → 100644
View file @ eeea131a
img/119.png

9.12 KB

This diff is collapsed. Click to expand it.
img/12.png 0 → 100644
View file @ eeea131a
img/12.png

7.7 KB

This diff is collapsed. Click to expand it.
img/120.png 0 → 100644
View file @ eeea131a
img/120.png

8.69 KB

This diff is collapsed. Click to expand it.
img/121.png 0 → 100644
View file @ eeea131a
img/121.png

8.71 KB

This diff is collapsed. Click to expand it.
img/122.png 0 → 100644
View file @ eeea131a
img/122.png

8.53 KB

This diff is collapsed. Click to expand it.
img/123.png 0 → 100644
View file @ eeea131a
img/123.png

8.57 KB

This diff is collapsed. Click to expand it.
img/124.png 0 → 100644
View file @ eeea131a
img/124.png

8.54 KB

This diff is collapsed. Click to expand it.
img/125.png 0 → 100644
View file @ eeea131a
img/125.png

8.55 KB

This diff is collapsed. Click to expand it.
img/126.png 0 → 100644
View file @ eeea131a
img/126.png

8.62 KB

This diff is collapsed. Click to expand it.
img/127.png 0 → 100644
View file @ eeea131a
img/127.png

8.63 KB

This diff is collapsed. Click to expand it.
img/128.png 0 → 100644
View file @ eeea131a
img/128.png

8.67 KB

This diff is collapsed. Click to expand it.
img/129.png 0 → 100644
View file @ eeea131a
img/129.png

8.67 KB

This diff is collapsed. Click to expand it.
img/13.png 0 → 100644
View file @ eeea131a
img/13.png

7.71 KB

This diff is collapsed. Click to expand it.
img/130.png 0 → 100644
View file @ eeea131a
img/130.png

8.68 KB

This diff is collapsed. Click to expand it.
img/131.png 0 → 100644
View file @ eeea131a
img/131.png

8.68 KB

This diff is collapsed. Click to expand it.
img/132.png 0 → 100644
View file @ eeea131a
img/132.png

8.67 KB

This diff is collapsed. Click to expand it.
img/133.png 0 → 100644
View file @ eeea131a
img/133.png

8.68 KB

This diff is collapsed. Click to expand it.
img/134.png 0 → 100644
View file @ eeea131a
img/134.png

8.69 KB

This diff is collapsed. Click to expand it.
img/135.png 0 → 100644
View file @ eeea131a
img/135.png

8.67 KB

This diff is collapsed. Click to expand it.
img/136.png 0 → 100644
View file @ eeea131a
img/136.png

8.67 KB

This diff is collapsed. Click to expand it.
img/137.png 0 → 100644
View file @ eeea131a
img/137.png

8.67 KB

This diff is collapsed. Click to expand it.
img/138.png 0 → 100644
View file @ eeea131a
img/138.png

8.66 KB

This diff is collapsed. Click to expand it.
img/139.png 0 → 100644
View file @ eeea131a
img/139.png

8.68 KB

This diff is collapsed. Click to expand it.
img/14.png 0 → 100644
View file @ eeea131a
img/14.png

7.75 KB

This diff is collapsed. Click to expand it.
img/140.png 0 → 100644
View file @ eeea131a
img/140.png

8.65 KB

This diff is collapsed. Click to expand it.
img/141.png 0 → 100644
View file @ eeea131a
img/141.png

8.63 KB

This diff is collapsed. Click to expand it.
img/142.png 0 → 100644
View file @ eeea131a
img/142.png

8.64 KB

This diff is collapsed. Click to expand it.
img/143.png 0 → 100644
View file @ eeea131a
img/143.png

8.78 KB

This diff is collapsed. Click to expand it.
img/144.png 0 → 100644
View file @ eeea131a
img/144.png

8.82 KB

This diff is collapsed. Click to expand it.
img/145.png 0 → 100644
View file @ eeea131a
img/145.png

8.84 KB

This diff is collapsed. Click to expand it.
img/146.png 0 → 100644
View file @ eeea131a
img/146.png

8.84 KB

This diff is collapsed. Click to expand it.
img/147.png 0 → 100644
View file @ eeea131a
img/147.png

8.85 KB

This diff is collapsed. Click to expand it.
img/148.png 0 → 100644
View file @ eeea131a
img/148.png

8.87 KB

This diff is collapsed. Click to expand it.
img/149.png 0 → 100644
View file @ eeea131a
img/149.png

8.87 KB

This diff is collapsed. Click to expand it.
img/15.png 0 → 100644
View file @ eeea131a
img/15.png

7.92 KB

This diff is collapsed. Click to expand it.
img/150.png 0 → 100644
View file @ eeea131a
img/150.png

8.9 KB

This diff is collapsed. Click to expand it.
img/151.png 0 → 100644
View file @ eeea131a
img/151.png

8.92 KB

This diff is collapsed. Click to expand it.
img/152.png 0 → 100644
View file @ eeea131a
img/152.png

8.92 KB

This diff is collapsed. Click to expand it.
img/153.png 0 → 100644
View file @ eeea131a
img/153.png

8.9 KB

This diff is collapsed. Click to expand it.
img/154.png 0 → 100644
View file @ eeea131a
img/154.png

8.92 KB

This diff is collapsed. Click to expand it.
img/155.png 0 → 100644
View file @ eeea131a
img/155.png

8.93 KB

This diff is collapsed. Click to expand it.
img/156.png 0 → 100644
View file @ eeea131a
img/156.png

8.93 KB

This diff is collapsed. Click to expand it.
img/157.png 0 → 100644
View file @ eeea131a
img/157.png

8.93 KB

This diff is collapsed. Click to expand it.
img/158.png 0 → 100644
View file @ eeea131a
img/158.png

8.93 KB

This diff is collapsed. Click to expand it.
img/159.png 0 → 100644
View file @ eeea131a
img/159.png

8.93 KB

This diff is collapsed. Click to expand it.
img/16.png 0 → 100644
View file @ eeea131a
img/16.png

7.79 KB

This diff is collapsed. Click to expand it.
img/160.png 0 → 100644
View file @ eeea131a
img/160.png

9.11 KB

This diff is collapsed. Click to expand it.
img/161.png 0 → 100644
View file @ eeea131a
img/161.png

9.14 KB

This diff is collapsed. Click to expand it.
img/162.png 0 → 100644
View file @ eeea131a
img/162.png

9.12 KB

This diff is collapsed. Click to expand it.
img/163.png 0 → 100644
View file @ eeea131a
img/163.png

9.22 KB

This diff is collapsed. Click to expand it.
img/164.png 0 → 100644
View file @ eeea131a
img/164.png

9.22 KB

This diff is collapsed. Click to expand it.
img/165.png 0 → 100644
View file @ eeea131a
img/165.png

9.37 KB

This diff is collapsed. Click to expand it.
img/166.png 0 → 100644
View file @ eeea131a
img/166.png

9.28 KB

This diff is collapsed. Click to expand it.
img/167.png 0 → 100644
View file @ eeea131a
img/167.png

9.59 KB

This diff is collapsed. Click to expand it.
img/168.png 0 → 100644
View file @ eeea131a
img/168.png

9.67 KB

This diff is collapsed. Click to expand it.
img/169.png 0 → 100644
View file @ eeea131a
img/169.png

10.1 KB

This diff is collapsed. Click to expand it.
img/17.png 0 → 100644
View file @ eeea131a
img/17.png

8.13 KB

This diff is collapsed. Click to expand it.
img/170.png 0 → 100644
View file @ eeea131a
img/170.png

9.72 KB

This diff is collapsed. Click to expand it.
img/171.png 0 → 100644
View file @ eeea131a
img/171.png

9.33 KB

This diff is collapsed. Click to expand it.
img/172.png 0 → 100644
View file @ eeea131a
img/172.png

9.51 KB

This diff is collapsed. Click to expand it.
img/173.png 0 → 100644
View file @ eeea131a
img/173.png

9.3 KB

This diff is collapsed. Click to expand it.
img/174.png 0 → 100644
View file @ eeea131a
img/174.png

9.13 KB

This diff is collapsed. Click to expand it.
img/175.png 0 → 100644
View file @ eeea131a
img/175.png

9.12 KB

This diff is collapsed. Click to expand it.
img/176.png 0 → 100644
View file @ eeea131a
img/176.png

9.22 KB

This diff is collapsed. Click to expand it.
img/177.png 0 → 100644
View file @ eeea131a
img/177.png

9.2 KB

This diff is collapsed. Click to expand it.
img/178.png 0 → 100644
View file @ eeea131a
img/178.png

9.14 KB

This diff is collapsed. Click to expand it.
img/179.png 0 → 100644
View file @ eeea131a
img/179.png

9.19 KB

This diff is collapsed. Click to expand it.
img/18.png 0 → 100644
View file @ eeea131a
img/18.png

8.33 KB

This diff is collapsed. Click to expand it.
img/180.png 0 → 100644
View file @ eeea131a
img/180.png

9.26 KB

This diff is collapsed. Click to expand it.
img/181.png 0 → 100644
View file @ eeea131a
img/181.png

9.32 KB

This diff is collapsed. Click to expand it.
img/182.png 0 → 100644
View file @ eeea131a
img/182.png

8.99 KB

This diff is collapsed. Click to expand it.
img/183.png 0 → 100644
View file @ eeea131a
img/183.png

9.11 KB

This diff is collapsed. Click to expand it.
img/184.png 0 → 100644
View file @ eeea131a
img/184.png

9.3 KB

This diff is collapsed. Click to expand it.
img/185.png 0 → 100644
View file @ eeea131a
img/185.png

8.85 KB

This diff is collapsed. Click to expand it.
img/186.png 0 → 100644
View file @ eeea131a
img/186.png

8.13 KB

This diff is collapsed. Click to expand it.
img/187.png 0 → 100644
View file @ eeea131a
img/187.png

8.17 KB

This diff is collapsed. Click to expand it.
img/188.png 0 → 100644
View file @ eeea131a
img/188.png

8.27 KB

This diff is collapsed. Click to expand it.
img/189.png 0 → 100644
View file @ eeea131a
img/189.png

8.31 KB

This diff is collapsed. Click to expand it.
img/19.png 0 → 100644
View file @ eeea131a
img/19.png

8.32 KB

This diff is collapsed. Click to expand it.
img/2.png 0 → 100644
View file @ eeea131a
img/2.png

7.69 KB

This diff is collapsed. Click to expand it.
img/20.png 0 → 100644
View file @ eeea131a
img/20.png

8.38 KB

This diff is collapsed. Click to expand it.
img/21.png 0 → 100644
View file @ eeea131a
img/21.png

8.36 KB

This diff is collapsed. Click to expand it.
img/22.png 0 → 100644
View file @ eeea131a
img/22.png

8.24 KB

This diff is collapsed. Click to expand it.
img/23.png 0 → 100644
View file @ eeea131a
img/23.png

8.3 KB

This diff is collapsed. Click to expand it.
img/24.png 0 → 100644
View file @ eeea131a
img/24.png

8.33 KB

This diff is collapsed. Click to expand it.
img/25.png 0 → 100644
View file @ eeea131a
img/25.png

8.33 KB

This diff is collapsed. Click to expand it.
img/26.png 0 → 100644
View file @ eeea131a
img/26.png

8.3 KB

This diff is collapsed. Click to expand it.
img/27.png 0 → 100644
View file @ eeea131a
img/27.png

8.36 KB

This diff is collapsed. Click to expand it.
img/28.png 0 → 100644
View file @ eeea131a
img/28.png

8.7 KB

This diff is collapsed. Click to expand it.
img/29.png 0 → 100644
View file @ eeea131a
img/29.png

8.1 KB

This diff is collapsed. Click to expand it.
img/3.png 0 → 100644
View file @ eeea131a
img/3.png

7.63 KB

This diff is collapsed. Click to expand it.
img/30.png 0 → 100644
View file @ eeea131a
img/30.png

8.09 KB

This diff is collapsed. Click to expand it.
img/31.png 0 → 100644
View file @ eeea131a
img/31.png

7.82 KB

This diff is collapsed. Click to expand it.
img/32.png 0 → 100644
View file @ eeea131a
img/32.png

7.84 KB

This diff is collapsed. Click to expand it.
img/33.png 0 → 100644
View file @ eeea131a
img/33.png

8.45 KB

This diff is collapsed. Click to expand it.
img/34.png 0 → 100644
View file @ eeea131a
img/34.png

8.41 KB

This diff is collapsed. Click to expand it.
img/35.png 0 → 100644
View file @ eeea131a
img/35.png

8.51 KB

This diff is collapsed. Click to expand it.
img/36.png 0 → 100644
View file @ eeea131a
img/36.png

8.45 KB

This diff is collapsed. Click to expand it.
img/37.png 0 → 100644
View file @ eeea131a
img/37.png

8.44 KB

This diff is collapsed. Click to expand it.
img/38.png 0 → 100644
View file @ eeea131a
img/38.png

8.34 KB

This diff is collapsed. Click to expand it.
img/39.png 0 → 100644
View file @ eeea131a
img/39.png

8.82 KB

This diff is collapsed. Click to expand it.
img/4.png 0 → 100644
View file @ eeea131a
img/4.png

7.63 KB

This diff is collapsed. Click to expand it.
img/40.png 0 → 100644
View file @ eeea131a
img/40.png

8.67 KB

This diff is collapsed. Click to expand it.
img/41.png 0 → 100644
View file @ eeea131a
img/41.png

8.79 KB

This diff is collapsed. Click to expand it.
img/42.png 0 → 100644
View file @ eeea131a
img/42.png

8.44 KB

This diff is collapsed. Click to expand it.
img/43.png 0 → 100644
View file @ eeea131a
img/43.png

8.61 KB

This diff is collapsed. Click to expand it.
img/44.png 0 → 100644
View file @ eeea131a
img/44.png

8.59 KB

This diff is collapsed. Click to expand it.
img/45.png 0 → 100644
View file @ eeea131a
img/45.png

8.61 KB

This diff is collapsed. Click to expand it.
img/46.png 0 → 100644
View file @ eeea131a
img/46.png

8.6 KB

This diff is collapsed. Click to expand it.
img/47.png 0 → 100644
View file @ eeea131a
img/47.png

8.63 KB

This diff is collapsed. Click to expand it.
img/48.png 0 → 100644
View file @ eeea131a
img/48.png

9.03 KB

This diff is collapsed. Click to expand it.
img/49.png 0 → 100644
View file @ eeea131a
img/49.png

8.07 KB

This diff is collapsed. Click to expand it.
img/5.png 0 → 100644
View file @ eeea131a
img/5.png

7.61 KB

This diff is collapsed. Click to expand it.
img/50.png 0 → 100644
View file @ eeea131a
img/50.png

8.07 KB

This diff is collapsed. Click to expand it.
img/51.png 0 → 100644
View file @ eeea131a
img/51.png

8.59 KB

This diff is collapsed. Click to expand it.
img/52.png 0 → 100644
View file @ eeea131a
img/52.png

8.57 KB

This diff is collapsed. Click to expand it.
img/53.png 0 → 100644
View file @ eeea131a
img/53.png

8.65 KB

This diff is collapsed. Click to expand it.
img/54.png 0 → 100644
View file @ eeea131a
img/54.png

8.09 KB

This diff is collapsed. Click to expand it.
img/55.png 0 → 100644
View file @ eeea131a
img/55.png

7.72 KB

This diff is collapsed. Click to expand it.
img/56.png 0 → 100644
View file @ eeea131a
img/56.png

8.41 KB

This diff is collapsed. Click to expand it.
img/57.png 0 → 100644
View file @ eeea131a
img/57.png

8.6 KB

This diff is collapsed. Click to expand it.
img/58.png 0 → 100644
View file @ eeea131a
img/58.png

8.61 KB

This diff is collapsed. Click to expand it.
img/59.png 0 → 100644
View file @ eeea131a
img/59.png

8.77 KB

This diff is collapsed. Click to expand it.
img/6.png 0 → 100644
View file @ eeea131a
img/6.png

7.54 KB

This diff is collapsed. Click to expand it.
img/60.png 0 → 100644
View file @ eeea131a
img/60.png

8.84 KB

This diff is collapsed. Click to expand it.
img/61.png 0 → 100644
View file @ eeea131a
img/61.png

8.99 KB

This diff is collapsed. Click to expand it.
img/62.png 0 → 100644
View file @ eeea131a
img/62.png

8.97 KB

This diff is collapsed. Click to expand it.
img/63.png 0 → 100644
View file @ eeea131a
img/63.png

9.01 KB

This diff is collapsed. Click to expand it.
img/64.png 0 → 100644
View file @ eeea131a
img/64.png

9.04 KB

This diff is collapsed. Click to expand it.
img/65.png 0 → 100644
View file @ eeea131a
img/65.png

8.94 KB

This diff is collapsed. Click to expand it.
img/66.png 0 → 100644
View file @ eeea131a
img/66.png

9 KB

This diff is collapsed. Click to expand it.
img/67.png 0 → 100644
View file @ eeea131a
img/67.png

8.93 KB

This diff is collapsed. Click to expand it.
img/68.png 0 → 100644
View file @ eeea131a
img/68.png

8.96 KB

This diff is collapsed. Click to expand it.
img/69.png 0 → 100644
View file @ eeea131a
img/69.png

9.05 KB

This diff is collapsed. Click to expand it.
img/7.png 0 → 100644
View file @ eeea131a
img/7.png

7.56 KB

This diff is collapsed. Click to expand it.
img/70.png 0 → 100644
View file @ eeea131a
img/70.png

9.04 KB

This diff is collapsed. Click to expand it.
img/71.png 0 → 100644
View file @ eeea131a
img/71.png

9.06 KB

This diff is collapsed. Click to expand it.
img/72.png 0 → 100644
View file @ eeea131a
img/72.png

9.08 KB

This diff is collapsed. Click to expand it.
img/73.png 0 → 100644
View file @ eeea131a
img/73.png

9.49 KB

This diff is collapsed. Click to expand it.
img/74.png 0 → 100644
View file @ eeea131a
img/74.png

9.6 KB

This diff is collapsed. Click to expand it.
img/75.png 0 → 100644
View file @ eeea131a
img/75.png

9.59 KB

This diff is collapsed. Click to expand it.
img/76.png 0 → 100644
View file @ eeea131a
img/76.png

9.64 KB

This diff is collapsed. Click to expand it.
img/77.png 0 → 100644
View file @ eeea131a
img/77.png

9.68 KB

This diff is collapsed. Click to expand it.
img/78.png 0 → 100644
View file @ eeea131a
img/78.png

9.74 KB

This diff is collapsed. Click to expand it.
img/79.png 0 → 100644
View file @ eeea131a
img/79.png

9.71 KB

This diff is collapsed. Click to expand it.
img/8.png 0 → 100644
View file @ eeea131a
img/8.png

7.52 KB

This diff is collapsed. Click to expand it.
img/80.png 0 → 100644
View file @ eeea131a
img/80.png

9.75 KB

This diff is collapsed. Click to expand it.
img/81.png 0 → 100644
View file @ eeea131a
img/81.png

9.78 KB

This diff is collapsed. Click to expand it.
img/82.png 0 → 100644
View file @ eeea131a
img/82.png

9.8 KB

This diff is collapsed. Click to expand it.
img/83.png 0 → 100644
View file @ eeea131a
img/83.png

9.83 KB

This diff is collapsed. Click to expand it.
img/84.png 0 → 100644
View file @ eeea131a
img/84.png

9.87 KB

This diff is collapsed. Click to expand it.
img/85.png 0 → 100644
View file @ eeea131a
img/85.png

9.86 KB

This diff is collapsed. Click to expand it.
img/86.png 0 → 100644
View file @ eeea131a
img/86.png

10.1 KB

This diff is collapsed. Click to expand it.
img/87.png 0 → 100644
View file @ eeea131a
img/87.png

10.2 KB

This diff is collapsed. Click to expand it.
img/88.png 0 → 100644
View file @ eeea131a
img/88.png

10.2 KB

This diff is collapsed. Click to expand it.
img/89.png 0 → 100644
View file @ eeea131a
img/89.png

10.2 KB

This diff is collapsed. Click to expand it.
img/9.png 0 → 100644
View file @ eeea131a
img/9.png

7.56 KB

This diff is collapsed. Click to expand it.
img/90.png 0 → 100644
View file @ eeea131a
img/90.png

10.4 KB

This diff is collapsed. Click to expand it.
img/91.png 0 → 100644
View file @ eeea131a
img/91.png

10.3 KB

This diff is collapsed. Click to expand it.
img/92.png 0 → 100644
View file @ eeea131a
img/92.png

10.2 KB

This diff is collapsed. Click to expand it.
img/93.png 0 → 100644
View file @ eeea131a
img/93.png

10.5 KB

This diff is collapsed. Click to expand it.
img/94.png 0 → 100644
View file @ eeea131a
img/94.png

10.5 KB

This diff is collapsed. Click to expand it.
img/95.png 0 → 100644
View file @ eeea131a
img/95.png

10.5 KB

This diff is collapsed. Click to expand it.
img/96.png 0 → 100644
View file @ eeea131a
img/96.png

10.5 KB

This diff is collapsed. Click to expand it.
img/97.png 0 → 100644
View file @ eeea131a
img/97.png

10.5 KB

This diff is collapsed. Click to expand it.
img/98.png 0 → 100644
View file @ eeea131a
img/98.png

10.5 KB

This diff is collapsed. Click to expand it.
img/99.png 0 → 100644
View file @ eeea131a
img/99.png

10.5 KB

This diff is collapsed. Click to expand it.
  • Write
  • Preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment