summary refs log tree commit diff stats
path: root/compiler/semtypinst.nim
Commit message (Collapse)AuthorAgeFilesLines
* refactoring: no inheritance for PType/PSym (#23403)Andreas Rumpf2024-03-141-19/+21
|
* don't use previous bindings of `auto` for routine return types (#23207)metagn2024-01-171-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixes #23200, fixes #18866 #21065 made it so `auto` proc return types remained as `tyAnything` and not turned to `tyUntyped`. This had the side effect that anything previously bound to `tyAnything` in the proc type match was then bound to the proc return type, which is wrong since we don't know the proc return type even if we know the expected parameter types (`tyUntyped` also [does not care about its previous bindings in `typeRel`](https://github.com/nim-lang/Nim/blob/ab4278d2179639f19967431a7aa1be858046f7a7/compiler/sigmatch.nim#L1059-L1061) maybe for this reason). Now we mark `tyAnything` return types for routines as `tfRetType` [as done for other meta return types](https://github.com/nim-lang/Nim/blob/18b5fb256d4647efa6a64df451d37129d36e96f3/compiler/semtypes.nim#L1451), and ignore bindings to `tyAnything` + `tfRetType` types in `semtypinst`. On top of this, we reset the type relation in `paramTypesMatch` only after creating the instantiation (instead of trusting `isInferred`/`isInferredConvertible` before creating the instantiation), using the same mechanism that `isBothMetaConvertible` uses. This fixes the issues as well as making the disabled t15386_2 test introduced in #21065 work. As seen in the changes for the other tests, the error messages give an obscure `proc (a: GenericParam): auto` now, but it does give the correct error that the overload doesn't match instead of matching the overload pre-emptively and expecting a specific return type. tsugar had to be changed due to #16906, which is the problem where `void` is not inferred in the case where `result` was never touched.
* type refactor: part 4 (#23077)Andreas Rumpf2023-12-151-18/+17
|
* fixes #9381; Fix double evaluation of types in generic objects (#23072)Pylgos2023-12-141-5/+14
| | | fixes https://github.com/nim-lang/Nim/issues/9381
* type refactoring: part 2 (#23059)Andreas Rumpf2023-12-131-13/+13
|
* Types: Refactorings; step 1 (#23055)Andreas Rumpf2023-12-121-12/+8
|
* IC: progress and refactorings (#22961)Andreas Rumpf2023-11-201-2/+2
|
* Fix #17509: Continue instead of return with unfinished generics (#22563)SirOlaf2023-09-071-1/+2
| | | | | | | | | | | | | | | | | | | Close #17509 Current knowledge: - delaying cache fixes the issue - changing return of `if inst.len < key.len:` in `searchInstTypes` to `continue` fixes the issue. With return the broken types are also cached over and over Related issues are completely unaffected as of now, so there must be something deeper. I am also still trying to find the true cause, so feel free to ignore for now --------- Co-authored-by: SirOlaf <>
* minor refactoring, move some sym/type construction to semdata (#22654)metagn2023-09-071-2/+0
| | | | | | | | | | Move `symFromType` and `symNodeFromType` from `sem`, and `isSelf` and `makeTypeDesc` from `concepts` into `semdata`. `makeTypeDesc` was moved out from semdata [when the `concepts` module was added](https://github.com/nim-lang/Nim/commit/6278b5d89af38e90aa30cfc4c217a2f4b1323339), so its old position might have been intended. If not, `isSelf` can also go in `ast`.
* fully revert generic inst sym change, test #22646 (#22653)metagn2023-09-061-11/+0
| | | | | | | reverts #22642, reopens #22639, closes #22646, refs #22650, refs https://github.com/alaviss/union/issues/51, refs #22652 The fallout is too much from #22642, we can come back to it if we can account for all the affected code.
* fix sym of created generic instantiation type (#22642)metagn2023-09-051-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixes #22639 A `tyGenericInst` has its last son as the instantiated body of the original generic type. However this type keeps its original `sym` field from the original generic types, which means the sym's type is uninstantiated. This causes problems in the implementation of `getType`, where it uses the `sym` fields of types to represent them in AST, the relevant example for the issue being [here](https://github.com/nim-lang/Nim/blob/d13aab50cf465a7f2edf9c37a4fa30e128892e72/compiler/vmdeps.nim#L191) called from [here](https://github.com/nim-lang/Nim/blob/d13aab50cf465a7f2edf9c37a4fa30e128892e72/compiler/vmdeps.nim#L143). To fix this, create a new symbol from the original symbol for the instantiated body during the creation of `tyGenericInst`s with the appropriate type. Normally `replaceTypeVarsS` would be used for this, but here it seems to cause some recursion issue (immediately gives an error like "cannot instantiate HSlice[T, U]"), so we directly set the symbol's type to the instantiated type. Avoiding recursion means we also cannot use `replaceTypeVarsN` for the symbol AST, and the symbol not having any AST crashes the implementation of `getType` again [here](https://github.com/nim-lang/Nim/blob/d13aab50cf465a7f2edf9c37a4fa30e128892e72/compiler/vmdeps.nim#L167), so the symbol AST is set to the original generic type AST for now which is what it was before anyway. Not sure about this because not sure why the recursion issue is happening, putting it at the end of the proc doesn't help either. Also not sure if the `cl.owner != nil and s.owner != cl.owner` condition from `replaceTypeVarsS` is relevant here. This might also break some code if it depended on the original generic type symbol being given.
* When in object handles procedure call again, fixes #22474 (#22480)Jason Beetham2023-08-151-1/+1
| | | Ping @narimiran please backport to the 2.0 line.
* unpublic the sons field of PType; the precursor to PType refactorings (#22446)ringabout2023-08-111-6/+4
| | | | | | | | | | | * unpublic the sons field of PType * tiny fixes * fixes an omittance * fixes IC * fixes
* refactor `result = default(...)` into object construction (#22455)ringabout2023-08-111-10/+4
|
* `initNodeTable` and friends now return (#22444)ringabout2023-08-111-3/+3
|
* fix #18823 Passing Natural to bitops.BitsRange[T] parameter in generi… ↵Bung2023-08-081-6/+7
| | | | | (#20683) * fix #18823 Passing Natural to bitops.BitsRange[T] parameter in generic proc is compile error
* use strictdefs for compiler (#22365)ringabout2023-08-061-0/+3
| | | | | | | | | | | | | | | * wip; use strictdefs for compiler * checkpoint * complete the chores * more fixes * first phase cleanup * Update compiler/bitsets.nim * cleanup
* fix calls in generic bodies, delay typecheck when no overloads match (#22029)metagn2023-06-131-22/+24
| | | | | | | | | | | | | | | | | | | | | | | * sacrifice "tgenericshardcases" for working statics * legacy switch for CI, maybe experimental later * convert to experimental * apparently untyped needs the experimental switch * try special case call semcheck * try fix * fix compilation * final cleanup, not experimental, make `when` work * remove last needed use of untyped * fix unused warning in test * remove untyped feature
* refactoring in preparation for better, simpler name mangling that wor… ↵Andreas Rumpf2023-04-241-1/+1
| | | | | | | | | | | (#21667) * refactoring in preparation for better, simpler name mangling that works with IC flawlessly * use new disamb field * see if this makes tests green * make tests green again
* Fix segfault caused by ensuring valueless statics are not evaluated (#21577)Jason Beetham2023-03-291-1/+1
|
* Made generic type classes work with types using static parameters (#21528)Jason Beetham2023-03-171-4/+23
|
* Fix #20416. Enable the recursion limit for ref/ptr types. (#21092)Aditya Siram2022-12-131-4/+14
|
* Revert "fixes #20883; Unspecified generic on default value segfaults the ↵ringabout2022-12-061-5/+1
| | | | | | | compiler" (#21028) Revert "fixes #20883; Unspecified generic on default value segfaults the compiler (#20917)" This reverts commit 10b6e4f5b4a119a8fa42f82a24ae7e4b08b2c103.
* fixes #20883; Unspecified generic on default value segfaults the compiler ↵ringabout2022-12-011-1/+5
| | | | | (#20917) test CI
* Fixes #20348; only respect the recursion limit if the symbol's generic type ↵Aditya Siram2022-09-221-11/+14
| | | | | has been generated by the compiler (#20377) Fixes #20348
* move assertions out of system (#19599)flywind2022-03-231-0/+3
|
* test whether it is unnecessary (#18893)flywind2021-10-141-1/+1
|
* Alternative to #18928 (#18931)Jason Beetham2021-09-301-6/+6
| | | | | * fixed #18841 * Added test
* semtypinst: don't wrap type nodes from expressions in static[T] (#18860)alaviss2021-09-171-1/+1
|
* Fixed #18838 (#18841) [backport]Jason Beetham2021-09-131-1/+5
|
* Fix recursive generic typed defs (#18809)Jason Beetham2021-09-061-1/+1
|
* fixes #16246 (#18800)Andreas Rumpf2021-09-041-1/+1
|
* ORC: improvements (#17993)Andreas Rumpf2021-05-121-1/+1
| | | | * ORC: improvements * ORC: fix .acyclic annotation for ref objects
* new-style concepts implementation, WIP (#15251)Andreas Rumpf2021-02-241-1/+3
| | | | | | | | | | | | | * fixes #15210 [backport:1.2] * make tests green * make ordinal work * makes Swapable test compile * make Indexable example work * concepts: 'self' is now 'Self' * concepts: make Dictionary example compile * document the new concept implementation * concepts: make typeDesc work properly * concepts: allow documentation comments (d'oh)
* fixed dot operator recursive loop & macro suggest (#16922)Saem Ghani2021-02-151-0/+2
| | | | | | | | | | | | | | | | | | * basic stability improvements; refs nimsuggest * fixed dot operator recursive loop & macro suggest * hacky fix for run away dot operator sem check Committing this mostly to make the issue more clear. Perhaps get better feedback. * semExprWithType seems like a better place to check * fixed error messages const case expressions * Clean-up test * stopped the dot operator madness No longer get infinite recursion when seming broken code with a dot operator macro like in jsffi. Co-authored-by: Araq <rumpf_a@web.de>
* IC: final implementation steps (#16801)Andreas Rumpf2021-01-251-4/+4
| | | | | | | | * removed dead code * we need even more laziness for the generic caches * make it bootstrap on older Nims * wrote more deserialization code * IC: replay required methods information
* IC: next steps (#16729)Andreas Rumpf2021-01-231-19/+14
| | | | | | | | | | | * IC: dead code elimination pass * preparations for a different codegen strategy * added documentation to the newly written code * IC: backend code * IC: backend adjustments * optimized the compiler a bit * IC: yet another massive refactoring * fixes regressions * cleanups
* IC: next steps (#16705)Andreas Rumpf2021-01-141-18/+0
| | | | | | | | | | | * code cleanups * refactorings for IC * more refactorings for IC * IC: attach the 'nil' type to its module * IC: refactorings and improvements * IC: progress * IC: more serialization fixes * IC: embarrassing omission * code cleanups
* big steps torwards an efficient, simple IC implementation (#16543)Andreas Rumpf2021-01-021-3/+3
| | | | | | | | | | | | | | | | | | | * reworked ID handling * the packed AST now has its own ID mechanism * basic serialization code works * extract rodfiles to its own module * rodfiles: store and compare configs * rodfiles: store dependencies * store config at the end * precise dependency tracking * dependency tracking for rodfiles * completed loading of PSym, PType, etc * removed dead code * bugfix: do not realloc seqs when taking addr into an element * make IC opt-in for now * makes tcompilerapi green again * final cleanups Co-authored-by: Andy Davidoff <github@andy.disruptek.com>
* explicit ID generation for easier IC (#15559)Andreas Rumpf2020-10-251-7/+12
| | | | | | | | | | | | | | | | | * refactoring: idents don't need inheritance * refactoring: adding an IdGenerator (part 1) * refactoring: adding an IdGenerator (part 2) * refactoring: adding an IdGenerator (part 3) * refactoring: adding an IdGenerator (part 4) * refactoring: adding an IdGenerator (part 5) * refactoring: adding an IdGenerator (part 5) * IdGenerator must be a ref type; hello world works again * make bootstrapping work again * progress: add back the 'exactReplica' ideas * added back the missing exactReplica hacks * make tcompilerapi work again * make important packages green * attempt to fix the build for 32 bit machines (probably need a better solution here)
* Expand hoisted default params in sem (#15270)Clyybber2020-09-051-1/+1
| | | | | | | | | * Expand hoisted default params in sem Introduce ast.newTree{I,IT} Add test for default params in procs * Cleanup * Simplify hoist transformation and expand test
* Big compiler Cleanup (#14777)Clyybber2020-08-281-2/+1
|
* fix #14698 nkRecWhen caused internalAssert in semConstructFields when ↵Timothee Cour2020-07-271-1/+4
| | | | | | | | | | | generic type not mentioned in fields (#14709) * fix #14698 nkRecWhen caused internalAssert in semConstructFields when generic type not mentioned in fields * address comment * Update compiler/semtypinst.nim Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
* [cleanups] doassert => doAssert; mark deadcode (#14711)Timothee Cour2020-06-171-10/+12
|
* fixes #14315 (#14594)Andreas Rumpf2020-06-071-2/+1
|
* avoid unsafe Nim features in preparation for --gc:arc (#14431)Andreas Rumpf2020-05-221-12/+13
|
* Replace tfHasRequiresInit with a more accurate mechanismZahary Karadjov2020-04-011-0/+2
| | | | | | | | | The new mechanism can deal with more complex scenarios such as not nil field appearing in a non-default case object branch or a field within a generic object that may depend on a when branch. The commit also plugs another hole: the user is no longer able to create illegal default values through seq.setLen(N).
* fixes #13646Araq2020-03-161-0/+3
|
* minor code style changesAraq2020-03-161-1/+1
|
* ARC related bugfixes and refactorings (#12781)Andreas Rumpf2019-12-051-1/+3
|
7a2bc461b96d804368c0931'>^
e25474154 ^

4de84024e ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
e25474154 ^

2a0f7b5de ^

e25474154 ^
4de84024e ^
2a0f7b5de ^

e25474154 ^
4de84024e ^
e25474154 ^
2a0f7b5de ^

e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
2a0f7b5de ^

e25474154 ^
4de84024e ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
2a0f7b5de ^

e25474154 ^
4de84024e ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
dce8d3d1a ^
c51763915 ^
2a0f7b5de ^
c51763915 ^






e25474154 ^
089e287c6 ^

2df9b442c ^
c51763915 ^


2a0f7b5de ^


e25474154 ^
2a0f7b5de ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
39049e151 ^
2a0f7b5de ^
e25474154 ^
e25474154 ^
2df9b442c ^
2a0f7b5de ^

e25474154 ^
2a0f7b5de ^
e25474154 ^
2a0f7b5de ^
e25474154 ^


4de84024e ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
e25474154 ^

2a0f7b5de ^
2df9b442c ^
7063670a2 ^
2a0f7b5de ^
92b8fac94 ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
7916b1f9a ^
2a0f7b5de ^
e25474154 ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
2a0f7b5de ^
e25474154 ^

92b8fac94 ^
121d4e0fc ^
2a0f7b5de ^
4de84024e ^
121d4e0fc ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
2a0f7b5de ^
e25474154 ^

4de84024e ^
92b8fac94 ^
e25474154 ^
39049e151 ^
92b8fac94 ^
e25474154 ^
7063670a2 ^
e25474154 ^
2a0f7b5de ^

e25474154 ^


2a0f7b5de ^
e25474154 ^
2a0f7b5de ^
e25474154 ^

4de84024e ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
e25474154 ^
beb13ecf6 ^
2df9b442c ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
beb13ecf6 ^
92b8fac94 ^
dce8d3d1a ^
8be9e4640 ^
2a0f7b5de ^
e25474154 ^

d3255f708 ^
e25474154 ^
beb13ecf6 ^
2df9b442c ^
00cdbca41 ^
beb13ecf6 ^




e25474154 ^

2a0f7b5de ^
e25474154 ^
4de84024e ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
371619c43 ^
c51763915 ^
089e287c6 ^
c51763915 ^
2a0f7b5de ^
e25474154 ^
4de84024e ^
2a0f7b5de ^
e25474154 ^

7063670a2 ^
7171ae62c ^

92b8fac94 ^
c51763915 ^


089e287c6 ^


c51763915 ^

dce8d3d1a ^
e25474154 ^
2a0f7b5de ^

e25474154 ^
2a0f7b5de ^
7063670a2 ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
7063670a2 ^
866572e2e ^
2a0f7b5de ^

e25474154 ^
2a0f7b5de ^

e25474154 ^
7063670a2 ^
2df9b442c ^
e25474154 ^
2a0f7b5de ^
92b8fac94 ^
2a0f7b5de ^

e25474154 ^
2a0f7b5de ^
e25474154 ^


2a0f7b5de ^
e25474154 ^




92b8fac94 ^
e25474154 ^
2a0f7b5de ^

92b8fac94 ^
e25474154 ^
2a0f7b5de ^
4de84024e ^
e25474154 ^
4de84024e ^
e25474154 ^
7063670a2 ^
e25474154 ^
92b8fac94 ^
d3255f708 ^
e25474154 ^
2a0f7b5de ^
92b8fac94 ^
e25474154 ^
2a0f7b5de ^
4de84024e ^
e25474154 ^
4de84024e ^
e25474154 ^
8be9e4640 ^
2a0f7b5de ^
e25474154 ^

d3255f708 ^
92b8fac94 ^
e25474154 ^
2a0f7b5de ^
e25474154 ^


2a0f7b5de ^
4de84024e ^
2a0f7b5de ^
e25474154 ^

4de84024e ^
beb13ecf6 ^
e25474154 ^

92b8fac94 ^
beb13ecf6 ^
e25474154 ^

92b8fac94 ^
2a0f7b5de ^
e25474154 ^


2a0f7b5de ^
4c5cf88c1 ^





1785c6877 ^
4c5cf88c1 ^



2a0f7b5de ^
4c5cf88c1 ^
73c6efdf6 ^
4c5cf88c1 ^

2a0f7b5de ^
62b55592e ^
2a0f7b5de ^
866572e2e ^
e9516e630 ^
62b55592e ^
2a0f7b5de ^
866572e2e ^
2a0f7b5de ^
e25474154 ^
2a0f7b5de ^
62b55592e ^
e25474154 ^
62b55592e ^

2a0f7b5de ^
e25474154 ^
4de84024e ^
92b8fac94 ^
a0b82db40 ^


2a0f7b5de ^
e25474154 ^
4de84024e ^
e25474154 ^
a702524ae ^






4c5cf88c1 ^
a702524ae ^
e25474154 ^

2a0f7b5de ^
4de84024e ^
e25474154 ^
2a0f7b5de ^
e25474154 ^


2a0f7b5de ^
e25474154 ^

0857efe51 ^
27dd39778 ^
a0b82db40 ^
27dd39778 ^

e25474154 ^

e25474154 ^
2a0f7b5de ^
e25474154 ^

2a0f7b5de ^
27dd39778 ^
e25474154 ^
62b55592e ^
2a0f7b5de ^
62b55592e ^
e25474154 ^
2a0f7b5de ^
e25474154 ^


0857efe51 ^
e25474154 ^
beb13ecf6 ^

e25474154 ^
2a0f7b5de ^
e25474154 ^

2a0f7b5de ^
e25474154 ^

2a0f7b5de ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
2a0f7b5de ^
e25474154 ^

bd1cb9e77 ^


2a0f7b5de ^
e25474154 ^
7063670a2 ^
235bd1c47 ^

2a0f7b5de ^
e25474154 ^

0857efe51 ^
92b8fac94 ^
0857efe51 ^


e25474154 ^
2a0f7b5de ^
e25474154 ^


235bd1c47 ^





62b55592e ^
2a0f7b5de ^
e25474154 ^
c8d270268 ^
b731e6ef1 ^
2f43fdb83 ^
c8d270268 ^
7063670a2 ^

bd1cb9e77 ^
7063670a2 ^
e25474154 ^




d3255f708 ^
c95f6f117 ^
089e287c6 ^
b731e6ef1 ^
2a0f7b5de ^
92b8fac94 ^

e25474154 ^
7063670a2 ^
ef039a132 ^
e25474154 ^


2a0f7b5de ^
089e287c6 ^
e25474154 ^
e25474154 ^
bd1cb9e77 ^
e25474154 ^
2a0f7b5de ^

92b8fac94 ^
2a0f7b5de ^
e25474154 ^
7063670a2 ^
92b8fac94 ^
438703f59 ^
e25474154 ^



2a0f7b5de ^

e25474154 ^


62b55592e ^

e25474154 ^


36e25a684 ^
e25474154 ^
2a0f7b5de ^
e25474154 ^
92b8fac94 ^
7063670a2 ^
e25474154 ^



9fb36bd20 ^
2a0f7b5de ^
9fb36bd20 ^
2a0f7b5de ^
92b8fac94 ^
438703f59 ^
9fb36bd20 ^

36e25a684 ^
6d64a6e42 ^





b731e6ef1 ^
6d64a6e42 ^
36e25a684 ^
2a0f7b5de ^
8be9e4640 ^
2a0f7b5de ^
e25474154 ^
92b8fac94 ^
2a0f7b5de ^
9fb36bd20 ^
92b8fac94 ^
9fb36bd20 ^
4de84024e ^

92b8fac94 ^
36e25a684 ^
92b8fac94 ^
2a0f7b5de ^
36e25a684 ^




92b8fac94 ^
2a0f7b5de ^
e25474154 ^

089e287c6 ^
2a0f7b5de ^

92b8fac94 ^
7063670a2 ^
e25474154 ^

2a0f7b5de ^
4de84024e ^
e25474154 ^
7063670a2 ^
e25474154 ^
92b8fac94 ^
e25474154 ^


2a0f7b5de ^
bd1cb9e77 ^

2a0f7b5de ^
92b8fac94 ^
e25474154 ^
2a0f7b5de ^
4de84024e ^
92b8fac94 ^
e25474154 ^
bd1cb9e77 ^


92b8fac94 ^
bd1cb9e77 ^


92b8fac94 ^
bd1cb9e77 ^
36e25a684 ^
62b55592e ^
438703f59 ^
36e25a684 ^
62b55592e ^

2a0f7b5de ^
d3255f708 ^
62b55592e ^
36e25a684 ^

f9bd8cc98 ^
36e25a684 ^



2a0f7b5de ^
e25474154 ^
36e25a684 ^

62b55592e ^
36e25a684 ^
e25474154 ^
7063670a2 ^
8b5aa221a ^
62b55592e ^
2a0f7b5de ^
2df9b442c ^
c8d270268 ^
62b55592e ^
c8d270268 ^
2a0f7b5de ^
c8d270268 ^



92b8fac94 ^
c8d270268 ^
27dd39778 ^
c8d270268 ^
beb13ecf6 ^

c8d270268 ^
14e6ff678 ^
182ab85dc ^
c8d270268 ^
e25474154 ^
b731e6ef1 ^
e25474154 ^
36e25a684 ^

2a0f7b5de ^

36e25a684 ^
2a0f7b5de ^
e25474154 ^

fc9fdc2b9 ^
4de84024e ^
36e25a684 ^
92b8fac94 ^
36e25a684 ^
2a0f7b5de ^
e25474154 ^
d3255f708 ^
e25474154 ^


bd1cb9e77 ^

e25474154 ^
e25474154 ^
089e287c6 ^
92b8fac94 ^
7063670a2 ^

92b8fac94 ^
438703f59 ^
92b8fac94 ^
beb13ecf6 ^


2df9b442c ^
2a0f7b5de ^

7063670a2 ^
2a0f7b5de ^
2df9b442c ^
089e287c6 ^
2a0f7b5de ^
089e287c6 ^

0c31686fe ^
089e287c6 ^



2a0f7b5de ^
c51763915 ^




bbf9757b4 ^

c51763915 ^









2a0f7b5de ^
2df9b442c ^
92b8fac94 ^
beb13ecf6 ^

2f43fdb83 ^
beb13ecf6 ^






2a0f7b5de ^
beb13ecf6 ^


2a0f7b5de ^

beb13ecf6 ^


2a0f7b5de ^
beb13ecf6 ^








2a0f7b5de ^
beb13ecf6 ^


2f43fdb83 ^
beb13ecf6 ^




















2a0f7b5de ^
beb13ecf6 ^

2a0f7b5de ^
beb13ecf6 ^











2f43fdb83 ^
beb13ecf6 ^






2a0f7b5de ^
beb13ecf6 ^



2a0f7b5de ^
beb13ecf6 ^













2a0f7b5de ^

beb13ecf6 ^

2a0f7b5de ^
beb13ecf6 ^



e9516e630 ^
beb13ecf6 ^



00cdbca41 ^
beb13ecf6 ^



62b55592e ^
beb13ecf6 ^
62b55592e ^
2a0f7b5de ^
beb13ecf6 ^

92b8fac94 ^
2a0f7b5de ^
a0b82db40 ^


2a0f7b5de ^
beb13ecf6 ^


2a0f7b5de ^
beb13ecf6 ^


2a0f7b5de ^
beb13ecf6 ^


2a0f7b5de ^
beb13ecf6 ^









a0b82db40 ^
beb13ecf6 ^




a0b82db40 ^
27dd39778 ^

beb13ecf6 ^

2a0f7b5de ^
beb13ecf6 ^

2a0f7b5de ^
beb13ecf6 ^


2a0f7b5de ^
beb13ecf6 ^

62b55592e ^
2a0f7b5de ^
beb13ecf6 ^

62b55592e ^
beb13ecf6 ^




2a0f7b5de ^
beb13ecf6 ^






























2a0f7b5de ^
beb13ecf6 ^









92b8fac94 ^
beb13ecf6 ^

92b8fac94 ^
beb13ecf6 ^
92b8fac94 ^
beb13ecf6 ^








2a0f7b5de ^
beb13ecf6 ^







00cdbca41 ^
beb13ecf6 ^
2df9b442c ^
beb13ecf6 ^








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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177