This repository was archived by the owner on Aug 5, 2022. It is now read-only.
Commit 5d1e922
Merge bazel build master (#9)
* Fix code for Bazel change --incompatible_no_support_tools_in_action_inputs (bazel-contrib#758)
* Specs2 filtering runner now filters test cases according to filter. (bazel-contrib#759)
This allows the bazel test runner correctly generate the test log, based only on tests that actually did run.
* Add scala_doc rule (bazel-contrib#760)
* move collect_plugin_paths to common.bzl
* add scala_doc rule + aspect implementations
* add basic scala_doc Markdown documentation
* add scala_doc example
* collect plugins in aspect too
* declare_directory for scaldoc output path or else it complains
* add a simple test target for scala_doc rule
* add doc note about scaladoc being kind of slow
* fix scala_doc.md code block
* privatize scaladoc aspect
* get more src_files/compile_jars
* also accept scalacopts in scala_doc
* turn off scaladoc warnings for now
* use host_path_separator in classpath
* Update scala_doc.md
fix the string `scala_doc` which was copy-pasted as `scala_binary`
* Explicitly convert depset to list (bazel-contrib#761)
This will be required by Bazel 0.27, where the flag
`--incompatible_no_support_tools_in_action_inputs` will be on by
default.
The function `collect_plugin_paths` iterates over its argument, so we
need to flatten the depset.
* Make sure that plus-one-deps from exports of direct deps also propagate (bazel-contrib#764)
* PlusOne propagates PlusOne deps of exports
* rename of tests
* correct test dependency
* use scala toolchain to toggle on +1 collection
* fix grpc opencensus stats integration (bazel-contrib#762)
* fix grpc opencensus stats integration
- upgrade opencensus-java packages to the latest (0.22.1)
- add opencensus-impl and opencensus-impl-core
* add opencensus-impl transitive dependency com.lmax:disruptor
* Add Canva to the adopters list (bazel-contrib#770)
* Depset is not iterable (bazel-contrib#773)
* Specify which version of bazel is required. (bazel-contrib#772)
* Specify which version of bazel is required.
* Update README.md
* Specs2 filtering of JUnit descriptions (bazel-contrib#766)
* Specs2 now will create its JUnit Description tree with filtered child items
* Creating a filtered description tree from Specs2 utilities - keeps ordering and hashCodes intact
* Redirecting test error output
* Update "Getting started" WORKSPACE block (bazel-contrib#778)
* Migrate from java_common.create_provider to JavaInfo() (bazel-contrib#781)
* Migrate from java_common.create_provider to JavaInfo()
* Fix scala/private/common.bzl
* Fix some build failures.
* Fix some more builds.
* Remove scala/private/common:create_java_provider
* Remove unused _create_provider.
* Remove unused load statement
* Also propagate deps and runtime_deps in scala_import with no jars.
* Address review comments.
* Update custom-jvm-rule.bzl
* Update BUILD
* typo
* Removed implicit value for deps_providers.
* Add dummy intermediate jar file for scala_import with no jars.
* Cleanup code.
* Replace + with lists extend.
* Revert enabling --all_incompatible_changes test by mistake.
* Passing source-jar into JavaInfo (bazel-contrib#783)
* expose source_jar in JavaInfo
* nit: clarify conditional
* nit: replace one hack with another
* nit: replace concat with append
* remove "main" attr usage
it's no longer needed
* add comment
* remove usage of attr scala with JavaInfo outputs (bazel-contrib#784)
* Port bazelbuild/bazel#8196 : improve java_stub_template MANIFEST.MF construction speed (bazel-contrib#736)
* Import java_stub_template from bazel-contrib@8b8271e
* Port changes from bazelbuild/bazel#8196
* Remove java_stub_template from WORKSPACE
* Update java_stub_template archive URL
* Make java_stub_template a normal file
* JavaInfo provider should be given for deps (bazel-contrib#774)
* a JavaInfo provider should be given for deps
* flatten providers lists
* Revert "flatten providers lists"
This reverts commit a464f61.
* remove print warning if dep has no JavaInfo since it's required now (bazel-contrib#788)
* Handle FileAlreadyExistsException in ScalaPBGenerator (bazel-contrib#789)
* Exclude jmh from reproducibility test, since the code generator is non-deterministic. (bazel-contrib#791)
bazel-contrib#699
* warn if jvm_flags is used in scala_library (bazel-contrib#795)
* Allow for code coverage to be run on 0.27.1 (bazel-contrib#780)
* Allow for code coverage to be run on 0.27.1
* Update expected-coverage.dat
* actually remove all merge conflicts
remove scala_doc
merge conflict
spacing
newline
* Replace jar_sha256 with artifact_sha256. (bazel-contrib#792)
* Simplify _jacoco_offline_instrument. (bazel-contrib#790)
resolve_command shouldn't be required here.
* silence tut (bazel-contrib#799)
* Due to limitations in the toolchains implementation this is required … (bazel-contrib#801)
* Add test for host deps
* Add a test hopefully to illustrate host deps
* Update test
* Change api usage to use binds
* Remove errant print
* See if behavior is different on 0.28.1
* incompatible_string_join_requires_strings: string.join(list) accepts invalid (non-string) list elements
* Add a to_list
* Another case of depset iterable
* Windows ci can only support 0.28.0 via chocolaty right now
* Add scalac_jvm_flags option to toolchain (bazel-contrib#803)
* Add scalac_jvm_flags to scala_toolchain
This allows things like setting the max heap on all Scalac workers.
* Add docs
* Fix comment
* Add enable_code_coverage_aspect to the docs
* Flags on target should override flags on toolchain.
Also fix comment.
* Add `scala_test_jvm_flags` to toolchain (bazel-contrib#804)
* Add scala_test_jvm_flags to the toolchain
* Fix package name
* Fix target names
* Add trivial test suite and rename some things
* Wrap all jvm_flags in _expand_location
* Remove the deprecated attribute proto_source_root. (bazel-contrib#793)
* Remove the deprecated attribute proto_source_root.
Replace it with strip_import_prefix, its spiritual successor.
* Update Bazel version on Travis
* Update rules_scala to work with Bazel >=0.27.
The flag --incompatible_string_join_requires_strings was flipped, which
this repository was incompatible with.
* Update to Bazel 0.26 instead.
test_coverage_on fails for some mysterious reason that seems unrelated to the cleanup crusade I'm pursuing at the moment.
* add point release number so that downloading Bazel succeeds
* change whitespace to re-trigger build
* update Bazel version, hopefully properly
* update test_expected_failure/
* minimize diff
* re-trigger Travis
* re-trigger Travis again
* update README.md
note the last version of 0.23 that we ran CI on.
* Fix a regression that breaks scalapb when jvm_flags are set on the toolchain (bazel-contrib#806)
* Fix a regression that breaks scalapb when jvm_flags are set on the toolchain
* Move passing manual tests to new directory
* Migrate from old-style .java provider to JavaInfo. (bazel-contrib#807)
* Migrate from old-style .java provider to JavaInfo.
* Remove usage of .scala.
* Flip these around to be correct (bazel-contrib#810)
* Clean up jmh rule a bit (bazel-contrib#811)
* Move scala_repositories macro out to its own file + move scala_doc.bzl (bazel-contrib#808)
* move scala_repositories macro out to its own file
* move scala_repositories.bzl and scala_doc.bzl to private
* Pin Bazel versions (bazel-contrib#812)
* Pin Bazel versions
* ensure one set of jobs is named test
* Keep the original build structure
* fix version for windows
* add ci stopgap to scripts used in ci
* fix ci errors
* adjust for buildkite
* remove unused param
* Tweak travis image config
* use sh language
* libxml2-utils
* use apt addon
* Add notes about updating bazel versions
* Move scala_binary to its own file (bazel-contrib#813)
* add a note about code organization in CONTRIBUTING.md
* wip move scala_binary out
* fully split out scala_binary properly
* _library_outputs is the same thing as common_outputs
* fix a bunch more scalac_provider references
* rename scala_provider function to get_scalac_provider per review
* back to the old variable names
* Delurk Powershell for a more unified test setup (bazel-contrib#814)
* Attempt to delurk powershell
* 💥
* adjust
* adjust
* Add a basic PR template (bazel-contrib#817)
* Move scala_test/scala_test_suite to their own file (bazel-contrib#815)
* move scala_test rule to its own file
* move scala_test_suite to scala_test.bzl, move sanitize_string_for_usage function to common.bzl for now
* add a docstring about scala_test.bzl
* move test_resolve_deps to private variable in scala_test.bzl
* remove suites attribute debug print
* move scala_repl rule to its own file (bazel-contrib#820)
* remove long-deprecated 'suites' attr in scala_test (bazel-contrib#819)
* move scala_junit_test rule to its own file (bazel-contrib#822)
* rename proto rule while maintaining backwards compat (bazel-contrib#821)
* Disable windows CI (bazel-contrib#823)
* Move library rules (bazel-contrib#827)
* move library_attrs to common_attributes.bzl
* move scala_macro_library rule to its own file
* move all _library rules to scala_library.bzl, private stuff too
* move _lib into scala_library.bzl
* alphasort
* Buildifier as the only lint (bazel-contrib#826)
* Load buildifier directly
* update lint scripts
* let buildifier reformat everything
* Test lints in CI
* remove accidental file extension
* use skylib version compatible with rules_go and buildifier
* fix an unformatted file that breaks ci (bazel-contrib#830)
* use travis job pipelines (bazel-contrib#829)
* Default to usage of scala_proto_library instead of scalapb_proto_library alias (bazel-contrib#831)
* Refactor build_deployable (bazel-contrib#832)
* build_deployable -> merge_jars with a more explicit interface
* add docstring doc to merge_jars
* buildifier fix
* parameterize the entire progress_message
* Update README.md to include Grand Rounds (bazel-contrib#835)
* Minor fix to error message (bazel-contrib#841)
Was not properly adding space, as such:
```
java.lang.IllegalStateException: Was not able to discover any classes for archives=testsuite/test/example/example.jarprefixes=Set(), suffixes=Set(Test)
```
* Remove jvm_flags debug print for scala_library (bazel-contrib#840)
* remove jvm_flags debug print for scala_library
* hard fail for jvm_flags in scala_library, re-add jvm_flags attr for other rules
* remove fail, not needed if attr isn't supported
* Improve classpath manifest file construction (bazel-contrib#842)
* use java_common.merge instead of manual _collect util functions (bazel-contrib#838)
* Fix paths in --proto_path and avoid copying proto files (bazel-contrib#850)
* Fix paths in proto_path and avoid copying
* Prepare mapping in advance
* Condensed all transformations into one method
* Added tests
* Buildifier corrections
* Split sh test (bazel-contrib#849)
* Split shell ingetration tests
* Fix test_repl no target from clean build
* Fix scala_library_jar_without_srcs_must_fail_on_mismatching_resource_strip_prefix (bazel-contrib#859)
* Fix test_scala_import_source_jar_should_not_be_fetched_when_env_bazel_jvm_fetch_sources_is_set_to_non_true (bazel-contrib#858)
* Add a test build for bazel 1.0 (bazel-contrib#861)
* Add a test build for bazel 1.0
* cp
* cp
* I think i messed this up a little and it wasn't running the older ones too, making sure we run everything this time
* cp
* include Bazel 1.0.0 in compatibility table (bazel-contrib#863)
* fix typo in codeowners github handle
* Mirror all http_archives. (bazel-contrib#878)
Context: bazelbuild/bazel#10270
* Bump v1.0.0 compatibility test to v1.1.0 (bazel-contrib#882)
* Bump v1.1.0 compatibility test to v1.2.1 (bazel-contrib#883)
* Bump v1.1.0 compatibility test to v1.2.0
* Upgrade MacOS from HighSierra to Mojave
* Empty commit to trigger a new build
* Bump bazel to v1.2.1
* Fix sha for 0.28.0
* Revert "Upgrade MacOS from HighSierra to Mojave"
This reverts commit a239d4e.
* Update sha for 0.28.0 to HEAD
* Explicitly label bazel 0.28.1 (bazel-contrib#885)
* Bump scala 2.12 to v2.12.10 (bazel-contrib#886)
* Convert maven_jar to jvm_maven_import_external (bazel-contrib#889)
* Bump Bazel to v2.0.0 (bazel-contrib#902)
* authorship attribution for higherkindness/rules_scala design (bazel-contrib#903)
* Refactor rules into configurable phases (bazel-contrib#865)
* Add configurable phases
* Refactor rules implementation into configurable phases
* Customizable phases
* Customizable phases tests
* Break up init to more reasonable phases
* Move final to non-configurable phase
* Rename parameter builtin_customizable_phases
* Fix ijar
* Switch default for buildijar
* Add TODOs
* Rename provider
* Move to advanced_usage
* rename custom_phases
* Make default phase private
* Fix exports_jars
* Adjusted_phases
* Rename p to be more clear
* Add in-line comments
* Fix lint
* Add doc for phases
* Doc for consumers
* Doc for contributors
* Add more content
* Fix md
* Test for all rules
* Fix junit test
* Fix lint
* Add more tests
* Fix junit test
* Fix doc
* Change _test_ to _scalatest_
* More doc on provider
* expand locations in scalacopts (bazel-contrib#890)
* expand locations in scalac options
* allow plugins in expansion
* add a happy path test
* make the target names more obvious
* comment
* Revert "expand locations in scalacopts (bazel-contrib#890)" (bazel-contrib#904)
This reverts commit 5c966ee.
* expand locations in scalacptops, take 2 (bazel-contrib#907)
* expand locations in scalacopts (bazel-contrib#890)
* expand locations in scalac options
* allow plugins in expansion
* add a happy path test
* make the target names more obvious
* comment
* access ctx.attr.plugins with fallback
* reformat
* Plugin expansion- Use input plugins param instead of ctx (bazel-contrib#909)
* See test failing
* Use input plugins param instead of ctx
* Remove phase scala provider (bazel-contrib#913)
* phase_jvm_flags uses JavaInfo provider instead of scala_provider
* remove phase scala_provider
* readme clarifies minimum version at HEAD is 1.1.0
* travis.yml moved from 0.28.1 to 1.1.0
* Use https to access central.maven.org (bazel-contrib#920)
See https://support.sonatype.com/hc/en-us/articles/360041287334
And use repo.maven.apache.org instead of central.maven.org
* remove me from codeowners
I'm not currently a maintainer of this project.
* Return providers array instead of legacy struct (bazel-contrib#916)
* runfiles and files are part of explicit DefaultInfo provider
and do not come from attributes
* removed transitive_rjars attribute as it was only needed internally
and before phases was exposed mistakenly because that's how the infra worked
Now internally phases use p.compile.rjars
* executable attribute part of DefaultInfo as well
* use coverage_common.instrumented_files_info provider instead of attribute
* remove redundant attributes
* linting
* return array of providers instead of struct
* scala_import return array of providers instead of struct
* Move declare_executable to phase file (bazel-contrib#919)
* chore(docs): update WORKSPACE setup for skylib (bazel-contrib#926)
* scalatest final-remove redundant coverage handling (bazel-contrib#923)
* update bazel-toolchains version (bazel-contrib#937)
fix bazel-contrib#901
* Move code from rule impls/common to phases (bazel-contrib#930)
* collect_srcjars to phase
* move compile_or_empty and needed code to phase_compile (from rule_impls)
* phase_compile to take scalac_provider from phases instead of rule_impls
* rule_impls loads are loaded as private and unused are removed
* get_scalac_provider in phase_scalac_provider and not rule_impls
* move write_java_wrapper from rule_impls to phase_java_wrapper
* move merge_jars from rule_impls to phase_merge_jars
* move get_unused_dependency_checker_mode from rule_impls to get_unused_dependency_checker_mode
* move write_manifest from common to get_write_manifest
* move collect_jars_from_common_ctx from rule_impls to phase_collect_jars
* move write_executable from rule_impls to phase_write_executable
* linting
* [CR] inline _collect_jars_from_common_ctx
* [CR] inline _collect_srcjars
* [CR] inline write_java_wrapper
* [CR] inline merge_jars
* [CR] inline _write_executable
* add default for fetch sources
Co-authored-by: Laurent Le Brun <laurentlb@gmail.com>
Co-authored-by: Igal Tabachnik <hmemcpy@gmail.com>
Co-authored-by: Long Cao <48221800+long-stripe@users.noreply.github.com>
Co-authored-by: P. Oscar Boykin <johnynek@users.noreply.github.com>
Co-authored-by: Ittai Zeidman <ittaiz@gmail.com>
Co-authored-by: Mackenzie Starr <mackestarr@gmail.com>
Co-authored-by: Jonathon Belotti <jonathon@canva.com>
Co-authored-by: ianoc-stripe <ianoc@stripe.com>
Co-authored-by: Parth <parth.mehrotra.cs@gmail.com>
Co-authored-by: Christopher Johnson <tenorviol@yahoo.com>
Co-authored-by: Irina Iancu <iirina@users.noreply.github.com>
Co-authored-by: joshrosen-stripe <48632449+joshrosen-stripe@users.noreply.github.com>
Co-authored-by: Paul Tarjan <github@paulisageek.com>
Co-authored-by: Benjamin Peterson <benjamin@python.org>
Co-authored-by: David Haxton <haxton.dc@gmail.com>
Co-authored-by: Alex Beal <39505601+beala-stripe@users.noreply.github.com>
Co-authored-by: lberki <lberki@users.noreply.github.com>
Co-authored-by: Andy Scott <andyscott@users.noreply.github.com>
Co-authored-by: Mantas Sakalauskas <mantass@wix.com>
Co-authored-by: Shachar Anchelovich <shacharan@wix.com>
Co-authored-by: ignasl <ignasl@wix.com>
Co-authored-by: Bor Kae Hwang <borkaehw@umich.edu>
Co-authored-by: Philipp Wollermann <philwo@google.com>
Co-authored-by: chenrui <rui@meetup.com>
Co-authored-by: Jin <jin@users.noreply.github.com>
Co-authored-by: Andreas Herrmann <andreash87@gmx.ch>1 parent 1c4fcd0 commit 5d1e922
File tree
173 files changed
+6240
-3843
lines changed- .github
- docs
- java_stub_template/file
- jmh
- junit
- manual_test
- scala_test_jvm_flags
- scalac_jvm_opts
- private
- scala_proto
- private
- scala
- advanced_usage
- private
- macros
- phases
- rules
- specs2
- src
- java/io/bazel/rulesscala
- coverage/instrumenter
- exe
- scalac
- specs2
- test_discovery
- scala
- io/bazel/rules_scala/scaladoc_support
- scripts
- test_expect_failure
- disappearing_class
- missing_direct_deps/internal_deps
- plus_one_deps
- deps_of_exports
- exports_deps
- exports_of_deps
- external_deps
- internal_deps
- with_unused_deps
- proto_source_root
- dependency
- user
- scala_import
- scala_junit_test
- specs2
- scala_test_jvm_flags
- scalac_jvm_opts
- transitive/java_to_scala
- test_version/version_specific_tests_dir
- proto
- test
- aspect
- coverage
- jmh
- phase
- add_to_all_rules
- adjustment
- plugins
- proto3
- proto
- shell
- src/main/scala/scalarules/test
- compiler_plugin
- extra_protobuf_generator
- fetch_sources
- ijar
- scala_import
- nl
- scripts
- strict_deps/no_recompilation
- twitter_scrooge
- tools
- tut_rule
- twitter_scrooge
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
173 files changed
+6240
-3843
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| 8 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
2 | | - | |
| 1 | + | |
3 | 2 | | |
4 | | - | |
5 | | - | |
6 | | - | |
7 | 3 | | |
8 | 4 | | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
| 13 | + | |
12 | 14 | | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
17 | 22 | | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
26 | 43 | | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
27 | 67 | | |
28 | 68 | | |
29 | 69 | | |
30 | 70 | | |
31 | 71 | | |
32 | | - | |
33 | | - | |
34 | | - | |
35 | | - | |
36 | | - | |
37 | | - | |
38 | | - | |
39 | | - | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | | - | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
| 72 | + | |
56 | 73 | | |
57 | 74 | | |
58 | 75 | | |
59 | 76 | | |
60 | 77 | | |
61 | 78 | | |
62 | 79 | | |
63 | | - | |
64 | | - | |
65 | | - | |
| 80 | + | |
| 81 | + | |
66 | 82 | | |
| 83 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| 13 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
20 | 26 | | |
21 | 27 | | |
22 | 28 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
24 | 25 | | |
25 | 26 | | |
26 | 27 | | |
27 | | - | |
28 | | - | |
| 28 | + | |
| 29 | + | |
29 | 30 | | |
30 | 31 | | |
31 | | - | |
32 | | - | |
33 | 32 | | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
34 | 45 | | |
35 | 46 | | |
36 | 47 | | |
| |||
44 | 55 | | |
45 | 56 | | |
46 | 57 | | |
47 | | - | |
48 | | - | |
| 58 | + | |
| 59 | + | |
49 | 60 | | |
50 | 61 | | |
51 | 62 | | |
| |||
54 | 65 | | |
55 | 66 | | |
56 | 67 | | |
| 68 | + | |
57 | 69 | | |
58 | 70 | | |
59 | 71 | | |
| |||
77 | 89 | | |
78 | 90 | | |
79 | 91 | | |
80 | | - | |
| 92 | + | |
| 93 | + | |
81 | 94 | | |
82 | 95 | | |
83 | | - | |
| 96 | + | |
84 | 97 | | |
85 | | - | |
86 | | - | |
87 | | - | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
88 | 101 | | |
89 | 102 | | |
90 | 103 | | |
| 104 | + | |
91 | 105 | | |
92 | 106 | | |
93 | 107 | | |
| |||
97 | 111 | | |
98 | 112 | | |
99 | 113 | | |
100 | | - | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
101 | 118 | | |
102 | 119 | | |
103 | 120 | | |
| |||
174 | 191 | | |
175 | 192 | | |
176 | 193 | | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
177 | 204 | | |
178 | 205 | | |
179 | 206 | | |
| |||
204 | 231 | | |
205 | 232 | | |
206 | 233 | | |
| 234 | + | |
207 | 235 | | |
| 236 | + | |
208 | 237 | | |
209 | 238 | | |
210 | 239 | | |
| |||
0 commit comments