evosynth 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (390) hide show
  1. data/INSTALL +74 -0
  2. data/LICENSE +22 -0
  3. data/README +57 -0
  4. data/Rakefile +132 -0
  5. data/TODO +88 -0
  6. data/docs/FEATURES +111 -0
  7. data/docs/rdoc/classes/EvoSynth.html +2643 -0
  8. data/docs/rdoc/classes/EvoSynth/Adjustments.html +119 -0
  9. data/docs/rdoc/classes/EvoSynth/Adjustments/AdaptiveAdjustment.html +264 -0
  10. data/docs/rdoc/classes/EvoSynth/Adjustments/PredifinedAdjustment.html +235 -0
  11. data/docs/rdoc/classes/EvoSynth/ArrayGenome.html +313 -0
  12. data/docs/rdoc/classes/EvoSynth/BinaryGenome.html +518 -0
  13. data/docs/rdoc/classes/EvoSynth/Decoder.html +286 -0
  14. data/docs/rdoc/classes/EvoSynth/Evaluator.html +466 -0
  15. data/docs/rdoc/classes/EvoSynth/Evolvers.html +469 -0
  16. data/docs/rdoc/classes/EvoSynth/Evolvers/AdaptiveES.html +448 -0
  17. data/docs/rdoc/classes/EvoSynth/Evolvers/BalancedCoevolutionary.html +439 -0
  18. data/docs/rdoc/classes/EvoSynth/Evolvers/DerandomizedES.html +450 -0
  19. data/docs/rdoc/classes/EvoSynth/Evolvers/Evolver.html +125 -0
  20. data/docs/rdoc/classes/EvoSynth/Evolvers/GeneticAlgorithm.html +467 -0
  21. data/docs/rdoc/classes/EvoSynth/Evolvers/Hillclimber.html +343 -0
  22. data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch.html +422 -0
  23. data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/GreatDelugeAcceptance.html +287 -0
  24. data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/HillclimberAcceptance.html +197 -0
  25. data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/RecordToRecordTravelAcceptance.html +296 -0
  26. data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/SimulatedAnnealingAcceptance.html +286 -0
  27. data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/ThresholdAcceptance.html +287 -0
  28. data/docs/rdoc/classes/EvoSynth/Evolvers/MemeticAlgorithm.html +441 -0
  29. data/docs/rdoc/classes/EvoSynth/Evolvers/PopulationHillclimber.html +375 -0
  30. data/docs/rdoc/classes/EvoSynth/Evolvers/ProfileUsingEvolver.html +205 -0
  31. data/docs/rdoc/classes/EvoSynth/Evolvers/RoundRobinCoevolutionary.html +383 -0
  32. data/docs/rdoc/classes/EvoSynth/Evolvers/RunnableEvolver.html +279 -0
  33. data/docs/rdoc/classes/EvoSynth/Evolvers/RunnableEvolver/Goal.html +193 -0
  34. data/docs/rdoc/classes/EvoSynth/Evolvers/SelfAdaptiveES.html +394 -0
  35. data/docs/rdoc/classes/EvoSynth/Evolvers/SteadyStateGA.html +390 -0
  36. data/docs/rdoc/classes/EvoSynth/GlobalRecombinations.html +119 -0
  37. data/docs/rdoc/classes/EvoSynth/GlobalRecombinations/GlobalArithmeticCrossover.html +204 -0
  38. data/docs/rdoc/classes/EvoSynth/GlobalRecombinations/GlobalUniformCrossover.html +203 -0
  39. data/docs/rdoc/classes/EvoSynth/Individual.html +561 -0
  40. data/docs/rdoc/classes/EvoSynth/MaximizingIndividual.html +266 -0
  41. data/docs/rdoc/classes/EvoSynth/MetaOperators.html +149 -0
  42. data/docs/rdoc/classes/EvoSynth/MetaOperators/ConditionalCombinedOperator.html +278 -0
  43. data/docs/rdoc/classes/EvoSynth/MetaOperators/ProportionalCombinedOperator.html +285 -0
  44. data/docs/rdoc/classes/EvoSynth/MetaOperators/SequentialCombinedOperator.html +290 -0
  45. data/docs/rdoc/classes/EvoSynth/MinimizingIndividual.html +266 -0
  46. data/docs/rdoc/classes/EvoSynth/Mutations.html +251 -0
  47. data/docs/rdoc/classes/EvoSynth/Mutations/BinaryMutation.html +336 -0
  48. data/docs/rdoc/classes/EvoSynth/Mutations/EfficientBinaryMutation.html +345 -0
  49. data/docs/rdoc/classes/EvoSynth/Mutations/ExchangeMutation.html +320 -0
  50. data/docs/rdoc/classes/EvoSynth/Mutations/Functions.html +160 -0
  51. data/docs/rdoc/classes/EvoSynth/Mutations/GaussMutation.html +311 -0
  52. data/docs/rdoc/classes/EvoSynth/Mutations/Identity.html +220 -0
  53. data/docs/rdoc/classes/EvoSynth/Mutations/InversionMutation.html +231 -0
  54. data/docs/rdoc/classes/EvoSynth/Mutations/MixingMutation.html +233 -0
  55. data/docs/rdoc/classes/EvoSynth/Mutations/OneGeneFlipping.html +295 -0
  56. data/docs/rdoc/classes/EvoSynth/Mutations/SelfAdaptiveGaussMutation.html +347 -0
  57. data/docs/rdoc/classes/EvoSynth/Mutations/ShiftingMutation.html +229 -0
  58. data/docs/rdoc/classes/EvoSynth/Mutations/UniformRealMutation.html +264 -0
  59. data/docs/rdoc/classes/EvoSynth/Output.html +212 -0
  60. data/docs/rdoc/classes/EvoSynth/Output/CSVExporter.html +211 -0
  61. data/docs/rdoc/classes/EvoSynth/Output/ConsoleWriter.html +194 -0
  62. data/docs/rdoc/classes/EvoSynth/Output/GnuPlotExporter.html +235 -0
  63. data/docs/rdoc/classes/EvoSynth/Output/GruffExporter.html +219 -0
  64. data/docs/rdoc/classes/EvoSynth/Output/Logger.html +345 -0
  65. data/docs/rdoc/classes/EvoSynth/Population.html +430 -0
  66. data/docs/rdoc/classes/EvoSynth/Problems.html +159 -0
  67. data/docs/rdoc/classes/EvoSynth/Problems/BinaryBenchmarkFuntions.html +258 -0
  68. data/docs/rdoc/classes/EvoSynth/Problems/FloatBenchmarkFuntions.html +406 -0
  69. data/docs/rdoc/classes/EvoSynth/Problems/GraphColouring.html +265 -0
  70. data/docs/rdoc/classes/EvoSynth/Problems/TSP.html +327 -0
  71. data/docs/rdoc/classes/EvoSynth/Profile.html +324 -0
  72. data/docs/rdoc/classes/EvoSynth/Recombinations.html +251 -0
  73. data/docs/rdoc/classes/EvoSynth/Recombinations/ArithmeticCrossover.html +286 -0
  74. data/docs/rdoc/classes/EvoSynth/Recombinations/EdgeRecombination.html +203 -0
  75. data/docs/rdoc/classes/EvoSynth/Recombinations/Identity.html +192 -0
  76. data/docs/rdoc/classes/EvoSynth/Recombinations/KPointCrossover.html +286 -0
  77. data/docs/rdoc/classes/EvoSynth/Recombinations/OnePointCrossover.html +211 -0
  78. data/docs/rdoc/classes/EvoSynth/Recombinations/OrderedRecombination.html +206 -0
  79. data/docs/rdoc/classes/EvoSynth/Recombinations/PartiallyMappedCrossover.html +206 -0
  80. data/docs/rdoc/classes/EvoSynth/Recombinations/UniformCrossover.html +208 -0
  81. data/docs/rdoc/classes/EvoSynth/Selections.html +174 -0
  82. data/docs/rdoc/classes/EvoSynth/Selections/FitnessProportionalSelection.html +206 -0
  83. data/docs/rdoc/classes/EvoSynth/Selections/Identity.html +200 -0
  84. data/docs/rdoc/classes/EvoSynth/Selections/NStageTournamentSelection.html +273 -0
  85. data/docs/rdoc/classes/EvoSynth/Selections/RandomSelection.html +192 -0
  86. data/docs/rdoc/classes/EvoSynth/Selections/RouletteWheelSelection.html +212 -0
  87. data/docs/rdoc/classes/EvoSynth/Selections/SelectBest.html +206 -0
  88. data/docs/rdoc/classes/EvoSynth/Selections/TournamentSelection.html +274 -0
  89. data/docs/rdoc/classes/Examples.html +268 -0
  90. data/docs/rdoc/classes/Examples/Ants.html +198 -0
  91. data/docs/rdoc/classes/Examples/Ants/AntMutation.html +381 -0
  92. data/docs/rdoc/classes/Examples/Ants/Pheromon.html +256 -0
  93. data/docs/rdoc/classes/Examples/CCGAExample.html +305 -0
  94. data/docs/rdoc/classes/Examples/CCGAExample/CCGA2BenchmarkEvaluator.html +165 -0
  95. data/docs/rdoc/classes/Examples/CCGAExample/CCGABenchmarkEvaluator.html +242 -0
  96. data/docs/rdoc/classes/Examples/CCGAExample/CCGAIndividual.html +181 -0
  97. data/docs/rdoc/classes/Examples/CMBExample.html +215 -0
  98. data/docs/rdoc/classes/Examples/CMBExample/CMBEvaluator.html +212 -0
  99. data/docs/rdoc/classes/Examples/EsExample.html +270 -0
  100. data/docs/rdoc/classes/Examples/EsExample/BenchmarkEvaluator.html +162 -0
  101. data/docs/rdoc/classes/Examples/Exporter.html +208 -0
  102. data/docs/rdoc/classes/Examples/Exporter/ExporterEvaluator.html +196 -0
  103. data/docs/rdoc/classes/Examples/GraphColouring.html +199 -0
  104. data/docs/rdoc/classes/Examples/Hacking.html +147 -0
  105. data/docs/rdoc/classes/Examples/Hacking/HackingEvaluator.html +169 -0
  106. data/docs/rdoc/classes/Examples/LocalSearch.html +294 -0
  107. data/docs/rdoc/classes/Examples/LocalSearch/LocalSearchEvaluator.html +198 -0
  108. data/docs/rdoc/classes/Examples/MaxOnes.html +187 -0
  109. data/docs/rdoc/classes/Examples/MaxOnes/MaxOnesEvaluator.html +170 -0
  110. data/docs/rdoc/classes/Examples/Partitionproblem.html +201 -0
  111. data/docs/rdoc/classes/Examples/Partitionproblem/PartitionEvaluator.html +164 -0
  112. data/docs/rdoc/classes/Examples/Partitionproblem/PartitionIndividual.html +334 -0
  113. data/docs/rdoc/classes/Examples/Partitionproblem/PartitionMutation.html +199 -0
  114. data/docs/rdoc/classes/Examples/Partitionproblem/Testdata.html +294 -0
  115. data/docs/rdoc/classes/Examples/SPk.html +139 -0
  116. data/docs/rdoc/classes/Examples/SPk/SPkFitnessEvaluator.html +299 -0
  117. data/docs/rdoc/classes/Examples/TSP.html +187 -0
  118. data/docs/rdoc/created.rid +1 -0
  119. data/docs/rdoc/files/INSTALL.html +253 -0
  120. data/docs/rdoc/files/LICENSE.html +119 -0
  121. data/docs/rdoc/files/README.html +235 -0
  122. data/docs/rdoc/files/docs/FEATURES.html +428 -0
  123. data/docs/rdoc/files/examples/ants_rb.html +133 -0
  124. data/docs/rdoc/files/examples/ccga_example_rb.html +129 -0
  125. data/docs/rdoc/files/examples/cmb_example_rb.html +129 -0
  126. data/docs/rdoc/files/examples/evolution_strategies_rb.html +129 -0
  127. data/docs/rdoc/files/examples/exporter_rb.html +129 -0
  128. data/docs/rdoc/files/examples/graph_colouring_rb.html +129 -0
  129. data/docs/rdoc/files/examples/hacking_rb.html +129 -0
  130. data/docs/rdoc/files/examples/local_search_rb.html +129 -0
  131. data/docs/rdoc/files/examples/max_ones_rb.html +129 -0
  132. data/docs/rdoc/files/examples/partition_rb.html +131 -0
  133. data/docs/rdoc/files/examples/spk_rb.html +129 -0
  134. data/docs/rdoc/files/examples/tsp_rb.html +131 -0
  135. data/docs/rdoc/files/lib/evosynth/core/array_genome_rb.html +119 -0
  136. data/docs/rdoc/files/lib/evosynth/core/binary_genome_rb.html +119 -0
  137. data/docs/rdoc/files/lib/evosynth/core/evaluator_rb.html +129 -0
  138. data/docs/rdoc/files/lib/evosynth/core/individual_rb.html +119 -0
  139. data/docs/rdoc/files/lib/evosynth/core/maximizing_individual_rb.html +119 -0
  140. data/docs/rdoc/files/lib/evosynth/core/minimizing_individual_rb.html +119 -0
  141. data/docs/rdoc/files/lib/evosynth/core/population_rb.html +119 -0
  142. data/docs/rdoc/files/lib/evosynth/core/profile_rb.html +119 -0
  143. data/docs/rdoc/files/lib/evosynth/core/randomizer_rb.html +119 -0
  144. data/docs/rdoc/files/lib/evosynth/core_rb.html +145 -0
  145. data/docs/rdoc/files/lib/evosynth/decoder/binary_to_real_rb.html +119 -0
  146. data/docs/rdoc/files/lib/evosynth/decoder/gray_rb.html +119 -0
  147. data/docs/rdoc/files/lib/evosynth/decoder_rb.html +131 -0
  148. data/docs/rdoc/files/lib/evosynth/evolvers/basic/genetic_algorithm_rb.html +119 -0
  149. data/docs/rdoc/files/lib/evosynth/evolvers/basic/hillclimber_rb.html +119 -0
  150. data/docs/rdoc/files/lib/evosynth/evolvers/basic/memetic_algorithm_rb.html +119 -0
  151. data/docs/rdoc/files/lib/evosynth/evolvers/basic/population_hillclimber_rb.html +119 -0
  152. data/docs/rdoc/files/lib/evosynth/evolvers/basic/steady_state_ga_rb.html +119 -0
  153. data/docs/rdoc/files/lib/evosynth/evolvers/coevolutionary/balanced_coevolutionary_rb.html +119 -0
  154. data/docs/rdoc/files/lib/evosynth/evolvers/coevolutionary/round_robin_coevolutionary_rb.html +119 -0
  155. data/docs/rdoc/files/lib/evosynth/evolvers/elitism_rb.html +119 -0
  156. data/docs/rdoc/files/lib/evosynth/evolvers/evolution_strategies/adaptive_es_rb.html +129 -0
  157. data/docs/rdoc/files/lib/evosynth/evolvers/evolution_strategies/derandomized_es_rb.html +129 -0
  158. data/docs/rdoc/files/lib/evosynth/evolvers/evolution_strategies/selfadaptive_es_rb.html +119 -0
  159. data/docs/rdoc/files/lib/evosynth/evolvers/evolver_rb.html +131 -0
  160. data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_great_deluge_rb.html +119 -0
  161. data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_hillclimber_rb.html +119 -0
  162. data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_record_to_record_rb.html +119 -0
  163. data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_simulated_annealing_rb.html +119 -0
  164. data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_threshold_rb.html +119 -0
  165. data/docs/rdoc/files/lib/evosynth/evolvers/local_search/local_search_rb.html +137 -0
  166. data/docs/rdoc/files/lib/evosynth/evolvers/profile_using_evolver_rb.html +119 -0
  167. data/docs/rdoc/files/lib/evosynth/evolvers/runnable_evolver_rb.html +129 -0
  168. data/docs/rdoc/files/lib/evosynth/evolvers_rb.html +153 -0
  169. data/docs/rdoc/files/lib/evosynth/operators/adjustments/adaptive_adjustment_rb.html +119 -0
  170. data/docs/rdoc/files/lib/evosynth/operators/adjustments/predefined_adjustment_rb.html +119 -0
  171. data/docs/rdoc/files/lib/evosynth/operators/adjustments_rb.html +131 -0
  172. data/docs/rdoc/files/lib/evosynth/operators/global_recombinations/global_arithmetic_crossover_rb.html +119 -0
  173. data/docs/rdoc/files/lib/evosynth/operators/global_recombinations/global_uniform_crossover_rb.html +119 -0
  174. data/docs/rdoc/files/lib/evosynth/operators/global_recombinations_rb.html +131 -0
  175. data/docs/rdoc/files/lib/evosynth/operators/meta_operators/conditional_combined_operator_rb.html +119 -0
  176. data/docs/rdoc/files/lib/evosynth/operators/meta_operators/proportional_combined_operator_rb.html +119 -0
  177. data/docs/rdoc/files/lib/evosynth/operators/meta_operators/sequential_combined_operator_rb.html +119 -0
  178. data/docs/rdoc/files/lib/evosynth/operators/meta_operators_rb.html +133 -0
  179. data/docs/rdoc/files/lib/evosynth/operators/mutations/binary_mutation_rb.html +119 -0
  180. data/docs/rdoc/files/lib/evosynth/operators/mutations/efficient_binary_mutation_rb.html +119 -0
  181. data/docs/rdoc/files/lib/evosynth/operators/mutations/exchange_mutation_rb.html +119 -0
  182. data/docs/rdoc/files/lib/evosynth/operators/mutations/flip_functions_rb.html +119 -0
  183. data/docs/rdoc/files/lib/evosynth/operators/mutations/gauss_mutation_rb.html +119 -0
  184. data/docs/rdoc/files/lib/evosynth/operators/mutations/identity_rb.html +119 -0
  185. data/docs/rdoc/files/lib/evosynth/operators/mutations/inversion_mutation_rb.html +119 -0
  186. data/docs/rdoc/files/lib/evosynth/operators/mutations/mixing_mutation_rb.html +119 -0
  187. data/docs/rdoc/files/lib/evosynth/operators/mutations/one_gene_flipping_rb.html +119 -0
  188. data/docs/rdoc/files/lib/evosynth/operators/mutations/self_adaptive_gauss_mutation_rb.html +119 -0
  189. data/docs/rdoc/files/lib/evosynth/operators/mutations/shifting_mutation_rb.html +119 -0
  190. data/docs/rdoc/files/lib/evosynth/operators/mutations/uniform_real_mutation_rb.html +119 -0
  191. data/docs/rdoc/files/lib/evosynth/operators/mutations_rb.html +151 -0
  192. data/docs/rdoc/files/lib/evosynth/operators/recombinations/arithmetic_crossover_rb.html +119 -0
  193. data/docs/rdoc/files/lib/evosynth/operators/recombinations/edge_recombination_rb.html +129 -0
  194. data/docs/rdoc/files/lib/evosynth/operators/recombinations/identity_rb.html +119 -0
  195. data/docs/rdoc/files/lib/evosynth/operators/recombinations/k_point_crossover_rb.html +119 -0
  196. data/docs/rdoc/files/lib/evosynth/operators/recombinations/one_point_crossover_rb.html +119 -0
  197. data/docs/rdoc/files/lib/evosynth/operators/recombinations/ordered_recombination_rb.html +129 -0
  198. data/docs/rdoc/files/lib/evosynth/operators/recombinations/partially_mapped_crossover_rb.html +129 -0
  199. data/docs/rdoc/files/lib/evosynth/operators/recombinations/uniform_crossover_rb.html +119 -0
  200. data/docs/rdoc/files/lib/evosynth/operators/recombinations_rb.html +143 -0
  201. data/docs/rdoc/files/lib/evosynth/operators/selections/best_selection_rb.html +119 -0
  202. data/docs/rdoc/files/lib/evosynth/operators/selections/fitness_proportional_selection_rb.html +119 -0
  203. data/docs/rdoc/files/lib/evosynth/operators/selections/identity_rb.html +119 -0
  204. data/docs/rdoc/files/lib/evosynth/operators/selections/n_stage_tournament_selection_rb.html +119 -0
  205. data/docs/rdoc/files/lib/evosynth/operators/selections/random_selection_rb.html +119 -0
  206. data/docs/rdoc/files/lib/evosynth/operators/selections/roulette_wheel_selection_rb.html +119 -0
  207. data/docs/rdoc/files/lib/evosynth/operators/selections/tournament_selection_rb.html +119 -0
  208. data/docs/rdoc/files/lib/evosynth/operators/selections_rb.html +141 -0
  209. data/docs/rdoc/files/lib/evosynth/operators_rb.html +139 -0
  210. data/docs/rdoc/files/lib/evosynth/output/console_writer_rb.html +129 -0
  211. data/docs/rdoc/files/lib/evosynth/output/exporter/csv_exporter_rb.html +129 -0
  212. data/docs/rdoc/files/lib/evosynth/output/exporter/gnuplot_exporter_rb.html +131 -0
  213. data/docs/rdoc/files/lib/evosynth/output/exporter/gruff_exporter_rb.html +131 -0
  214. data/docs/rdoc/files/lib/evosynth/output/exporter_rb.html +133 -0
  215. data/docs/rdoc/files/lib/evosynth/output/factory_rb.html +129 -0
  216. data/docs/rdoc/files/lib/evosynth/output/logger_rb.html +119 -0
  217. data/docs/rdoc/files/lib/evosynth/output_rb.html +135 -0
  218. data/docs/rdoc/files/lib/evosynth/problems/binary_benchmark_functions_rb.html +119 -0
  219. data/docs/rdoc/files/lib/evosynth/problems/float_benchmark_functions_rb.html +1630 -0
  220. data/docs/rdoc/files/lib/evosynth/problems/graph_colouring_rb.html +129 -0
  221. data/docs/rdoc/files/lib/evosynth/problems/tsp_rb.html +129 -0
  222. data/docs/rdoc/files/lib/evosynth/problems_rb.html +135 -0
  223. data/docs/rdoc/files/lib/evosynth_rb.html +139 -0
  224. data/docs/rdoc/fr_class_index.html +245 -0
  225. data/docs/rdoc/fr_file_index.html +233 -0
  226. data/docs/rdoc/fr_method_index.html +661 -0
  227. data/docs/rdoc/index.html +21 -0
  228. data/docs/rdoc/rdoc-style.css +299 -0
  229. data/examples/ants.rb +237 -0
  230. data/examples/ccga_example.rb +150 -0
  231. data/examples/cmb_example.rb +117 -0
  232. data/examples/evolution_strategies.rb +84 -0
  233. data/examples/exporter.rb +90 -0
  234. data/examples/graph_colouring.rb +72 -0
  235. data/examples/hacking.rb +62 -0
  236. data/examples/local_search.rb +109 -0
  237. data/examples/max_ones.rb +83 -0
  238. data/examples/partition.rb +172 -0
  239. data/examples/spk.rb +106 -0
  240. data/examples/tsp.rb +83 -0
  241. data/lib/evosynth.rb +32 -0
  242. data/lib/evosynth/core.rb +33 -0
  243. data/lib/evosynth/core/array_genome.rb +77 -0
  244. data/lib/evosynth/core/binary_genome.rb +156 -0
  245. data/lib/evosynth/core/evaluator.rb +109 -0
  246. data/lib/evosynth/core/individual.rb +92 -0
  247. data/lib/evosynth/core/maximizing_individual.rb +71 -0
  248. data/lib/evosynth/core/minimizing_individual.rb +71 -0
  249. data/lib/evosynth/core/population.rb +120 -0
  250. data/lib/evosynth/core/profile.rb +110 -0
  251. data/lib/evosynth/core/randomizer.rb +73 -0
  252. data/lib/evosynth/decoder.rb +33 -0
  253. data/lib/evosynth/decoder/binary_to_real.rb +57 -0
  254. data/lib/evosynth/decoder/gray.rb +54 -0
  255. data/lib/evosynth/evolvers.rb +41 -0
  256. data/lib/evosynth/evolvers/basic/genetic_algorithm.rb +92 -0
  257. data/lib/evosynth/evolvers/basic/hillclimber.rb +64 -0
  258. data/lib/evosynth/evolvers/basic/memetic_algorithm.rb +111 -0
  259. data/lib/evosynth/evolvers/basic/population_hillclimber.rb +69 -0
  260. data/lib/evosynth/evolvers/basic/steady_state_ga.rb +85 -0
  261. data/lib/evosynth/evolvers/coevolutionary/balanced_coevolutionary.rb +125 -0
  262. data/lib/evosynth/evolvers/coevolutionary/round_robin_coevolutionary.rb +87 -0
  263. data/lib/evosynth/evolvers/elitism.rb +108 -0
  264. data/lib/evosynth/evolvers/evolution_strategies/adaptive_es.rb +104 -0
  265. data/lib/evosynth/evolvers/evolution_strategies/derandomized_es.rb +120 -0
  266. data/lib/evosynth/evolvers/evolution_strategies/selfadaptive_es.rb +82 -0
  267. data/lib/evosynth/evolvers/evolver.rb +43 -0
  268. data/lib/evosynth/evolvers/local_search/acceptance_great_deluge.rb +60 -0
  269. data/lib/evosynth/evolvers/local_search/acceptance_hillclimber.rb +47 -0
  270. data/lib/evosynth/evolvers/local_search/acceptance_record_to_record.rb +69 -0
  271. data/lib/evosynth/evolvers/local_search/acceptance_simulated_annealing.rb +59 -0
  272. data/lib/evosynth/evolvers/local_search/acceptance_threshold.rb +60 -0
  273. data/lib/evosynth/evolvers/local_search/local_search.rb +74 -0
  274. data/lib/evosynth/evolvers/profile_using_evolver.rb +77 -0
  275. data/lib/evosynth/evolvers/runnable_evolver.rb +89 -0
  276. data/lib/evosynth/operators.rb +30 -0
  277. data/lib/evosynth/operators/adjustments.rb +26 -0
  278. data/lib/evosynth/operators/adjustments/adaptive_adjustment.rb +55 -0
  279. data/lib/evosynth/operators/adjustments/predefined_adjustment.rb +46 -0
  280. data/lib/evosynth/operators/global_recombinations.rb +26 -0
  281. data/lib/evosynth/operators/global_recombinations/global_arithmetic_crossover.rb +50 -0
  282. data/lib/evosynth/operators/global_recombinations/global_uniform_crossover.rb +49 -0
  283. data/lib/evosynth/operators/meta_operators.rb +36 -0
  284. data/lib/evosynth/operators/meta_operators/conditional_combined_operator.rb +65 -0
  285. data/lib/evosynth/operators/meta_operators/proportional_combined_operator.rb +84 -0
  286. data/lib/evosynth/operators/meta_operators/sequential_combined_operator.rb +73 -0
  287. data/lib/evosynth/operators/mutations.rb +47 -0
  288. data/lib/evosynth/operators/mutations/binary_mutation.rb +100 -0
  289. data/lib/evosynth/operators/mutations/efficient_binary_mutation.rb +105 -0
  290. data/lib/evosynth/operators/mutations/exchange_mutation.rb +107 -0
  291. data/lib/evosynth/operators/mutations/flip_functions.rb +45 -0
  292. data/lib/evosynth/operators/mutations/gauss_mutation.rb +65 -0
  293. data/lib/evosynth/operators/mutations/identity.rb +62 -0
  294. data/lib/evosynth/operators/mutations/inversion_mutation.rb +73 -0
  295. data/lib/evosynth/operators/mutations/mixing_mutation.rb +75 -0
  296. data/lib/evosynth/operators/mutations/one_gene_flipping.rb +89 -0
  297. data/lib/evosynth/operators/mutations/self_adaptive_gauss_mutation.rb +73 -0
  298. data/lib/evosynth/operators/mutations/shifting_mutation.rb +88 -0
  299. data/lib/evosynth/operators/mutations/uniform_real_mutation.rb +59 -0
  300. data/lib/evosynth/operators/recombinations.rb +48 -0
  301. data/lib/evosynth/operators/recombinations/arithmetic_crossover.rb +67 -0
  302. data/lib/evosynth/operators/recombinations/edge_recombination.rb +108 -0
  303. data/lib/evosynth/operators/recombinations/identity.rb +42 -0
  304. data/lib/evosynth/operators/recombinations/k_point_crossover.rb +81 -0
  305. data/lib/evosynth/operators/recombinations/one_point_crossover.rb +56 -0
  306. data/lib/evosynth/operators/recombinations/ordered_recombination.rb +75 -0
  307. data/lib/evosynth/operators/recombinations/partially_mapped_crossover.rb +102 -0
  308. data/lib/evosynth/operators/recombinations/uniform_crossover.rb +54 -0
  309. data/lib/evosynth/operators/selections.rb +31 -0
  310. data/lib/evosynth/operators/selections/best_selection.rb +54 -0
  311. data/lib/evosynth/operators/selections/fitness_proportional_selection.rb +83 -0
  312. data/lib/evosynth/operators/selections/identity.rb +48 -0
  313. data/lib/evosynth/operators/selections/n_stage_tournament_selection.rb +84 -0
  314. data/lib/evosynth/operators/selections/random_selection.rb +44 -0
  315. data/lib/evosynth/operators/selections/roulette_wheel_selection.rb +54 -0
  316. data/lib/evosynth/operators/selections/tournament_selection.rb +71 -0
  317. data/lib/evosynth/output.rb +28 -0
  318. data/lib/evosynth/output/console_writer.rb +45 -0
  319. data/lib/evosynth/output/exporter.rb +27 -0
  320. data/lib/evosynth/output/exporter/csv_exporter.rb +62 -0
  321. data/lib/evosynth/output/exporter/gnuplot_exporter.rb +81 -0
  322. data/lib/evosynth/output/exporter/gruff_exporter.rb +70 -0
  323. data/lib/evosynth/output/factory.rb +38 -0
  324. data/lib/evosynth/output/logger.rb +83 -0
  325. data/lib/evosynth/problems.rb +37 -0
  326. data/lib/evosynth/problems/binary_benchmark_functions.rb +74 -0
  327. data/lib/evosynth/problems/float_benchmark_functions.rb +99 -0
  328. data/lib/evosynth/problems/graph_colouring.rb +89 -0
  329. data/lib/evosynth/problems/tsp.rb +88 -0
  330. data/test/benchmark/decoder_benchmark.rb +75 -0
  331. data/test/benchmark/mutation_benchmark.rb +88 -0
  332. data/test/benchmark/recombination_benchmark.rb +58 -0
  333. data/test/benchmark/selection_benchmark.rb +52 -0
  334. data/test/core/tc_array_genome.rb +154 -0
  335. data/test/core/tc_binary_genome.rb +160 -0
  336. data/test/core/tc_population.rb +154 -0
  337. data/test/core/tc_profile.rb +75 -0
  338. data/test/core/tc_randomizer.rb +165 -0
  339. data/test/coverage.rb +43 -0
  340. data/test/decoder/tc_binary_to_real.rb +52 -0
  341. data/test/decoder/tc_gray.rb +107 -0
  342. data/test/operators/adjustments/tc_adaptive_adjustment.rb +63 -0
  343. data/test/operators/adjustments/tc_predefined_adjustment.rb +49 -0
  344. data/test/operators/global_recombinations/tc_global_arithmetic_crossover.rb +78 -0
  345. data/test/operators/global_recombinations/tc_global_uniform_crossover.rb +90 -0
  346. data/test/operators/meta_operators/tc_conditional_combined_operator.rb +66 -0
  347. data/test/operators/meta_operators/tc_proportional_combined_operator.rb +167 -0
  348. data/test/operators/meta_operators/tc_sequential_combined_operator.rb +98 -0
  349. data/test/operators/mutations/tc_binary_mutation.rb +73 -0
  350. data/test/operators/mutations/tc_efficient_binary_mutation.rb +73 -0
  351. data/test/operators/mutations/tc_exchange_mutation.rb +127 -0
  352. data/test/operators/mutations/tc_gauss_mutation.rb +130 -0
  353. data/test/operators/mutations/tc_identity_mutation.rb +64 -0
  354. data/test/operators/mutations/tc_inversion_mutation.rb +70 -0
  355. data/test/operators/mutations/tc_mixing_mutation.rb +73 -0
  356. data/test/operators/mutations/tc_one_gene_flipping.rb +109 -0
  357. data/test/operators/mutations/tc_self_adaptive_gauss_mutation.rb +72 -0
  358. data/test/operators/mutations/tc_shifting_muation.rb +73 -0
  359. data/test/operators/mutations/tc_uniform_real_mutation.rb +65 -0
  360. data/test/operators/recombinations/tc_arithmetic_crossover.rb +79 -0
  361. data/test/operators/recombinations/tc_edge_recombination.rb +76 -0
  362. data/test/operators/recombinations/tc_identity_recombination.rb +81 -0
  363. data/test/operators/recombinations/tc_k_point_crossover.rb +81 -0
  364. data/test/operators/recombinations/tc_one_point_crossover.rb +80 -0
  365. data/test/operators/recombinations/tc_ordered_recombination.rb +76 -0
  366. data/test/operators/recombinations/tc_partially_mapped_crossover.rb +91 -0
  367. data/test/operators/recombinations/tc_uniform_crossover.rb +84 -0
  368. data/test/operators/selections/tc_best_selection.rb +85 -0
  369. data/test/operators/selections/tc_fitness_proportional_selection.rb +78 -0
  370. data/test/operators/selections/tc_identity.rb +91 -0
  371. data/test/operators/selections/tc_n_stage_tournament.rb +78 -0
  372. data/test/operators/selections/tc_random_selection.rb +70 -0
  373. data/test/operators/selections/tc_roulette_wheel_selection.rb +78 -0
  374. data/test/operators/selections/tc_tournament_selection.rb +83 -0
  375. data/test/problems/tc_binary_benchmark_functions.rb +126 -0
  376. data/test/problems/tc_float_benchmark_functions.rb +100 -0
  377. data/test/test_util/test_helper.rb +128 -0
  378. data/test/ts_adjustments.rb +26 -0
  379. data/test/ts_core.rb +29 -0
  380. data/test/ts_decoder.rb +26 -0
  381. data/test/ts_global_recombinations.rb +26 -0
  382. data/test/ts_meta_operators.rb +27 -0
  383. data/test/ts_mutations.rb +35 -0
  384. data/test/ts_problems.rb +26 -0
  385. data/test/ts_recombinations.rb +32 -0
  386. data/test/ts_selections.rb +31 -0
  387. data/testdata/README +4 -0
  388. data/testdata/bays29.tsp +68 -0
  389. data/testdata/myciel4.col +77 -0
  390. metadata +552 -0
@@ -0,0 +1,119 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <title>File: logger.rb [EvoSynth Documentation]</title>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
8
+ <link rel="stylesheet" href="../../../.././rdoc-style.css" type="text/css" media="screen" />
9
+ <script type="text/javascript">
10
+ // <![CDATA[
11
+
12
+ function popupCode( url ) {
13
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
14
+ }
15
+
16
+ function toggleCode( id ) {
17
+ if ( document.getElementById )
18
+ elem = document.getElementById( id );
19
+ else if ( document.all )
20
+ elem = eval( "document.all." + id );
21
+ else
22
+ return false;
23
+
24
+ elemStyle = elem.style;
25
+
26
+ if ( elemStyle.display != "block" ) {
27
+ elemStyle.display = "block"
28
+ } else {
29
+ elemStyle.display = "none"
30
+ }
31
+
32
+ return true;
33
+ }
34
+
35
+ // Make codeblocks hidden by default
36
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
+
38
+ // ]]>
39
+ </script>
40
+
41
+ </head>
42
+ <body>
43
+
44
+
45
+ <div id="fileHeader">
46
+ <h1>logger.rb</h1>
47
+ <table class="header-table">
48
+ <tr class="top-aligned-row">
49
+ <td><strong>Path:</strong></td>
50
+ <td>lib/evosynth/output/logger.rb
51
+
52
+ </td>
53
+ </tr>
54
+ <tr class="top-aligned-row">
55
+ <td><strong>Last Update:</strong></td>
56
+ <td>2010-03-09 12:51:15 +0100</td>
57
+ </tr>
58
+ </table>
59
+ </div>
60
+ <!-- banner header -->
61
+
62
+ <div id="bodyContent">
63
+
64
+ <div id="contextContent">
65
+
66
+ <div id="description">
67
+ <p>
68
+ Copyright &#169; 2009, 2010 Yves Adler <yves.adler@googlemail.com>
69
+ </p>
70
+ <p>
71
+ Permission is hereby granted, free of charge, to any person obtaining a
72
+ copy of this software and associated documentation files (the
73
+ &#8220;Software&#8221;), to deal in the Software without restriction,
74
+ including without limitation the rights to use, copy, modify, merge,
75
+ publish, distribute, sublicense, and/or sell copies of the Software, and to
76
+ permit persons to whom the Software is furnished to do so, subject to the
77
+ following conditions:
78
+ </p>
79
+ <p>
80
+ The above copyright notice and this permission notice shall be included in
81
+ all copies or substantial portions of the Software.
82
+ </p>
83
+ <p>
84
+ THE SOFTWARE IS PROVIDED &#8220;AS IS&#8221;, WITHOUT WARRANTY OF ANY KIND,
85
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
86
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
87
+ NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
88
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
89
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
90
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
91
+ </p>
92
+
93
+ </div>
94
+
95
+ </div>
96
+
97
+
98
+ </div>
99
+
100
+ <!-- if includes -->
101
+
102
+ <div id="section">
103
+
104
+
105
+
106
+
107
+ <!-- if method_list -->
108
+
109
+
110
+
111
+
112
+ </div>
113
+
114
+ <div id="validator-badges">
115
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
116
+ </div>
117
+
118
+ </body>
119
+ </html>
@@ -0,0 +1,135 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <title>File: output.rb [EvoSynth Documentation]</title>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
8
+ <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
9
+ <script type="text/javascript">
10
+ // <![CDATA[
11
+
12
+ function popupCode( url ) {
13
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
14
+ }
15
+
16
+ function toggleCode( id ) {
17
+ if ( document.getElementById )
18
+ elem = document.getElementById( id );
19
+ else if ( document.all )
20
+ elem = eval( "document.all." + id );
21
+ else
22
+ return false;
23
+
24
+ elemStyle = elem.style;
25
+
26
+ if ( elemStyle.display != "block" ) {
27
+ elemStyle.display = "block"
28
+ } else {
29
+ elemStyle.display = "none"
30
+ }
31
+
32
+ return true;
33
+ }
34
+
35
+ // Make codeblocks hidden by default
36
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
+
38
+ // ]]>
39
+ </script>
40
+
41
+ </head>
42
+ <body>
43
+
44
+
45
+ <div id="fileHeader">
46
+ <h1>output.rb</h1>
47
+ <table class="header-table">
48
+ <tr class="top-aligned-row">
49
+ <td><strong>Path:</strong></td>
50
+ <td>lib/evosynth/output.rb
51
+
52
+ </td>
53
+ </tr>
54
+ <tr class="top-aligned-row">
55
+ <td><strong>Last Update:</strong></td>
56
+ <td>2010-03-09 12:51:14 +0100</td>
57
+ </tr>
58
+ </table>
59
+ </div>
60
+ <!-- banner header -->
61
+
62
+ <div id="bodyContent">
63
+
64
+ <div id="contextContent">
65
+
66
+ <div id="description">
67
+ <p>
68
+ Copyright &#169; 2009, 2010 Yves Adler <yves.adler@googlemail.com>
69
+ </p>
70
+ <p>
71
+ Permission is hereby granted, free of charge, to any person obtaining a
72
+ copy of this software and associated documentation files (the
73
+ &#8220;Software&#8221;), to deal in the Software without restriction,
74
+ including without limitation the rights to use, copy, modify, merge,
75
+ publish, distribute, sublicense, and/or sell copies of the Software, and to
76
+ permit persons to whom the Software is furnished to do so, subject to the
77
+ following conditions:
78
+ </p>
79
+ <p>
80
+ The above copyright notice and this permission notice shall be included in
81
+ all copies or substantial portions of the Software.
82
+ </p>
83
+ <p>
84
+ THE SOFTWARE IS PROVIDED &#8220;AS IS&#8221;, WITHOUT WARRANTY OF ANY KIND,
85
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
86
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
87
+ NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
88
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
89
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
90
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
91
+ </p>
92
+
93
+ </div>
94
+
95
+ <div id="requires-list">
96
+ <h3 class="section-bar">Required files</h3>
97
+
98
+ <div class="name-list">
99
+
100
+ evosynth/output/logger&nbsp;&nbsp;
101
+
102
+ evosynth/output/console_writer&nbsp;&nbsp;
103
+
104
+ evosynth/output/exporter&nbsp;&nbsp;
105
+
106
+ evosynth/output/factory&nbsp;&nbsp;
107
+
108
+ </div>
109
+ </div>
110
+
111
+ </div>
112
+
113
+
114
+ </div>
115
+
116
+ <!-- if includes -->
117
+
118
+ <div id="section">
119
+
120
+
121
+
122
+
123
+ <!-- if method_list -->
124
+
125
+
126
+
127
+
128
+ </div>
129
+
130
+ <div id="validator-badges">
131
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
132
+ </div>
133
+
134
+ </body>
135
+ </html>
@@ -0,0 +1,119 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <title>File: binary_benchmark_functions.rb [EvoSynth Documentation]</title>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
8
+ <link rel="stylesheet" href="../../../.././rdoc-style.css" type="text/css" media="screen" />
9
+ <script type="text/javascript">
10
+ // <![CDATA[
11
+
12
+ function popupCode( url ) {
13
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
14
+ }
15
+
16
+ function toggleCode( id ) {
17
+ if ( document.getElementById )
18
+ elem = document.getElementById( id );
19
+ else if ( document.all )
20
+ elem = eval( "document.all." + id );
21
+ else
22
+ return false;
23
+
24
+ elemStyle = elem.style;
25
+
26
+ if ( elemStyle.display != "block" ) {
27
+ elemStyle.display = "block"
28
+ } else {
29
+ elemStyle.display = "none"
30
+ }
31
+
32
+ return true;
33
+ }
34
+
35
+ // Make codeblocks hidden by default
36
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
+
38
+ // ]]>
39
+ </script>
40
+
41
+ </head>
42
+ <body>
43
+
44
+
45
+ <div id="fileHeader">
46
+ <h1>binary_benchmark_functions.rb</h1>
47
+ <table class="header-table">
48
+ <tr class="top-aligned-row">
49
+ <td><strong>Path:</strong></td>
50
+ <td>lib/evosynth/problems/binary_benchmark_functions.rb
51
+
52
+ </td>
53
+ </tr>
54
+ <tr class="top-aligned-row">
55
+ <td><strong>Last Update:</strong></td>
56
+ <td>2010-03-09 12:51:15 +0100</td>
57
+ </tr>
58
+ </table>
59
+ </div>
60
+ <!-- banner header -->
61
+
62
+ <div id="bodyContent">
63
+
64
+ <div id="contextContent">
65
+
66
+ <div id="description">
67
+ <p>
68
+ Copyright &#169; 2009, 2010 Yves Adler <yves.adler@googlemail.com>
69
+ </p>
70
+ <p>
71
+ Permission is hereby granted, free of charge, to any person obtaining a
72
+ copy of this software and associated documentation files (the
73
+ &#8220;Software&#8221;), to deal in the Software without restriction,
74
+ including without limitation the rights to use, copy, modify, merge,
75
+ publish, distribute, sublicense, and/or sell copies of the Software, and to
76
+ permit persons to whom the Software is furnished to do so, subject to the
77
+ following conditions:
78
+ </p>
79
+ <p>
80
+ The above copyright notice and this permission notice shall be included in
81
+ all copies or substantial portions of the Software.
82
+ </p>
83
+ <p>
84
+ THE SOFTWARE IS PROVIDED &#8220;AS IS&#8221;, WITHOUT WARRANTY OF ANY KIND,
85
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
86
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
87
+ NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
88
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
89
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
90
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
91
+ </p>
92
+
93
+ </div>
94
+
95
+ </div>
96
+
97
+
98
+ </div>
99
+
100
+ <!-- if includes -->
101
+
102
+ <div id="section">
103
+
104
+
105
+
106
+
107
+ <!-- if method_list -->
108
+
109
+
110
+
111
+
112
+ </div>
113
+
114
+ <div id="validator-badges">
115
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
116
+ </div>
117
+
118
+ </body>
119
+ </html>
@@ -0,0 +1,1630 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <title>File: float_benchmark_functions.rb [EvoSynth Documentation]</title>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
8
+ <link rel="stylesheet" href="../../../.././rdoc-style.css" type="text/css" media="screen" />
9
+ <script type="text/javascript">
10
+ // <![CDATA[
11
+
12
+ function popupCode( url ) {
13
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
14
+ }
15
+
16
+ function toggleCode( id ) {
17
+ if ( document.getElementById )
18
+ elem = document.getElementById( id );
19
+ else if ( document.all )
20
+ elem = eval( "document.all." + id );
21
+ else
22
+ return false;
23
+
24
+ elemStyle = elem.style;
25
+
26
+ if ( elemStyle.display != "block" ) {
27
+ elemStyle.display = "block"
28
+ } else {
29
+ elemStyle.display = "none"
30
+ }
31
+
32
+ return true;
33
+ }
34
+
35
+ // Make codeblocks hidden by default
36
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
+
38
+ // ]]>
39
+ </script>
40
+
41
+ </head>
42
+ <body>
43
+
44
+
45
+ <div id="fileHeader">
46
+ <h1>float_benchmark_functions.rb</h1>
47
+ <table class="header-table">
48
+ <tr class="top-aligned-row">
49
+ <td><strong>Path:</strong></td>
50
+ <td>lib/evosynth/problems/float_benchmark_functions.rb
51
+
52
+ </td>
53
+ </tr>
54
+ <tr class="top-aligned-row">
55
+ <td><strong>Last Update:</strong></td>
56
+ <td>2010-03-09 12:51:15 +0100</td>
57
+ </tr>
58
+ </table>
59
+ </div>
60
+ <!-- banner header -->
61
+
62
+ <div id="bodyContent">
63
+
64
+ <div id="contextContent">
65
+
66
+ <div id="description">
67
+ <pre>
68
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
69
+
70
+ Permission is hereby granted, free of charge, to any person
71
+ obtaining a copy of this software and associated documentation
72
+ files (the &quot;Software&quot;), to deal in the Software without
73
+ restriction, including without limitation the rights to use,
74
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
75
+ copies of the Software, and to permit persons to whom the
76
+ Software is furnished to do so, subject to the following
77
+ conditions:
78
+
79
+ The above copyright notice and this permission notice shall be
80
+ included in all copies or substantial portions of the Software.
81
+
82
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
83
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
84
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
85
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
86
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
87
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
88
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
89
+ OTHER DEALINGS IN THE SOFTWARE.
90
+ </pre>
91
+ <hr size="1"></hr><pre>
92
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
93
+
94
+ Permission is hereby granted, free of charge, to any person
95
+ obtaining a copy of this software and associated documentation
96
+ files (the &quot;Software&quot;), to deal in the Software without
97
+ restriction, including without limitation the rights to use,
98
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
99
+ copies of the Software, and to permit persons to whom the
100
+ Software is furnished to do so, subject to the following
101
+ conditions:
102
+
103
+ The above copyright notice and this permission notice shall be
104
+ included in all copies or substantial portions of the Software.
105
+
106
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
107
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
108
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
109
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
110
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
111
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
112
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
113
+ OTHER DEALINGS IN THE SOFTWARE.
114
+ </pre>
115
+ <hr size="1"></hr><pre>
116
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
117
+
118
+ Permission is hereby granted, free of charge, to any person
119
+ obtaining a copy of this software and associated documentation
120
+ files (the &quot;Software&quot;), to deal in the Software without
121
+ restriction, including without limitation the rights to use,
122
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
123
+ copies of the Software, and to permit persons to whom the
124
+ Software is furnished to do so, subject to the following
125
+ conditions:
126
+
127
+ The above copyright notice and this permission notice shall be
128
+ included in all copies or substantial portions of the Software.
129
+
130
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
131
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
132
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
133
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
134
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
135
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
136
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
137
+ OTHER DEALINGS IN THE SOFTWARE.
138
+ </pre>
139
+ <hr size="1"></hr><pre>
140
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
141
+
142
+ Permission is hereby granted, free of charge, to any person
143
+ obtaining a copy of this software and associated documentation
144
+ files (the &quot;Software&quot;), to deal in the Software without
145
+ restriction, including without limitation the rights to use,
146
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
147
+ copies of the Software, and to permit persons to whom the
148
+ Software is furnished to do so, subject to the following
149
+ conditions:
150
+
151
+ The above copyright notice and this permission notice shall be
152
+ included in all copies or substantial portions of the Software.
153
+
154
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
155
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
156
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
157
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
158
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
159
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
160
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
161
+ OTHER DEALINGS IN THE SOFTWARE.
162
+ </pre>
163
+ <hr size="1"></hr><pre>
164
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
165
+
166
+ Permission is hereby granted, free of charge, to any person
167
+ obtaining a copy of this software and associated documentation
168
+ files (the &quot;Software&quot;), to deal in the Software without
169
+ restriction, including without limitation the rights to use,
170
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
171
+ copies of the Software, and to permit persons to whom the
172
+ Software is furnished to do so, subject to the following
173
+ conditions:
174
+
175
+ The above copyright notice and this permission notice shall be
176
+ included in all copies or substantial portions of the Software.
177
+
178
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
179
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
180
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
181
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
182
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
183
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
184
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
185
+ OTHER DEALINGS IN THE SOFTWARE.
186
+ </pre>
187
+ <hr size="1"></hr><pre>
188
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
189
+
190
+ Permission is hereby granted, free of charge, to any person
191
+ obtaining a copy of this software and associated documentation
192
+ files (the &quot;Software&quot;), to deal in the Software without
193
+ restriction, including without limitation the rights to use,
194
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
195
+ copies of the Software, and to permit persons to whom the
196
+ Software is furnished to do so, subject to the following
197
+ conditions:
198
+
199
+ The above copyright notice and this permission notice shall be
200
+ included in all copies or substantial portions of the Software.
201
+
202
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
203
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
204
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
205
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
206
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
207
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
208
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
209
+ OTHER DEALINGS IN THE SOFTWARE.
210
+ </pre>
211
+ <hr size="1"></hr><pre>
212
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
213
+
214
+ Permission is hereby granted, free of charge, to any person
215
+ obtaining a copy of this software and associated documentation
216
+ files (the &quot;Software&quot;), to deal in the Software without
217
+ restriction, including without limitation the rights to use,
218
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
219
+ copies of the Software, and to permit persons to whom the
220
+ Software is furnished to do so, subject to the following
221
+ conditions:
222
+
223
+ The above copyright notice and this permission notice shall be
224
+ included in all copies or substantial portions of the Software.
225
+
226
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
227
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
228
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
229
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
230
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
231
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
232
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
233
+ OTHER DEALINGS IN THE SOFTWARE.
234
+ </pre>
235
+ <hr size="1"></hr><pre>
236
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
237
+
238
+ Permission is hereby granted, free of charge, to any person
239
+ obtaining a copy of this software and associated documentation
240
+ files (the &quot;Software&quot;), to deal in the Software without
241
+ restriction, including without limitation the rights to use,
242
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
243
+ copies of the Software, and to permit persons to whom the
244
+ Software is furnished to do so, subject to the following
245
+ conditions:
246
+
247
+ The above copyright notice and this permission notice shall be
248
+ included in all copies or substantial portions of the Software.
249
+
250
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
251
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
252
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
253
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
254
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
255
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
256
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
257
+ OTHER DEALINGS IN THE SOFTWARE.
258
+ </pre>
259
+ <hr size="1"></hr><pre>
260
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
261
+
262
+ Permission is hereby granted, free of charge, to any person
263
+ obtaining a copy of this software and associated documentation
264
+ files (the &quot;Software&quot;), to deal in the Software without
265
+ restriction, including without limitation the rights to use,
266
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
267
+ copies of the Software, and to permit persons to whom the
268
+ Software is furnished to do so, subject to the following
269
+ conditions:
270
+
271
+ The above copyright notice and this permission notice shall be
272
+ included in all copies or substantial portions of the Software.
273
+
274
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
275
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
276
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
277
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
278
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
279
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
280
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
281
+ OTHER DEALINGS IN THE SOFTWARE.
282
+ </pre>
283
+ <hr size="1"></hr><pre>
284
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
285
+
286
+ Permission is hereby granted, free of charge, to any person
287
+ obtaining a copy of this software and associated documentation
288
+ files (the &quot;Software&quot;), to deal in the Software without
289
+ restriction, including without limitation the rights to use,
290
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
291
+ copies of the Software, and to permit persons to whom the
292
+ Software is furnished to do so, subject to the following
293
+ conditions:
294
+
295
+ The above copyright notice and this permission notice shall be
296
+ included in all copies or substantial portions of the Software.
297
+
298
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
299
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
300
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
301
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
302
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
303
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
304
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
305
+ OTHER DEALINGS IN THE SOFTWARE.
306
+ </pre>
307
+ <hr size="1"></hr><pre>
308
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
309
+
310
+ Permission is hereby granted, free of charge, to any person
311
+ obtaining a copy of this software and associated documentation
312
+ files (the &quot;Software&quot;), to deal in the Software without
313
+ restriction, including without limitation the rights to use,
314
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
315
+ copies of the Software, and to permit persons to whom the
316
+ Software is furnished to do so, subject to the following
317
+ conditions:
318
+
319
+ The above copyright notice and this permission notice shall be
320
+ included in all copies or substantial portions of the Software.
321
+
322
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
323
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
324
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
325
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
326
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
327
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
328
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
329
+ OTHER DEALINGS IN THE SOFTWARE.
330
+ </pre>
331
+ <hr size="1"></hr><pre>
332
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
333
+
334
+ Permission is hereby granted, free of charge, to any person
335
+ obtaining a copy of this software and associated documentation
336
+ files (the &quot;Software&quot;), to deal in the Software without
337
+ restriction, including without limitation the rights to use,
338
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
339
+ copies of the Software, and to permit persons to whom the
340
+ Software is furnished to do so, subject to the following
341
+ conditions:
342
+
343
+ The above copyright notice and this permission notice shall be
344
+ included in all copies or substantial portions of the Software.
345
+
346
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
347
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
348
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
349
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
350
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
351
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
352
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
353
+ OTHER DEALINGS IN THE SOFTWARE.
354
+ </pre>
355
+ <hr size="1"></hr><pre>
356
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
357
+
358
+ Permission is hereby granted, free of charge, to any person
359
+ obtaining a copy of this software and associated documentation
360
+ files (the &quot;Software&quot;), to deal in the Software without
361
+ restriction, including without limitation the rights to use,
362
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
363
+ copies of the Software, and to permit persons to whom the
364
+ Software is furnished to do so, subject to the following
365
+ conditions:
366
+
367
+ The above copyright notice and this permission notice shall be
368
+ included in all copies or substantial portions of the Software.
369
+
370
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
371
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
372
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
373
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
374
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
375
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
376
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
377
+ OTHER DEALINGS IN THE SOFTWARE.
378
+ </pre>
379
+ <hr size="1"></hr><pre>
380
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
381
+
382
+ Permission is hereby granted, free of charge, to any person
383
+ obtaining a copy of this software and associated documentation
384
+ files (the &quot;Software&quot;), to deal in the Software without
385
+ restriction, including without limitation the rights to use,
386
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
387
+ copies of the Software, and to permit persons to whom the
388
+ Software is furnished to do so, subject to the following
389
+ conditions:
390
+
391
+ The above copyright notice and this permission notice shall be
392
+ included in all copies or substantial portions of the Software.
393
+
394
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
395
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
396
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
397
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
398
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
399
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
400
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
401
+ OTHER DEALINGS IN THE SOFTWARE.
402
+ </pre>
403
+ <hr size="1"></hr><pre>
404
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
405
+
406
+ Permission is hereby granted, free of charge, to any person
407
+ obtaining a copy of this software and associated documentation
408
+ files (the &quot;Software&quot;), to deal in the Software without
409
+ restriction, including without limitation the rights to use,
410
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
411
+ copies of the Software, and to permit persons to whom the
412
+ Software is furnished to do so, subject to the following
413
+ conditions:
414
+
415
+ The above copyright notice and this permission notice shall be
416
+ included in all copies or substantial portions of the Software.
417
+
418
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
419
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
420
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
421
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
422
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
423
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
424
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
425
+ OTHER DEALINGS IN THE SOFTWARE.
426
+ </pre>
427
+ <hr size="1"></hr><pre>
428
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
429
+
430
+ Permission is hereby granted, free of charge, to any person
431
+ obtaining a copy of this software and associated documentation
432
+ files (the &quot;Software&quot;), to deal in the Software without
433
+ restriction, including without limitation the rights to use,
434
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
435
+ copies of the Software, and to permit persons to whom the
436
+ Software is furnished to do so, subject to the following
437
+ conditions:
438
+
439
+ The above copyright notice and this permission notice shall be
440
+ included in all copies or substantial portions of the Software.
441
+
442
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
443
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
444
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
445
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
446
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
447
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
448
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
449
+ OTHER DEALINGS IN THE SOFTWARE.
450
+ </pre>
451
+ <hr size="1"></hr><pre>
452
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
453
+
454
+ Permission is hereby granted, free of charge, to any person
455
+ obtaining a copy of this software and associated documentation
456
+ files (the &quot;Software&quot;), to deal in the Software without
457
+ restriction, including without limitation the rights to use,
458
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
459
+ copies of the Software, and to permit persons to whom the
460
+ Software is furnished to do so, subject to the following
461
+ conditions:
462
+
463
+ The above copyright notice and this permission notice shall be
464
+ included in all copies or substantial portions of the Software.
465
+
466
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
467
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
468
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
469
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
470
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
471
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
472
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
473
+ OTHER DEALINGS IN THE SOFTWARE.
474
+ </pre>
475
+ <hr size="1"></hr><pre>
476
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
477
+
478
+ Permission is hereby granted, free of charge, to any person
479
+ obtaining a copy of this software and associated documentation
480
+ files (the &quot;Software&quot;), to deal in the Software without
481
+ restriction, including without limitation the rights to use,
482
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
483
+ copies of the Software, and to permit persons to whom the
484
+ Software is furnished to do so, subject to the following
485
+ conditions:
486
+
487
+ The above copyright notice and this permission notice shall be
488
+ included in all copies or substantial portions of the Software.
489
+
490
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
491
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
492
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
493
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
494
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
495
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
496
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
497
+ OTHER DEALINGS IN THE SOFTWARE.
498
+ </pre>
499
+ <hr size="1"></hr><pre>
500
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
501
+
502
+ Permission is hereby granted, free of charge, to any person
503
+ obtaining a copy of this software and associated documentation
504
+ files (the &quot;Software&quot;), to deal in the Software without
505
+ restriction, including without limitation the rights to use,
506
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
507
+ copies of the Software, and to permit persons to whom the
508
+ Software is furnished to do so, subject to the following
509
+ conditions:
510
+
511
+ The above copyright notice and this permission notice shall be
512
+ included in all copies or substantial portions of the Software.
513
+
514
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
515
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
516
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
517
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
518
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
519
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
520
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
521
+ OTHER DEALINGS IN THE SOFTWARE.
522
+ </pre>
523
+ <hr size="1"></hr><pre>
524
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
525
+
526
+ Permission is hereby granted, free of charge, to any person
527
+ obtaining a copy of this software and associated documentation
528
+ files (the &quot;Software&quot;), to deal in the Software without
529
+ restriction, including without limitation the rights to use,
530
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
531
+ copies of the Software, and to permit persons to whom the
532
+ Software is furnished to do so, subject to the following
533
+ conditions:
534
+
535
+ The above copyright notice and this permission notice shall be
536
+ included in all copies or substantial portions of the Software.
537
+
538
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
539
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
540
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
541
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
542
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
543
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
544
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
545
+ OTHER DEALINGS IN THE SOFTWARE.
546
+ </pre>
547
+ <hr size="1"></hr><pre>
548
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
549
+
550
+ Permission is hereby granted, free of charge, to any person
551
+ obtaining a copy of this software and associated documentation
552
+ files (the &quot;Software&quot;), to deal in the Software without
553
+ restriction, including without limitation the rights to use,
554
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
555
+ copies of the Software, and to permit persons to whom the
556
+ Software is furnished to do so, subject to the following
557
+ conditions:
558
+
559
+ The above copyright notice and this permission notice shall be
560
+ included in all copies or substantial portions of the Software.
561
+
562
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
563
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
564
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
565
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
566
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
567
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
568
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
569
+ OTHER DEALINGS IN THE SOFTWARE.
570
+ </pre>
571
+ <hr size="1"></hr><pre>
572
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
573
+
574
+ Permission is hereby granted, free of charge, to any person
575
+ obtaining a copy of this software and associated documentation
576
+ files (the &quot;Software&quot;), to deal in the Software without
577
+ restriction, including without limitation the rights to use,
578
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
579
+ copies of the Software, and to permit persons to whom the
580
+ Software is furnished to do so, subject to the following
581
+ conditions:
582
+
583
+ The above copyright notice and this permission notice shall be
584
+ included in all copies or substantial portions of the Software.
585
+
586
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
587
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
588
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
589
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
590
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
591
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
592
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
593
+ OTHER DEALINGS IN THE SOFTWARE.
594
+ </pre>
595
+ <hr size="1"></hr><pre>
596
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
597
+
598
+ Permission is hereby granted, free of charge, to any person
599
+ obtaining a copy of this software and associated documentation
600
+ files (the &quot;Software&quot;), to deal in the Software without
601
+ restriction, including without limitation the rights to use,
602
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
603
+ copies of the Software, and to permit persons to whom the
604
+ Software is furnished to do so, subject to the following
605
+ conditions:
606
+
607
+ The above copyright notice and this permission notice shall be
608
+ included in all copies or substantial portions of the Software.
609
+
610
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
611
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
612
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
613
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
614
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
615
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
616
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
617
+ OTHER DEALINGS IN THE SOFTWARE.
618
+ </pre>
619
+ <hr size="1"></hr><pre>
620
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
621
+
622
+ Permission is hereby granted, free of charge, to any person
623
+ obtaining a copy of this software and associated documentation
624
+ files (the &quot;Software&quot;), to deal in the Software without
625
+ restriction, including without limitation the rights to use,
626
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
627
+ copies of the Software, and to permit persons to whom the
628
+ Software is furnished to do so, subject to the following
629
+ conditions:
630
+
631
+ The above copyright notice and this permission notice shall be
632
+ included in all copies or substantial portions of the Software.
633
+
634
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
635
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
636
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
637
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
638
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
639
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
640
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
641
+ OTHER DEALINGS IN THE SOFTWARE.
642
+ </pre>
643
+ <hr size="1"></hr><pre>
644
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
645
+
646
+ Permission is hereby granted, free of charge, to any person
647
+ obtaining a copy of this software and associated documentation
648
+ files (the &quot;Software&quot;), to deal in the Software without
649
+ restriction, including without limitation the rights to use,
650
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
651
+ copies of the Software, and to permit persons to whom the
652
+ Software is furnished to do so, subject to the following
653
+ conditions:
654
+
655
+ The above copyright notice and this permission notice shall be
656
+ included in all copies or substantial portions of the Software.
657
+
658
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
659
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
660
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
661
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
662
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
663
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
664
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
665
+ OTHER DEALINGS IN THE SOFTWARE.
666
+ </pre>
667
+ <hr size="1"></hr><pre>
668
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
669
+
670
+ Permission is hereby granted, free of charge, to any person
671
+ obtaining a copy of this software and associated documentation
672
+ files (the &quot;Software&quot;), to deal in the Software without
673
+ restriction, including without limitation the rights to use,
674
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
675
+ copies of the Software, and to permit persons to whom the
676
+ Software is furnished to do so, subject to the following
677
+ conditions:
678
+
679
+ The above copyright notice and this permission notice shall be
680
+ included in all copies or substantial portions of the Software.
681
+
682
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
683
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
684
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
685
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
686
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
687
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
688
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
689
+ OTHER DEALINGS IN THE SOFTWARE.
690
+ </pre>
691
+ <hr size="1"></hr><pre>
692
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
693
+
694
+ Permission is hereby granted, free of charge, to any person
695
+ obtaining a copy of this software and associated documentation
696
+ files (the &quot;Software&quot;), to deal in the Software without
697
+ restriction, including without limitation the rights to use,
698
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
699
+ copies of the Software, and to permit persons to whom the
700
+ Software is furnished to do so, subject to the following
701
+ conditions:
702
+
703
+ The above copyright notice and this permission notice shall be
704
+ included in all copies or substantial portions of the Software.
705
+
706
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
707
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
708
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
709
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
710
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
711
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
712
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
713
+ OTHER DEALINGS IN THE SOFTWARE.
714
+ </pre>
715
+ <hr size="1"></hr><pre>
716
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
717
+
718
+ Permission is hereby granted, free of charge, to any person
719
+ obtaining a copy of this software and associated documentation
720
+ files (the &quot;Software&quot;), to deal in the Software without
721
+ restriction, including without limitation the rights to use,
722
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
723
+ copies of the Software, and to permit persons to whom the
724
+ Software is furnished to do so, subject to the following
725
+ conditions:
726
+
727
+ The above copyright notice and this permission notice shall be
728
+ included in all copies or substantial portions of the Software.
729
+
730
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
731
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
732
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
733
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
734
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
735
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
736
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
737
+ OTHER DEALINGS IN THE SOFTWARE.
738
+ </pre>
739
+ <hr size="1"></hr><pre>
740
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
741
+
742
+ Permission is hereby granted, free of charge, to any person
743
+ obtaining a copy of this software and associated documentation
744
+ files (the &quot;Software&quot;), to deal in the Software without
745
+ restriction, including without limitation the rights to use,
746
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
747
+ copies of the Software, and to permit persons to whom the
748
+ Software is furnished to do so, subject to the following
749
+ conditions:
750
+
751
+ The above copyright notice and this permission notice shall be
752
+ included in all copies or substantial portions of the Software.
753
+
754
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
755
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
756
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
757
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
758
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
759
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
760
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
761
+ OTHER DEALINGS IN THE SOFTWARE.
762
+ </pre>
763
+ <hr size="1"></hr><pre>
764
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
765
+
766
+ Permission is hereby granted, free of charge, to any person
767
+ obtaining a copy of this software and associated documentation
768
+ files (the &quot;Software&quot;), to deal in the Software without
769
+ restriction, including without limitation the rights to use,
770
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
771
+ copies of the Software, and to permit persons to whom the
772
+ Software is furnished to do so, subject to the following
773
+ conditions:
774
+
775
+ The above copyright notice and this permission notice shall be
776
+ included in all copies or substantial portions of the Software.
777
+
778
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
779
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
780
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
781
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
782
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
783
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
784
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
785
+ OTHER DEALINGS IN THE SOFTWARE.
786
+ </pre>
787
+ <hr size="1"></hr><pre>
788
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
789
+
790
+ Permission is hereby granted, free of charge, to any person
791
+ obtaining a copy of this software and associated documentation
792
+ files (the &quot;Software&quot;), to deal in the Software without
793
+ restriction, including without limitation the rights to use,
794
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
795
+ copies of the Software, and to permit persons to whom the
796
+ Software is furnished to do so, subject to the following
797
+ conditions:
798
+
799
+ The above copyright notice and this permission notice shall be
800
+ included in all copies or substantial portions of the Software.
801
+
802
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
803
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
804
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
805
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
806
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
807
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
808
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
809
+ OTHER DEALINGS IN THE SOFTWARE.
810
+ </pre>
811
+ <hr size="1"></hr><pre>
812
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
813
+
814
+ Permission is hereby granted, free of charge, to any person
815
+ obtaining a copy of this software and associated documentation
816
+ files (the &quot;Software&quot;), to deal in the Software without
817
+ restriction, including without limitation the rights to use,
818
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
819
+ copies of the Software, and to permit persons to whom the
820
+ Software is furnished to do so, subject to the following
821
+ conditions:
822
+
823
+ The above copyright notice and this permission notice shall be
824
+ included in all copies or substantial portions of the Software.
825
+
826
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
827
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
828
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
829
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
830
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
831
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
832
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
833
+ OTHER DEALINGS IN THE SOFTWARE.
834
+ </pre>
835
+ <hr size="1"></hr><pre>
836
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
837
+
838
+ Permission is hereby granted, free of charge, to any person
839
+ obtaining a copy of this software and associated documentation
840
+ files (the &quot;Software&quot;), to deal in the Software without
841
+ restriction, including without limitation the rights to use,
842
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
843
+ copies of the Software, and to permit persons to whom the
844
+ Software is furnished to do so, subject to the following
845
+ conditions:
846
+
847
+ The above copyright notice and this permission notice shall be
848
+ included in all copies or substantial portions of the Software.
849
+
850
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
851
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
852
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
853
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
854
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
855
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
856
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
857
+ OTHER DEALINGS IN THE SOFTWARE.
858
+ </pre>
859
+ <hr size="1"></hr><pre>
860
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
861
+
862
+ Permission is hereby granted, free of charge, to any person
863
+ obtaining a copy of this software and associated documentation
864
+ files (the &quot;Software&quot;), to deal in the Software without
865
+ restriction, including without limitation the rights to use,
866
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
867
+ copies of the Software, and to permit persons to whom the
868
+ Software is furnished to do so, subject to the following
869
+ conditions:
870
+
871
+ The above copyright notice and this permission notice shall be
872
+ included in all copies or substantial portions of the Software.
873
+
874
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
875
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
876
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
877
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
878
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
879
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
880
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
881
+ OTHER DEALINGS IN THE SOFTWARE.
882
+ </pre>
883
+ <hr size="1"></hr><pre>
884
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
885
+
886
+ Permission is hereby granted, free of charge, to any person
887
+ obtaining a copy of this software and associated documentation
888
+ files (the &quot;Software&quot;), to deal in the Software without
889
+ restriction, including without limitation the rights to use,
890
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
891
+ copies of the Software, and to permit persons to whom the
892
+ Software is furnished to do so, subject to the following
893
+ conditions:
894
+
895
+ The above copyright notice and this permission notice shall be
896
+ included in all copies or substantial portions of the Software.
897
+
898
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
899
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
900
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
901
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
902
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
903
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
904
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
905
+ OTHER DEALINGS IN THE SOFTWARE.
906
+ </pre>
907
+ <hr size="1"></hr><pre>
908
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
909
+
910
+ Permission is hereby granted, free of charge, to any person
911
+ obtaining a copy of this software and associated documentation
912
+ files (the &quot;Software&quot;), to deal in the Software without
913
+ restriction, including without limitation the rights to use,
914
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
915
+ copies of the Software, and to permit persons to whom the
916
+ Software is furnished to do so, subject to the following
917
+ conditions:
918
+
919
+ The above copyright notice and this permission notice shall be
920
+ included in all copies or substantial portions of the Software.
921
+
922
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
923
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
924
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
925
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
926
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
927
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
928
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
929
+ OTHER DEALINGS IN THE SOFTWARE.
930
+ </pre>
931
+ <hr size="1"></hr><pre>
932
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
933
+
934
+ Permission is hereby granted, free of charge, to any person
935
+ obtaining a copy of this software and associated documentation
936
+ files (the &quot;Software&quot;), to deal in the Software without
937
+ restriction, including without limitation the rights to use,
938
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
939
+ copies of the Software, and to permit persons to whom the
940
+ Software is furnished to do so, subject to the following
941
+ conditions:
942
+
943
+ The above copyright notice and this permission notice shall be
944
+ included in all copies or substantial portions of the Software.
945
+
946
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
947
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
948
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
949
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
950
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
951
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
952
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
953
+ OTHER DEALINGS IN THE SOFTWARE.
954
+ </pre>
955
+ <hr size="1"></hr><pre>
956
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
957
+
958
+ Permission is hereby granted, free of charge, to any person
959
+ obtaining a copy of this software and associated documentation
960
+ files (the &quot;Software&quot;), to deal in the Software without
961
+ restriction, including without limitation the rights to use,
962
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
963
+ copies of the Software, and to permit persons to whom the
964
+ Software is furnished to do so, subject to the following
965
+ conditions:
966
+
967
+ The above copyright notice and this permission notice shall be
968
+ included in all copies or substantial portions of the Software.
969
+
970
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
971
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
972
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
973
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
974
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
975
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
976
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
977
+ OTHER DEALINGS IN THE SOFTWARE.
978
+ </pre>
979
+ <hr size="1"></hr><pre>
980
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
981
+
982
+ Permission is hereby granted, free of charge, to any person
983
+ obtaining a copy of this software and associated documentation
984
+ files (the &quot;Software&quot;), to deal in the Software without
985
+ restriction, including without limitation the rights to use,
986
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
987
+ copies of the Software, and to permit persons to whom the
988
+ Software is furnished to do so, subject to the following
989
+ conditions:
990
+
991
+ The above copyright notice and this permission notice shall be
992
+ included in all copies or substantial portions of the Software.
993
+
994
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
995
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
996
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
997
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
998
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
999
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1000
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1001
+ OTHER DEALINGS IN THE SOFTWARE.
1002
+ </pre>
1003
+ <hr size="1"></hr><pre>
1004
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1005
+
1006
+ Permission is hereby granted, free of charge, to any person
1007
+ obtaining a copy of this software and associated documentation
1008
+ files (the &quot;Software&quot;), to deal in the Software without
1009
+ restriction, including without limitation the rights to use,
1010
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1011
+ copies of the Software, and to permit persons to whom the
1012
+ Software is furnished to do so, subject to the following
1013
+ conditions:
1014
+
1015
+ The above copyright notice and this permission notice shall be
1016
+ included in all copies or substantial portions of the Software.
1017
+
1018
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1019
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1020
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1021
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1022
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1023
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1024
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1025
+ OTHER DEALINGS IN THE SOFTWARE.
1026
+ </pre>
1027
+ <hr size="1"></hr><pre>
1028
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1029
+
1030
+ Permission is hereby granted, free of charge, to any person
1031
+ obtaining a copy of this software and associated documentation
1032
+ files (the &quot;Software&quot;), to deal in the Software without
1033
+ restriction, including without limitation the rights to use,
1034
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1035
+ copies of the Software, and to permit persons to whom the
1036
+ Software is furnished to do so, subject to the following
1037
+ conditions:
1038
+
1039
+ The above copyright notice and this permission notice shall be
1040
+ included in all copies or substantial portions of the Software.
1041
+
1042
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1043
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1044
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1045
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1046
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1047
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1048
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1049
+ OTHER DEALINGS IN THE SOFTWARE.
1050
+ </pre>
1051
+ <hr size="1"></hr><pre>
1052
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1053
+
1054
+ Permission is hereby granted, free of charge, to any person
1055
+ obtaining a copy of this software and associated documentation
1056
+ files (the &quot;Software&quot;), to deal in the Software without
1057
+ restriction, including without limitation the rights to use,
1058
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1059
+ copies of the Software, and to permit persons to whom the
1060
+ Software is furnished to do so, subject to the following
1061
+ conditions:
1062
+
1063
+ The above copyright notice and this permission notice shall be
1064
+ included in all copies or substantial portions of the Software.
1065
+
1066
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1067
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1068
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1069
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1070
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1071
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1072
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1073
+ OTHER DEALINGS IN THE SOFTWARE.
1074
+ </pre>
1075
+ <hr size="1"></hr><pre>
1076
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1077
+
1078
+ Permission is hereby granted, free of charge, to any person
1079
+ obtaining a copy of this software and associated documentation
1080
+ files (the &quot;Software&quot;), to deal in the Software without
1081
+ restriction, including without limitation the rights to use,
1082
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1083
+ copies of the Software, and to permit persons to whom the
1084
+ Software is furnished to do so, subject to the following
1085
+ conditions:
1086
+
1087
+ The above copyright notice and this permission notice shall be
1088
+ included in all copies or substantial portions of the Software.
1089
+
1090
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1091
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1092
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1093
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1094
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1095
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1096
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1097
+ OTHER DEALINGS IN THE SOFTWARE.
1098
+ </pre>
1099
+ <hr size="1"></hr><pre>
1100
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1101
+
1102
+ Permission is hereby granted, free of charge, to any person
1103
+ obtaining a copy of this software and associated documentation
1104
+ files (the &quot;Software&quot;), to deal in the Software without
1105
+ restriction, including without limitation the rights to use,
1106
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1107
+ copies of the Software, and to permit persons to whom the
1108
+ Software is furnished to do so, subject to the following
1109
+ conditions:
1110
+
1111
+ The above copyright notice and this permission notice shall be
1112
+ included in all copies or substantial portions of the Software.
1113
+
1114
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1115
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1116
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1117
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1118
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1119
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1120
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1121
+ OTHER DEALINGS IN THE SOFTWARE.
1122
+ </pre>
1123
+ <hr size="1"></hr><pre>
1124
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1125
+
1126
+ Permission is hereby granted, free of charge, to any person
1127
+ obtaining a copy of this software and associated documentation
1128
+ files (the &quot;Software&quot;), to deal in the Software without
1129
+ restriction, including without limitation the rights to use,
1130
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1131
+ copies of the Software, and to permit persons to whom the
1132
+ Software is furnished to do so, subject to the following
1133
+ conditions:
1134
+
1135
+ The above copyright notice and this permission notice shall be
1136
+ included in all copies or substantial portions of the Software.
1137
+
1138
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1139
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1140
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1141
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1142
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1143
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1144
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1145
+ OTHER DEALINGS IN THE SOFTWARE.
1146
+ </pre>
1147
+ <hr size="1"></hr><pre>
1148
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1149
+
1150
+ Permission is hereby granted, free of charge, to any person
1151
+ obtaining a copy of this software and associated documentation
1152
+ files (the &quot;Software&quot;), to deal in the Software without
1153
+ restriction, including without limitation the rights to use,
1154
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1155
+ copies of the Software, and to permit persons to whom the
1156
+ Software is furnished to do so, subject to the following
1157
+ conditions:
1158
+
1159
+ The above copyright notice and this permission notice shall be
1160
+ included in all copies or substantial portions of the Software.
1161
+
1162
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1163
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1164
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1165
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1166
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1167
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1168
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1169
+ OTHER DEALINGS IN THE SOFTWARE.
1170
+ </pre>
1171
+ <hr size="1"></hr><pre>
1172
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1173
+
1174
+ Permission is hereby granted, free of charge, to any person
1175
+ obtaining a copy of this software and associated documentation
1176
+ files (the &quot;Software&quot;), to deal in the Software without
1177
+ restriction, including without limitation the rights to use,
1178
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1179
+ copies of the Software, and to permit persons to whom the
1180
+ Software is furnished to do so, subject to the following
1181
+ conditions:
1182
+
1183
+ The above copyright notice and this permission notice shall be
1184
+ included in all copies or substantial portions of the Software.
1185
+
1186
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1187
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1188
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1189
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1190
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1191
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1192
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1193
+ OTHER DEALINGS IN THE SOFTWARE.
1194
+ </pre>
1195
+ <hr size="1"></hr><pre>
1196
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1197
+
1198
+ Permission is hereby granted, free of charge, to any person
1199
+ obtaining a copy of this software and associated documentation
1200
+ files (the &quot;Software&quot;), to deal in the Software without
1201
+ restriction, including without limitation the rights to use,
1202
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1203
+ copies of the Software, and to permit persons to whom the
1204
+ Software is furnished to do so, subject to the following
1205
+ conditions:
1206
+
1207
+ The above copyright notice and this permission notice shall be
1208
+ included in all copies or substantial portions of the Software.
1209
+
1210
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1211
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1212
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1213
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1214
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1215
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1216
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1217
+ OTHER DEALINGS IN THE SOFTWARE.
1218
+ </pre>
1219
+ <hr size="1"></hr><pre>
1220
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1221
+
1222
+ Permission is hereby granted, free of charge, to any person
1223
+ obtaining a copy of this software and associated documentation
1224
+ files (the &quot;Software&quot;), to deal in the Software without
1225
+ restriction, including without limitation the rights to use,
1226
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1227
+ copies of the Software, and to permit persons to whom the
1228
+ Software is furnished to do so, subject to the following
1229
+ conditions:
1230
+
1231
+ The above copyright notice and this permission notice shall be
1232
+ included in all copies or substantial portions of the Software.
1233
+
1234
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1235
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1236
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1237
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1238
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1239
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1240
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1241
+ OTHER DEALINGS IN THE SOFTWARE.
1242
+ </pre>
1243
+ <hr size="1"></hr><pre>
1244
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1245
+
1246
+ Permission is hereby granted, free of charge, to any person
1247
+ obtaining a copy of this software and associated documentation
1248
+ files (the &quot;Software&quot;), to deal in the Software without
1249
+ restriction, including without limitation the rights to use,
1250
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1251
+ copies of the Software, and to permit persons to whom the
1252
+ Software is furnished to do so, subject to the following
1253
+ conditions:
1254
+
1255
+ The above copyright notice and this permission notice shall be
1256
+ included in all copies or substantial portions of the Software.
1257
+
1258
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1259
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1260
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1261
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1262
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1263
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1264
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1265
+ OTHER DEALINGS IN THE SOFTWARE.
1266
+ </pre>
1267
+ <hr size="1"></hr><pre>
1268
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1269
+
1270
+ Permission is hereby granted, free of charge, to any person
1271
+ obtaining a copy of this software and associated documentation
1272
+ files (the &quot;Software&quot;), to deal in the Software without
1273
+ restriction, including without limitation the rights to use,
1274
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1275
+ copies of the Software, and to permit persons to whom the
1276
+ Software is furnished to do so, subject to the following
1277
+ conditions:
1278
+
1279
+ The above copyright notice and this permission notice shall be
1280
+ included in all copies or substantial portions of the Software.
1281
+
1282
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1283
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1284
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1285
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1286
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1287
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1288
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1289
+ OTHER DEALINGS IN THE SOFTWARE.
1290
+ </pre>
1291
+ <hr size="1"></hr><pre>
1292
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1293
+
1294
+ Permission is hereby granted, free of charge, to any person
1295
+ obtaining a copy of this software and associated documentation
1296
+ files (the &quot;Software&quot;), to deal in the Software without
1297
+ restriction, including without limitation the rights to use,
1298
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1299
+ copies of the Software, and to permit persons to whom the
1300
+ Software is furnished to do so, subject to the following
1301
+ conditions:
1302
+
1303
+ The above copyright notice and this permission notice shall be
1304
+ included in all copies or substantial portions of the Software.
1305
+
1306
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1307
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1308
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1309
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1310
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1311
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1312
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1313
+ OTHER DEALINGS IN THE SOFTWARE.
1314
+ </pre>
1315
+ <hr size="1"></hr><pre>
1316
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1317
+
1318
+ Permission is hereby granted, free of charge, to any person
1319
+ obtaining a copy of this software and associated documentation
1320
+ files (the &quot;Software&quot;), to deal in the Software without
1321
+ restriction, including without limitation the rights to use,
1322
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1323
+ copies of the Software, and to permit persons to whom the
1324
+ Software is furnished to do so, subject to the following
1325
+ conditions:
1326
+
1327
+ The above copyright notice and this permission notice shall be
1328
+ included in all copies or substantial portions of the Software.
1329
+
1330
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1331
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1332
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1333
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1334
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1335
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1336
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1337
+ OTHER DEALINGS IN THE SOFTWARE.
1338
+ </pre>
1339
+ <hr size="1"></hr><pre>
1340
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1341
+
1342
+ Permission is hereby granted, free of charge, to any person
1343
+ obtaining a copy of this software and associated documentation
1344
+ files (the &quot;Software&quot;), to deal in the Software without
1345
+ restriction, including without limitation the rights to use,
1346
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1347
+ copies of the Software, and to permit persons to whom the
1348
+ Software is furnished to do so, subject to the following
1349
+ conditions:
1350
+
1351
+ The above copyright notice and this permission notice shall be
1352
+ included in all copies or substantial portions of the Software.
1353
+
1354
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1355
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1356
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1357
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1358
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1359
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1360
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1361
+ OTHER DEALINGS IN THE SOFTWARE.
1362
+ </pre>
1363
+ <hr size="1"></hr><pre>
1364
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1365
+
1366
+ Permission is hereby granted, free of charge, to any person
1367
+ obtaining a copy of this software and associated documentation
1368
+ files (the &quot;Software&quot;), to deal in the Software without
1369
+ restriction, including without limitation the rights to use,
1370
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1371
+ copies of the Software, and to permit persons to whom the
1372
+ Software is furnished to do so, subject to the following
1373
+ conditions:
1374
+
1375
+ The above copyright notice and this permission notice shall be
1376
+ included in all copies or substantial portions of the Software.
1377
+
1378
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1379
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1380
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1381
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1382
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1383
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1384
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1385
+ OTHER DEALINGS IN THE SOFTWARE.
1386
+ </pre>
1387
+ <hr size="1"></hr><pre>
1388
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1389
+
1390
+ Permission is hereby granted, free of charge, to any person
1391
+ obtaining a copy of this software and associated documentation
1392
+ files (the &quot;Software&quot;), to deal in the Software without
1393
+ restriction, including without limitation the rights to use,
1394
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1395
+ copies of the Software, and to permit persons to whom the
1396
+ Software is furnished to do so, subject to the following
1397
+ conditions:
1398
+
1399
+ The above copyright notice and this permission notice shall be
1400
+ included in all copies or substantial portions of the Software.
1401
+
1402
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1403
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1404
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1405
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1406
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1407
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1408
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1409
+ OTHER DEALINGS IN THE SOFTWARE.
1410
+ </pre>
1411
+ <hr size="1"></hr><pre>
1412
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1413
+
1414
+ Permission is hereby granted, free of charge, to any person
1415
+ obtaining a copy of this software and associated documentation
1416
+ files (the &quot;Software&quot;), to deal in the Software without
1417
+ restriction, including without limitation the rights to use,
1418
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1419
+ copies of the Software, and to permit persons to whom the
1420
+ Software is furnished to do so, subject to the following
1421
+ conditions:
1422
+
1423
+ The above copyright notice and this permission notice shall be
1424
+ included in all copies or substantial portions of the Software.
1425
+
1426
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1427
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1428
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1429
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1430
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1431
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1432
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1433
+ OTHER DEALINGS IN THE SOFTWARE.
1434
+ </pre>
1435
+ <hr size="1"></hr><pre>
1436
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1437
+
1438
+ Permission is hereby granted, free of charge, to any person
1439
+ obtaining a copy of this software and associated documentation
1440
+ files (the &quot;Software&quot;), to deal in the Software without
1441
+ restriction, including without limitation the rights to use,
1442
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1443
+ copies of the Software, and to permit persons to whom the
1444
+ Software is furnished to do so, subject to the following
1445
+ conditions:
1446
+
1447
+ The above copyright notice and this permission notice shall be
1448
+ included in all copies or substantial portions of the Software.
1449
+
1450
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1451
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1452
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1453
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1454
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1455
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1456
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1457
+ OTHER DEALINGS IN THE SOFTWARE.
1458
+ </pre>
1459
+ <hr size="1"></hr><pre>
1460
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1461
+
1462
+ Permission is hereby granted, free of charge, to any person
1463
+ obtaining a copy of this software and associated documentation
1464
+ files (the &quot;Software&quot;), to deal in the Software without
1465
+ restriction, including without limitation the rights to use,
1466
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1467
+ copies of the Software, and to permit persons to whom the
1468
+ Software is furnished to do so, subject to the following
1469
+ conditions:
1470
+
1471
+ The above copyright notice and this permission notice shall be
1472
+ included in all copies or substantial portions of the Software.
1473
+
1474
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1475
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1476
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1477
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1478
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1479
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1480
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1481
+ OTHER DEALINGS IN THE SOFTWARE.
1482
+ </pre>
1483
+ <hr size="1"></hr><pre>
1484
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1485
+
1486
+ Permission is hereby granted, free of charge, to any person
1487
+ obtaining a copy of this software and associated documentation
1488
+ files (the &quot;Software&quot;), to deal in the Software without
1489
+ restriction, including without limitation the rights to use,
1490
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1491
+ copies of the Software, and to permit persons to whom the
1492
+ Software is furnished to do so, subject to the following
1493
+ conditions:
1494
+
1495
+ The above copyright notice and this permission notice shall be
1496
+ included in all copies or substantial portions of the Software.
1497
+
1498
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1499
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1500
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1501
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1502
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1503
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1504
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1505
+ OTHER DEALINGS IN THE SOFTWARE.
1506
+ </pre>
1507
+ <hr size="1"></hr><pre>
1508
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1509
+
1510
+ Permission is hereby granted, free of charge, to any person
1511
+ obtaining a copy of this software and associated documentation
1512
+ files (the &quot;Software&quot;), to deal in the Software without
1513
+ restriction, including without limitation the rights to use,
1514
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1515
+ copies of the Software, and to permit persons to whom the
1516
+ Software is furnished to do so, subject to the following
1517
+ conditions:
1518
+
1519
+ The above copyright notice and this permission notice shall be
1520
+ included in all copies or substantial portions of the Software.
1521
+
1522
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1523
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1524
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1525
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1526
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1527
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1528
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1529
+ OTHER DEALINGS IN THE SOFTWARE.
1530
+ </pre>
1531
+ <hr size="1"></hr><pre>
1532
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1533
+
1534
+ Permission is hereby granted, free of charge, to any person
1535
+ obtaining a copy of this software and associated documentation
1536
+ files (the &quot;Software&quot;), to deal in the Software without
1537
+ restriction, including without limitation the rights to use,
1538
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1539
+ copies of the Software, and to permit persons to whom the
1540
+ Software is furnished to do so, subject to the following
1541
+ conditions:
1542
+
1543
+ The above copyright notice and this permission notice shall be
1544
+ included in all copies or substantial portions of the Software.
1545
+
1546
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1547
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1548
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1549
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1550
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1551
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1552
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1553
+ OTHER DEALINGS IN THE SOFTWARE.
1554
+ </pre>
1555
+ <hr size="1"></hr><pre>
1556
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1557
+
1558
+ Permission is hereby granted, free of charge, to any person
1559
+ obtaining a copy of this software and associated documentation
1560
+ files (the &quot;Software&quot;), to deal in the Software without
1561
+ restriction, including without limitation the rights to use,
1562
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1563
+ copies of the Software, and to permit persons to whom the
1564
+ Software is furnished to do so, subject to the following
1565
+ conditions:
1566
+
1567
+ The above copyright notice and this permission notice shall be
1568
+ included in all copies or substantial portions of the Software.
1569
+
1570
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1571
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1572
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1573
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1574
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1575
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1576
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1577
+ OTHER DEALINGS IN THE SOFTWARE.
1578
+ </pre>
1579
+ <hr size="1"></hr><pre>
1580
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1581
+
1582
+ Permission is hereby granted, free of charge, to any person
1583
+ obtaining a copy of this software and associated documentation
1584
+ files (the &quot;Software&quot;), to deal in the Software without
1585
+ restriction, including without limitation the rights to use,
1586
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1587
+ copies of the Software, and to permit persons to whom the
1588
+ Software is furnished to do so, subject to the following
1589
+ conditions:
1590
+
1591
+ The above copyright notice and this permission notice shall be
1592
+ included in all copies or substantial portions of the Software.
1593
+
1594
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1595
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1596
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1597
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1598
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1599
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1600
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1601
+ OTHER DEALINGS IN THE SOFTWARE.
1602
+ </pre>
1603
+
1604
+ </div>
1605
+
1606
+ </div>
1607
+
1608
+
1609
+ </div>
1610
+
1611
+ <!-- if includes -->
1612
+
1613
+ <div id="section">
1614
+
1615
+
1616
+
1617
+
1618
+ <!-- if method_list -->
1619
+
1620
+
1621
+
1622
+
1623
+ </div>
1624
+
1625
+ <div id="validator-badges">
1626
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
1627
+ </div>
1628
+
1629
+ </body>
1630
+ </html>