PumeTu commited on
Commit
8323343
·
verified ·
1 Parent(s): d1e982f

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. checkpoint-100/added_tokens.json +28 -0
  2. checkpoint-100/chat_template.jinja +85 -0
  3. checkpoint-100/merges.txt +0 -0
  4. checkpoint-100/rng_state_0.pth +3 -0
  5. checkpoint-100/rng_state_1.pth +3 -0
  6. checkpoint-100/rng_state_10.pth +3 -0
  7. checkpoint-100/rng_state_100.pth +3 -0
  8. checkpoint-100/rng_state_103.pth +3 -0
  9. checkpoint-100/rng_state_104.pth +3 -0
  10. checkpoint-100/rng_state_105.pth +3 -0
  11. checkpoint-100/rng_state_107.pth +3 -0
  12. checkpoint-100/rng_state_11.pth +3 -0
  13. checkpoint-100/rng_state_110.pth +3 -0
  14. checkpoint-100/rng_state_111.pth +3 -0
  15. checkpoint-100/rng_state_113.pth +3 -0
  16. checkpoint-100/rng_state_117.pth +3 -0
  17. checkpoint-100/rng_state_118.pth +3 -0
  18. checkpoint-100/rng_state_121.pth +3 -0
  19. checkpoint-100/rng_state_124.pth +3 -0
  20. checkpoint-100/rng_state_126.pth +3 -0
  21. checkpoint-100/rng_state_127.pth +3 -0
  22. checkpoint-100/rng_state_15.pth +3 -0
  23. checkpoint-100/rng_state_2.pth +3 -0
  24. checkpoint-100/rng_state_20.pth +3 -0
  25. checkpoint-100/rng_state_23.pth +3 -0
  26. checkpoint-100/rng_state_24.pth +3 -0
  27. checkpoint-100/rng_state_25.pth +3 -0
  28. checkpoint-100/rng_state_27.pth +3 -0
  29. checkpoint-100/rng_state_28.pth +3 -0
  30. checkpoint-100/rng_state_29.pth +3 -0
  31. checkpoint-100/rng_state_30.pth +3 -0
  32. checkpoint-100/rng_state_33.pth +3 -0
  33. checkpoint-100/rng_state_34.pth +3 -0
  34. checkpoint-100/rng_state_36.pth +3 -0
  35. checkpoint-100/rng_state_37.pth +3 -0
  36. checkpoint-100/rng_state_38.pth +3 -0
  37. checkpoint-100/rng_state_39.pth +3 -0
  38. checkpoint-100/rng_state_4.pth +3 -0
  39. checkpoint-100/rng_state_40.pth +3 -0
  40. checkpoint-100/rng_state_42.pth +3 -0
  41. checkpoint-100/rng_state_43.pth +3 -0
  42. checkpoint-100/rng_state_48.pth +3 -0
  43. checkpoint-100/rng_state_5.pth +3 -0
  44. checkpoint-100/rng_state_51.pth +3 -0
  45. checkpoint-100/rng_state_52.pth +3 -0
  46. checkpoint-100/rng_state_54.pth +3 -0
  47. checkpoint-100/rng_state_61.pth +3 -0
  48. checkpoint-100/rng_state_62.pth +3 -0
  49. checkpoint-100/rng_state_63.pth +3 -0
  50. checkpoint-100/rng_state_68.pth +3 -0
checkpoint-100/added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
checkpoint-100/chat_template.jinja ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
27
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
28
+ {%- elif message.role == "assistant" %}
29
+ {%- set content = message.content %}
30
+ {%- set reasoning_content = '' %}
31
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
32
+ {%- set reasoning_content = message.reasoning_content %}
33
+ {%- else %}
34
+ {%- if '</think>' in message.content %}
35
+ {%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
36
+ {%- set reasoning_content = message.content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
37
+ {%- endif %}
38
+ {%- endif %}
39
+ {%- if loop.index0 > ns.last_query_index %}
40
+ {%- if loop.last or (not loop.last and reasoning_content) %}
41
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
42
+ {%- else %}
43
+ {{- '<|im_start|>' + message.role + '\n' + content }}
44
+ {%- endif %}
45
+ {%- else %}
46
+ {{- '<|im_start|>' + message.role + '\n' + content }}
47
+ {%- endif %}
48
+ {%- if message.tool_calls %}
49
+ {%- for tool_call in message.tool_calls %}
50
+ {%- if (loop.first and content) or (not loop.first) %}
51
+ {{- '\n' }}
52
+ {%- endif %}
53
+ {%- if tool_call.function %}
54
+ {%- set tool_call = tool_call.function %}
55
+ {%- endif %}
56
+ {{- '<tool_call>\n{"name": "' }}
57
+ {{- tool_call.name }}
58
+ {{- '", "arguments": ' }}
59
+ {%- if tool_call.arguments is string %}
60
+ {{- tool_call.arguments }}
61
+ {%- else %}
62
+ {{- tool_call.arguments | tojson }}
63
+ {%- endif %}
64
+ {{- '}\n</tool_call>' }}
65
+ {%- endfor %}
66
+ {%- endif %}
67
+ {{- '<|im_end|>\n' }}
68
+ {%- elif message.role == "tool" %}
69
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
70
+ {{- '<|im_start|>user' }}
71
+ {%- endif %}
72
+ {{- '\n<tool_response>\n' }}
73
+ {{- message.content }}
74
+ {{- '\n</tool_response>' }}
75
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
76
+ {{- '<|im_end|>\n' }}
77
+ {%- endif %}
78
+ {%- endif %}
79
+ {%- endfor %}
80
+ {%- if add_generation_prompt %}
81
+ {{- '<|im_start|>assistant\n' }}
82
+ {%- if enable_thinking is defined and enable_thinking is false %}
83
+ {{- '<think>\n\n</think>\n\n' }}
84
+ {%- endif %}
85
+ {%- endif %}
checkpoint-100/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-100/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c03323458a68d87b804b2e069ab403a0d1ff5e4cd3bb8e9c2f823fe2a1e5a288
3
+ size 15429
checkpoint-100/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c64289d718df67618dc729f4129ca8f361c105a5d0ddf9c1b3faf2853953dfe0
3
+ size 15429
checkpoint-100/rng_state_10.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea9d8906431e00edd4b83b921276b342b8c5bb45da111bcef9a00cff2a3a3952
3
+ size 15440
checkpoint-100/rng_state_100.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09b743feba808357d6687228c24b8fc7e6d8ce6f76d7a42440e4defaa56cd070
3
+ size 15451
checkpoint-100/rng_state_103.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:950e93b8bfa872360a193b67d057d5e3b56cbba1f6113379ab90d133a89be9c4
3
+ size 15451
checkpoint-100/rng_state_104.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebbc39951eb294c1fd65fa990f9a47e0ee5ca752be37e3984b98613f1b9e5a7e
3
+ size 15451
checkpoint-100/rng_state_105.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a33e0a48da58a1328d46ea6c3795863bd41b0f116439937bb33d9a6f00b8422b
3
+ size 15451
checkpoint-100/rng_state_107.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95790ba50bd248479e4129ac2253ca1de8a012291b4798db2848418a460cf7e1
3
+ size 15451
checkpoint-100/rng_state_11.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6777b1d8b999d9468c2c7b0a07e31e138e65903cb7a88f5c9c74198b9ad96a12
3
+ size 15440
checkpoint-100/rng_state_110.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee67c0ad82809c10c8b3d84a99a78a167a80c0917aca4ac84df156e80367b621
3
+ size 15451
checkpoint-100/rng_state_111.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a73f277b94a2a91471085e1a786cf1aaa54cac87e419454cb1c4ccb75cc53cf
3
+ size 15451
checkpoint-100/rng_state_113.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a041ca92aac2b0966918003661fa7ef37b1f14fce54c20428a70e83c3341e21
3
+ size 15451
checkpoint-100/rng_state_117.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f74e8dee1867f6f3cb2edcfc5570c89bfb31ac791ab381d1150cb93ded30de47
3
+ size 15451
checkpoint-100/rng_state_118.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c4d6c2a076039bae992971222d6acb1eba8b12c54c6b5b3fd6ac5264bafb806
3
+ size 15451
checkpoint-100/rng_state_121.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a95fe534c91913b6d5d33d4bc19e29f19325752201e71665c4b6ab80ac2fb994
3
+ size 15451
checkpoint-100/rng_state_124.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:245d237c0379716114c77092c8fb854360b4f1bd37179f32febd2996c7024819
3
+ size 15451
checkpoint-100/rng_state_126.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9a87242843a0b35587524aa8ddd7a77f165b89daa6dee277c5415ca1b38c4dd
3
+ size 15451
checkpoint-100/rng_state_127.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6567a55a20ebc01d5ce08ae9e6781fdd61c9f7590fc04f2b4bd0b715b7d3f2fd
3
+ size 15451
checkpoint-100/rng_state_15.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0590c8abd59b070aae05bd10c36a5733451b2021a3ccf0a0b729b0a2234f38ae
3
+ size 15440
checkpoint-100/rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dba3b6b6e716c4b6adc33c35a6fb004e586f3c31fb3500575822b1c74365a4a6
3
+ size 15429
checkpoint-100/rng_state_20.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19b74d595c3d4f7015f96544e37e1072d1c4e671b7dc7f50aaeb0a7e77d75477
3
+ size 15440
checkpoint-100/rng_state_23.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d4f409b62f195e27c4aedcd90b65a160ee3c8d17526390a9edf926a2770efd8
3
+ size 15440
checkpoint-100/rng_state_24.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90d89e8bc320e2f5adf62ac5fedf511b028020c2d3007a96767dfee9952121e3
3
+ size 15440
checkpoint-100/rng_state_25.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77a1a2242315a4ebf94047f47b99aec62f43598885d5b44b148abf6cf8964cfb
3
+ size 15440
checkpoint-100/rng_state_27.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a13d5ff796f6438b60006c0474b5781b76d4716bceb7c8fd979c67ce6ee58d88
3
+ size 15440
checkpoint-100/rng_state_28.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d155f62d8b0c01d0f6da6e7013976a18f7b9528af460cc5cca1623be5a33fe24
3
+ size 15440
checkpoint-100/rng_state_29.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:371761d2202d8cdaec6cb60cff13d560775d8d080b74d1e09a16a446f56ec33e
3
+ size 15440
checkpoint-100/rng_state_30.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b39c1d9f647ca339dab2d1bd02c4fde971b9fd4e7dd2e5b52adfc97920fceb69
3
+ size 15440
checkpoint-100/rng_state_33.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8fd3125ea4a6e812d0bd35d6589934b2e7355884543c4e7b76a052e67fc3e1f
3
+ size 15440
checkpoint-100/rng_state_34.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e9e65bb6ece4a3f68a254b85adcd31b13caaea60ca8e728b8fa69af8e585559
3
+ size 15440
checkpoint-100/rng_state_36.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8364cde96879c1898766bbde232474283089b942fa316a9935df6751dbb62a82
3
+ size 15440
checkpoint-100/rng_state_37.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c702bf180384811753a5921deb7c0bfca076d2017bf937bcec8b00df8cfe9ef
3
+ size 15440
checkpoint-100/rng_state_38.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1e5c0215b10869a4306fd053f7df87fb2403e364a9e2687d80e4b2d51efb194
3
+ size 15440
checkpoint-100/rng_state_39.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43067085ce8f9bdeab4452ad054ad4d4ab1de45920531489746a554ac08d18af
3
+ size 15440
checkpoint-100/rng_state_4.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87cc849b03c8f37c681a9b9d2a78e976b4cee52285cd9c916f1c553a18850dfa
3
+ size 15429
checkpoint-100/rng_state_40.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1dd8771e61233bb5014677232da046a0c7b8e983ae167ab8f7c31540c3b52a4
3
+ size 15440
checkpoint-100/rng_state_42.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10985d02fbe0e928c9f8830a232335e1ee29d51c8a505feed037155261f3d6ff
3
+ size 15440
checkpoint-100/rng_state_43.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3898967f640cf26ab36ec27c6cdcbf34b2987db96fca08740ad56717070fbf85
3
+ size 15440
checkpoint-100/rng_state_48.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8074681f0b4c9ccccbf6cc0eccd321e30acf7fadb78b5d74a4c492d6fcc0feac
3
+ size 15440
checkpoint-100/rng_state_5.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8b452abee38c305ebd43a8bf7e699809c4a2c855fa8516dfffb23b2e0b1d0f0
3
+ size 15429
checkpoint-100/rng_state_51.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:581fd0c81e20573cfa23bb530a20b203b18700a56f7bd6519db2f43269975b79
3
+ size 15440
checkpoint-100/rng_state_52.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:709770e5613f1639ef48dbb4d14f4ee1644e3974ea2c7a32b6774ce91b2fb246
3
+ size 15440
checkpoint-100/rng_state_54.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f1295c08e9e90286737b897528d1250736eb2b539cf4d20e5882d51b9538199
3
+ size 15440
checkpoint-100/rng_state_61.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f59503f73734b464ae4410d6e9a23d01907ae65c59f80a6832cfa8edaf4c334b
3
+ size 15440
checkpoint-100/rng_state_62.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fd5603afa3f8d365579add7f2888f6fecbadc052f0036358fe5d9742d730429
3
+ size 15440
checkpoint-100/rng_state_63.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2534aee2655e1b1ab7308a0bf10513d55dfe56c34026b95af0e8399b2ec4e3fd
3
+ size 15440
checkpoint-100/rng_state_68.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58ce8491fc1ac98137f5bb2709328e57d3e6350b6951650de9088cf75a66136d
3
+ size 15440